Tutorial by Topics: co

docker run [OPTIONS] IMAGE [COMMAND] [ARG...]
While not required, constructors in Java are methods recognized by the compiler to instantiate specific values for the class which may be essential to the role of the object. This topic demonstrates proper usage of Java class constructors. The Java Language Specification talks at length about ...
docker rm [OPTIONS] CONTAINER [CONTAINER...] docker attach [OPTIONS] CONTAINER docker exec [OPTIONS] CONTAINER COMMAND [ARG...] docker ps [OPTIONS] docker logs [OPTIONS] CONTAINER docker inspect [OPTIONS] CONTAINER|IMAGE [CONTAINER|IMAGE...] In the examples above, whenever container ...
The source code for Reachability.h and Reachability.m can be found on Apple's developer documentation site. Caveats Unlike other platforms, Apple is yet to provide a standard set of APIs to determine an iOS device's network status and offer only these code examples linked above. The source fil...
Scollector is a monitoring agent that can be used to send metrics to Bosun or any system that accepts OpenTSDB style metrics. It is modelled after OpenTSDB's tcollector data collection framework but is written in Go and compiled into a single binary. One of the design goals is to auto-detect servi...
Scollector supports tcollector style external collectors that can be used to send metrics to Bosun via custom scripts or executables. External collectors are a great way to get started collecting data, but when possible it is recommended for applications to send data directly to Bosun or to update...
Scollector can be used to monitor processes and services in Windows and Linux. Some processes like IIS application pools are monitored automatically, but usually you need to specify which processes and services you want to monitor.
<select name=""></select> <datalist id=""></datalist> <optgroup label="Option Group"></optgroup> <option value="">Option</option>
[[ -OP $filename ]] [[ $file1 -OP $file2 ]] [[ -z $string ]] [[ -n $string ]] [[ "$string1" == "$string2" ]] [[ "$string1" == $pattern ]] The [[ … ]] syntax surrounds bash built-in conditional expressions. Note that spaces are required on either side of th...
<element lang="language_code">   <!-- Language code has to be in the format [ISO 639-1](https://en.wikipedia.org/wiki/ISO_639-1 ) --> The value of the lang attribute must be a valid BCP 47 language tag or the empty string (if the language is unknown). The BCP 47 ...
Some times you need to create extended text documentation from you xml comments. Unfortunatly there is no standard way for it. But there are some separate projects that you can use for this case: Sandcastle Docu NDoc DocFX
WITH QueryName [(ColumnName, ...)] AS (   SELECT ... ) SELECT ... FROM QueryName ...; WITH RECURSIVE QueryName [(ColumnName, ...)] AS (   SELECT ...   UNION [ALL]   SELECT ... FROM QueryName ... ) SELECT ... FROM QueryName ...; Official documentation: WITH clause A Common ...
abstract void disconnect() abstract boolean usingProxy() static boolean getFollowRedirects() static void setFollowRedirects(boolean set) String getHeaderField(int n) String getHeaderFieldKey(int n) String getRequestMethod() String getResponseMessage() int getResponseCode() long getHeader...
Unlike most languages, Python supports two major versions. Since 2008 when Python 3 was released, many have made the transition, while many have not. In order to understand both, this section covers the important differences between Python 2 and Python 3. There are currently two supported vers...

Page 4 of 62