Tutorial by Topics

CREATE [OR REPLACE] PACKAGE package_name [AUTHID {CURRENT_USER | DEFINER}] {IS | AS} [PRAGMA SERIALLY_REUSABLE;] [collection_type_definition ...] [record_type_definition ...] [subtype_definition ...] [collection_declaration ...] [constant_declaration ...] [exception_declaration ...] [...
This section provides an overview of what lisp is, and why a developer might want to use it. It should also mention any large subjects within lisp, and link out to the related topics. Since the Documentation for lisp is new, you may need to create initial versions of those related topics.
Definition The Big-O notation is at its heart a mathematical notation, used to compare the rate of convergence of functions. Let n -> f(n) and n -> g(n) be functions defined over the natural numbers. Then we say that f = O(g) if and only if f(n)/g(n) is bounded when n approaches infinity. ...
This section provides an overview of what UML is, and why a developer might want to use it. It should also mention any large subjects within UML, and link out to the related topics. Since the Documentation for UML is new, you may need to create initial versions of those related topics.
The package cron-tick is a very simple package for background tasks but it does not support multiple processes, if you run your app in multiple processes (or containers) use percolate:synced-cron instead.
public static void main(String[] args) ParameterDetailsargsThe command line arguments. Assuming that the main method is invoked by the Java launcher, args will be non-null, and will have no null elements. When a regular Java application is launched using the java command (or equivalent), ...
This section provides an overview of what pycharm is, and why a developer might want to use it. It should also mention any large subjects within pycharm, and link out to the related topics. Since the Documentation for pycharm is new, you may need to create initial versions of those related topic...
Here's a plunker for all the examples Attribute's name are case-insensitive and will always be converted to lowercase, e.g if you have an attribute on-myListener listener will be set on mylistener event. Similar to listen you can also use unlisten method remove any listener. Poperty change fi...
The datepicker is a graphical user interface widget which allows the user to select a date from a calendar and/or time from a time range. The typical practice is to provide a text box field which, when clicked upon to enter a date, pops up a calendar next to or below the field, allowing the user t...
SCons is a build system. It takes a bunch of input files and run tools on them to produce output. SCons is written in pure Python, works the same way on Linux, Windows and OS X, and may be run without installation. SCons' SConstruct files are Python scripts with built-in commands that create a bu...
It can be used to Exit the current scope, which can be a function, script, or script block. In PowerShell, the result of each statement is returned as output, even without an explicit Return keyword or to indicate that the end of the scope has been reached. You can read more about the return s...
@function function-name(parameter) { /* Function body */ }
Given a directed graph G, we often want to find the shortest distance from a given node A to rest of the nodes in the graph. Dijkstra algorithm is the most famous algorithm for finding the shortest path, however it works only if edge weights of the given graph are non-negative. Bellman-Ford howev...
This section provides an overview of what android-volley is, and why a developer might want to use it. It should also mention any large subjects within android-volley, and link out to the related topics. Since the Documentation for android-volley is new, you may need to create initial versions o...

Page 186 of 428