Tutorial by Topics: m

public static GameObject Find(string name); public static GameObject FindGameObjectWithTag(string tag); public static GameObject[] FindGameObjectsWithTag(string tag); public static Object FindObjectOfType(Type type); public static Object[] FindObjectsOfType(Type type); Which method to...
$ shopt -u option # Deactivate Bash's built-in 'option' $ shopt -s option # Activate Bash's built-in 'option' Character Classes Valid character classes for the [] glob are defined by the POSIX standard: alnum alpha ascii blank cntrl digit graph lower print punct space upper word xdig...
Entity Framework (EF) Core is a lightweight and extensible version of the popular Entity Framework data access technology. EF Core is an object-relational mapper (O/RM) that enables .NET developers to work with a database using .NET objects. It eliminates the need for most of the data-access code...
std::atomic<T> std::atomic_flag std::atomic allows atomic access to a TriviallyCopyable type, it is implementation-dependent if this is done via atomic operations or by using locks. The only guaranteed lock-free atomic type is std::atomic_flag.
Macros are a form of compile time metaprogramming. Certain elements of Scala code, such as annotations and methods, can be made to transform other code when they are compiled. Macros are ordinary Scala code that operate on data types that represent other code. The [Macro Paradise][] plugin extends t...
<img usemap="#[map-name]"> <map name="[map-name]"></map> <area> Tag/AttributeValue<img>Below are the image map-specific attributes to use with <img>. Regular <img> attributes apply.usemapThe name of the map with a hash symbol pr...
To run any of these examples just call them like that: static void Main() { new Program().ProcessDataAsync(); Console.ReadLine(); }
The ^M character stands for a carriage return in Vim (<c-m> or just <CR>). Vim displays this character when at least on line in the file uses LF line endings. In other words, when Vim consider a file to have fileformat=unix but some lines do have carriage returns (CR), the carriage r...
myTimer.Interval - sets how often the "Tick" event is called (in milliseconds) myTimer.Enabled - boolean value that sets the timer to be enabled / disabled myTimer.Start() - Starts the timer. myTimer.Stop() - Stops the timer. If using Visual Studio, Timers can be added as a co...
+x -x a + b a - b a * b a / b a ^ b a % b 4a sqrt(a)
ParameterDetailsfuncpython function, which takes numpy arrays as its inputs and returns numpy arrays as its outputsinplist of Tensors (inputs)Toutlist of tensorflow data types for the outputs of func
REST stands for Representational State Transfer (sometimes spelled "ReST"). It relies on a stateless, client-server, cacheable communications protocol and mostly HTTP protocol is used. It is primarily used to build Web services that are lightweight, maintainable, and scalable. A service ba...
Hadoop v1 commands: hadoop fs -<command> Hadoop v2 commands: hdfs dfs -<command>

Page 49 of 161