This is the reference point. All the other options are based off this.
|-- app
| |-- controllers
| | |-- admin
#!/bin/bash | |
set -u | |
set -e | |
set -o pipefail | |
export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin | |
cat <<'EOF' > /etc/modprobe.d/blacklist-ipv6.conf |
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
Below are the Big O performance of common functions of different Java Collections. | |
List | Add | Remove | Get | Contains | Next | Data Structure | |
---------------------|------|--------|------|----------|------|--------------- | |
ArrayList | O(1) | O(n) | O(1) | O(n) | O(1) | Array | |
LinkedList | O(1) | O(1) | O(n) | O(n) | O(1) | Linked List | |
CopyOnWriteArrayList | O(n) | O(n) | O(1) | O(n) | O(1) | Array |
import Foundation | |
/// Protocol for NSLocking objects that also provide tryLock() | |
public protocol TryLockable: NSLocking { | |
func tryLock() -> Bool | |
} | |
// These Cocoa classes have tryLock() | |
extension NSLock: TryLockable {} | |
extension NSRecursiveLock: TryLockable {} |
FROM debian:sid-slim | |
ADD jdk-10-ea+39_linux-x64_bin.tar.gz /java | |
ENTRYPOINT ["/java/jdk-10/bin/jshell", "-q"] |
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="xxxx.xxxx.xxxx.fragmentdeyoutube" > | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<application | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" |
pragma solidity ^0.4.14; | |
library Pairing { | |
struct G1Point { | |
uint X; | |
uint Y; | |
} | |
// Encoding of field elements is: X[0] * z + X[1] | |
struct G2Point { | |
uint[2] X; |
function (doc, meta) { | |
var jsonld={};jsonld.compact=function(input,ctx){var options={};var callbackArg=2;if(arguments.length>3){options=arguments[2]||{};callbackArg+=1}var callback=arguments[callbackArg];if(input===null){return callback(null,null)}if(!('base'in options)){options.base=''}if(!('strict'in options)){options.strict=true}if(!('optimize'in options)){options.optimize=false}if(!('graph'in options)){options.graph=false}if(!('resolver'in options)){options.resolver=jsonld.urlResolver}jsonld.expand(input,options,function(err,expanded){if(err){return callback(new JsonLdError('Could not expand input before compaction.','jsonld.CompactError',{cause:err}))}var activeCtx=_getInitialContext();jsonld.processContext(activeCtx,ctx,options,function(err,activeCtx){if(err){return callback(new JsonLdError('Could not process context before compaction.','jsonld.CompactError',{cause:err}))}try{if(options.optimize){options.optimizeCtx={}}input=expanded;var compacted=new Processor().compact(activeCtx,null,input,option |
#! /bin/bash | |
# Kill processes orphaned by Jenkins | |
# Work around Java's use of SIGTERM rather than SIGKILL and | |
# Jenkins's lack of any workaroud in the box. | |
# here is the relevant bug: | |
# https://issues.jenkins-ci.org/browse/JENKINS-17116 | |
# Suggested usage: |