Tutorial by Topics

ParameterDetailsindexRootThe root name of the index to hit, the format is expected to be fmt.Sprintf("%s-%s", index_root, d.Format("2006.01.02"))keyStringCreates groups (like tagsets) and can also filter those groups. It is the format of "field:regex,field:regex...". T...
ParameterDetailsindexRootThe root name of the index to hit, the format is expected to be fmt.Sprintf("%s-%s", index_root, d.Format("2006.01.02"))keyStringCreates groups (like tagsets) and can also filter those groups. It is the format of "field:regex,field:regex...". T...
Unit testing describes the process of testing individual units of code in isolation from the system that they are a part of. What constitutes a unit can vary from system to system, ranging from an individual method to a group of closely related classes or a module. The unit is isolated from its ...
_Generic ( assignment-expression , generic-assoc-list ) ParameterDetailsgeneric-assoc-listgeneric-association OR generic-assoc-list , generic-associationgeneric-associationtype-name : assignment-expression OR default : assignment-expression All type qualifiers will be dropped during the ...
[default-capture, capture-list] (argument-list) mutable throw-specification attributes -> return-type { lambda-body } // Order of lambda specifiers and attributes. [capture-list] (argument-list) { lambda-body } // Common lambda definition. [=] (argument-list) { lambda-body } // Captures all ...
A tuple type is a comma-separated list of types, enclosed in parentheses. This list of types also can have name of the elements and use those names to refer to the values of the individual elements. An element name consists of an identifier followed immediately by a colon (:). Common use - We ca...
ParameterDetailsappOur Express application referencebodyParserThe body-parser package reference for working with JSON encoded bodiesclientIdThe application client ID (OAuth 2 credentials)httpThe http package for running the serverpaypalThe PayPal Node SDK reference objectsecretThe application secre...
The properties object contains key and value pair both as a string. The java.util.Properties class is the subclass of Hashtable. It can be used to get property value based on the property key. The Properties class provides methods to get data from properties file and store data into properties file...
ColumnColumnCellCell First, establish if the device is capable of accepting Touch ID input. if (context.CanEvaluatePolicy(LAPolicy.DeviceOwnerAuthenticationWithBiometrics, out AuthError)) If it does then we can display the Touch ID UI by using: context.EvaluatePolicy(LAPolicy.DeviceOwnerAuth...
class twilio.rest.resources.Messages(*args, **kwargs) ParameterDetailsto (str)The destination phone number.from_ (str)The phone number sending this message (must be a verified Twilio number)body (str)The message you want to send, limited to 160 characters.status_callbackA URL that Twilio wil...
When using Channel Groups, you should not add or remove channels in your client side applications. This example shows adding channels to a channel group and subscribing to that channel group for simplicity sake. But in a real world scenario, you should have your server do all the add/remove of cha...
Classes and IDs make referencing HTML elements from scripts and stylesheets easier. The class attribute can be used on one or more tags and is used by CSS for styling. IDs however are intended to refer to a single element, meaning the same ID should never be used twice. IDs are generally used with J...
<img src="" alt=""> ParametersDetailssrcSpecifies the URL of the imagesrcsetImages to use in different situations (e.g., high-resolution displays, small monitors, etc)sizesImage sizes between breakpointscrossoriginHow the element handles crossorigin requestsusemapN...
A loop statement executes a group of statements repeatedly until a condition is met. There are 3 types of primitive loops in C++: for, while, and do...while. while (condition) statement ; do statement while (expression) ; for (for-init-statement ; condition ; expression) statement ; for (f...
transition: <property> <duration> <timing-function> <delay>; @keyframes <identifier> [ [ from | to | <percentage> ] [, from | to | <percentage> ]* block ]* Transition ParameterDetailspropertyEither the CSS property to transition on, or all, which s...
SELECT <non-pivoted column>, [first pivoted column] AS <column name>, [second pivoted column] AS <column name>, ... [last pivoted column] AS <column name> FROM (<SELECT query that produces the data>) AS <alias for the source query> PIVOT ( <aggregat...

Page 23 of 428