Tutorial by Topics: d

var stripeSubscriptionOptions = new StripeSubscriptionCreateOptions(); //create a variable to hold options object stripeSubscriptionOptions.Quantity = model.update; //example option of quantity of seats for a subscription var subscriptionService = new StripeSubscriptionSer...
For those not familiar, a Replica Set is defined as a redundant configuration of three servers. A Sharded Database is defined as a horizintally scalled database, where each Shard is defined as a Replica Set. Therefore, a sharded Mongo cluster involves a minimum of 11 servers for a 2 shard cluster...
On this page, you can find examples of how design patterns are implemented in C++. For the details on these patterns, you can check out the design patterns documentation. A design pattern is a general reusable solution to a commonly occurring problem within a given context in software design. ...
Addons and modules are encouraged to be registered with Packagist which then means they are found and registered with the SilverStripe add-on repository Installation of modules is recommended through use of Composer
scope(exit) - statements are called no matter how the current block was exited scope(success) - statements are called when the current block was exited normally scope(failure) - statements are called when the current block was exited through exception throwing Using scope guards makes co...
module my.package; import my.package; import my.package : function; import fancyName = mypackage; import my.package : fancyFunctionName = function; Modules automatically provide a namespace scope for their contents. Modules superficially resemble classes, but differ in that: There's ...
This article assumes knowledge of Defer Basics For ordinary error handling, read the topic on error handling
This section provides an overview of what ibm-mobilefirst is, and why a developer might want to use it. It should also mention any large subjects within ibm-mobilefirst, and link out to the related topics. Since the Documentation for ibm-mobilefirst is new, you may need to create initial version...
OpenMP (Open MultiProcessing) is a parallel programming model based on compiler directives which allows application developers to incrementally add parallelism to their application codes. OpenMP API specification for parallel programming provides an application programming interface (API) that su...
if cond; body; end if cond; body; else; body; end if cond; body; elseif cond; body; else; end if cond; body; elseif cond; body; end cond ? iftrue : iffalse cond && iftrue cond || iffalse ifelse(cond, iftrue, iffalse) All conditional operators and functions involve using boole...
MySQLi is a PHP Extension which enables PHP to communicate with MySQL Databases. MySQLi comes built in with PHP. MySQLi was introduced with PHP 5.0. MySQLi is available in procedural & Object Oriented style. MySQLi supports CRUD queries, prepared statements,Multiple statements,Transaction and...
In object-oriented programming, objects often depend on other objects in order to do things. Dependency Injection (DI) is giving an object the things that it depends on so that it doesn't have to worry about getting them itself. That is, the dependencies are injected into the object. This is most...
Never use DDL or DML against tables created by dbms_aqadm.create_queue_table. Only use dbms_aqadm and dbms_aq to work with these tables. Oracle may make several supporting tables, indexes, etc that you will not be aware of. Manually running DDL or DML against the table may lead you to a sce...
commonly used Public MethodUseSetTitle(String)Sets Title for the dialogSetIcon(Drawable)Set Icon for the alert dialogSetMessage(string)Set the message to display.SetNegativeButton(String, EventHandler)Set a listener to be invoked when the negative button of the dialog is pressed.SetPositiveButton(...
# Package a build directory pack [PATH] # Use a specific generator cpack -G [GENERATOR] [PATH] # Provide optional overrides cpack -G [GENERATOR] -C [CONFIGURATION] -P [PACKAGE NAME] -R [PACKAGE VERSION] -B [PACKAGE DIRECTORY] --vendor [PACKAGE VENDOR] CPack is an external tool allowing...

Page 85 of 221