Tutorial by Topics: m

In Java, objects are allocated in the heap, and heap memory is reclaimed by automatic garbage collection. An application program cannot explicitly delete a Java object. The basic principles of Java garbage collection are described in the Garbage collection example. Other examples describe final...
ParameterDetailssampleRateFloat number describing the amount of users in percent to be tracked. Default = 100. Sampling in Analytics is the practice of selecting a subset of data from your traffic and reporting on the trends available in that sample set. Sampling is widely used in statistical...
MonoGame is a managed code game-framework with cross-platform support. It is an Open Source implementation of the Microsoft XNA 4 Framework. Using the reliability of managed code with .NET and Mono and the support of many platforms, it simplifies the development of games on multiple platforms. Pl...
Immutable objects have fixed state (no setters), so all state must be known at object creation time. Although not technically required, it is best practice to make all fields final. This will make the immutable class thread-safe (cf. Java Concurrency in Practice, 3.4.1). The examples show severa...
This section provides an overview of what rabbitmq is, and why a developer might want to use it. It should also mention any large subjects within rabbitmq, and link out to the related topics. Since the Documentation for rabbitmq is new, you may need to create initial versions of those related to...
const cluster = require("cluster") cluster.fork() cluster.isMaster cluster.isWorker cluster.schedulingPolicy cluster.setupMaster(settings) cluster.settings cluster.worker // in worker cluster.workers // in master Note that cluster.fork() spawns a child process that begins...
The urls used in the above examples reference a specific version of Node Version Manager. It is most likely that the latest version is different to what's being referenced. To install nvm using the latest version, click here to access nvm on GitHub, which will provide you with latest urls.
SystemVerilog is the successor language to Verilog. Originally created by Accellera as an extension language to Verilog IEEE Std 1364-2001, SystemVerilog was accepted as an IEEE standard in 2005. In 2009, IEEE merged Verilog (IEEE 1364) into SystemVerilog (IEEE 1800) as a unified language. Like it...
Attribute types include: Undefined, Integer 16, Integer 32, Integer 64, Decimal, Double, Float, String, Boolean, Date, Binary, Data, or Transformable When defining an Entity as abstract you won't be creating any instances of that entity. For example a Person would be abstract and a Emp...
MPI is a standard, not a programming library. There are many implementations of the standard. The most common open source ones are MPICH and Open MPI. There are many derivatives of these two libraries that are either open source or commercial (or both). It's important to know which implementation...
::(opt) new (expression-list)(opt) new-type-id new-initializer(opt) ::(opt) new (expression-list)(opt) (type-id) new-initializer(opt) ::(opt) delete cast-expression ::(opt) delete [] cast-expression std::unique_ptr<type-id> var_name(new type-id(opt)); //C++11 std::shared_ptr<type-id...
ParameterDetailsmythemeA unique identifier for your theme (or child theme). This can be your theme slug
ParameterDetails-n <num_procs>The number of MPI processes to start up for the job

Page 36 of 161