Tutorial by Topics

Type/FunctionDetaildata Eval aEval is a Monad that makes it easier to define parallel strategiestype Strategy a = a -> Eval aa function that embodies a parallel evaluation strategy. The function traverses (parts of) its argument, evaluating subexpressions in parallel or in sequencerpar :: Strate...
As a variable: returnType (^blockName)(parameterTypes) = ^returnType(parameters) {...}; As a property: @property (nonatomic, copy) returnType (^blockName)(parameterTypes); As a method parameter: - (void)methodWithBlock:(returnType (^)(parameterTypes))blockName; As a typedef: ...
This section provides an overview of what bigdata is, and why a developer might want to use it. Big data is the data characterized by the 4 V's. These are Volume, Velocity, Variety and Veracity. Volume - When the amount of data is in huge volume like Terabytes or Petabytes. As a report says, w...
pass Why would you ever want to tell the interpreter to explicitly do nothing? Python has the syntactical requirement that code blocks (after if, except, def, class etc.) cannot be empty. But sometimes an empty code block is useful in itself. An empty class block can definine a new, diffe...
control.FindControl("Id Of The Control To Be Found") FindControl is not recursive, it only searches through immediate children of the control There is an overload FindControl(String, int) which is not indented for public usage If nothing is found, FindControl returns null, so ...
When Rust programs reach a state where a critical error has occurred, the panic! macro can be called to exit quickly (often compared, but subtly different, to an exception in other languages). Proper error handling should involve Result types, though this section will only discuss panic! and its con...
ArrayNew(dimension, isSynchronized) NameDescriptionDimensionNumber of dimensions in new array: 1, 2, or 3isSynchronizedWhen false, creates an unsynchronized array, When true, the function returns a synchronized array. In a synchronized array, more than two threads cannot access the array ...
SQL provides several built-in scalar functions. Each scalar function takes one value as input and returns one value as output for each row in a result set. You use scalar functions wherever an expression is allowed within a T-SQL statement. CAST ( expression AS data_type [ ( length ) ] ) CON...
Content Compression Resistance Priority This value determines how resistant a view is to being compressed, or shrunk. A higher value here means the view will be less likely to be compressed and more likely to stay the same. Content Hugging Priority This value determines how resistant a ...
the depended assets will be loaded before this assets in given order public $depends = [ 'yii\web\YiiAsset', 'yii\bootstrap\BootstrapAsset', 'yii\bootstrap\BootstrapPluginAsset', 'cinghie\fontawesome\FontAwesomeAsset', ]; this example is based on the advanced template https://g...
One of the most common stumbling blocks for newer Selenium users is waiting until a page is fully loaded. Human users can easily tell if a page has fully loaded or if it is still loading. Selenium, however, just waits for a set amount of time. Therefore, it is often convenient to have a good way to ...
When you have huge model, it is useful to form some groups of tensors in your computational graph, that are connected with each other. For example tf.GraphKeys class contains such standart collections as: tf.GraphKeys.VARIABLES tf.GraphKeys.TRAINABLE_VARIABLES tf.GraphKeys.SUMMARIES
This section provides an overview of what logstash is, and why a developer might want to use it. It should also mention any large subjects within logstash, and link out to the related topics. Since the Documentation for logstash is new, you may need to create initial versions of those related to...

use

ParameterDetailsxx-axis coordinate of the upper left corneryy-axis coordinate of the upper left cornerwidthwidth of the <use> elementheightheight of the <use> elementxlink:hrefresource identifier (refers to the ID of another element) SVG 2 proposes to deprecate this and replace it with ...
Documentation for perl's rand() function: http://perldoc.perl.org/functions/rand.html
A ReadOnlyCollection provides a read-only view to an existing collection (the 'source collection'). Items are not directly added to or removed from a ReadOnlyCollection. Instead, they are added and removed from the source collection and the ReadOnlyCollection will reflect these changes to the sou...

Page 277 of 428