Tutorial by Topics: o

Elasticsearch comes with a set of defaults that provide a good out of the box experience for development. The implicit statement there is that it is not necessarily great for production, which must be tailored for your own needs and therefore cannot be predicted. The default settings make it easy...
public Coroutine StartCoroutine(IEnumerator routine); public Coroutine StartCoroutine(string methodName, object value = null); public void StopCoroutine(string methodName); public void StopCoroutine(IEnumerator routine); public void StopAllCoroutines(); Performance considerations It...
These examples introduce the most used commands of Perl to manipulate Excel via Win32::OLE module. $Sheet->Range(Cell1,[Cell2]) #Select a cell or a range of cells $Sheet->Cells(rowIndex, columnIndex) #Select a cell by index of row and column ParametersDetailsCell1 (required)The na...
HTTP APIs use a wide spectrum of HTTP verbs and typically return JSON or XML responses.
Cross-origin resource sharing is designed to allow dynamic requests between domains, often using techniques such as AJAX. While the scripting does most of the work, the HTTP server must support the request using the correct headers.
Variable scope refers to the regions of code where a variable may be accessed. This is also referred to as visibility. In PHP scope blocks are defined by functions, classes, and a global scope available throughout an application.
Each implementation of Equals must fulfil the following requirements: Reflexive: An object must equal itself.x.Equals(x) returns true. Symmetric: There is no difference if I compare x to y or y to x - the result is the same. x.Equals(y) returns the same value as y.Equals(x). Transit...
public abstract class SwingWorker<T,V> T - the result type returned by this SwingWorker's doInBackground and get methods. V - the type used for carrying out intermediate results by this SwingWorker's publish and process methods. T doInBackground() - The abstract fu...
If possible, disable scripts on objects when they are not needed. For example if you have a script on an enemy object that searchers for and fires at the player consider disabling this script when the enemy is too far for example from the player.
ScriptableObjects with AssetBundles Pay attention when adding prefabs to AssetBundles if they contain references to ScriptableObjects. Since ScriptableObjects are essentially assets, Unity creates duplicates of them before adding them to AssetBundles, which may result in undesired behaviour dur...
Oozie is an Apache open source project, originally developed at Yahoo. Oozie is a general purpose scheduling system for multistage Hadoop jobs. Oozie allow to form a logical grouping of relevant Hadoop jobs into an entity called Workflow. The Oozie workflows are DAG (Directed cyclic graph) of a...
This section provides an overview of what image-processing is, and why a developer might want to use it. It should also mention any large subjects within image-processing, and link out to the related topics. Since the Documentation for image-processing is new, you may need to create initial vers...
The assignment of string-literals in VBA is confined by the limitations of the IDE and the codepage of the current user's language settings. The examples above demonstrate the special-cases of escaped strings, special, non-printable strings and long string-literals. When assigning string-literals...
This section provides an overview of what jboss is, and why a developer might want to use it. It should also mention any large subjects within jboss, and link out to the related topics. Since the Documentation for jboss is new, you may need to create initial versions of those related topics. ...
Neural networks, in the tech field, are useful for statistic regression, data classification, product recommentation, computer vision, natural language understanding and synthesis, speech to text, text to speech, and many other complex tasks. Neural networks are used in machine learning and in dee...
The term literal is commonly used to describe a sequence of characters in a C code that designates a constant value such as a number (e.g. 0) or a string (e.g. "C"). Strictly speaking, the standard uses the term constant for integer constants, floating constants, enumeration constants ...

Page 83 of 283