Tutorial by Topics: es

@test [expr] @test_throws [Exception] [expr] @testset "[name]" begin; [tests]; end Pkg.test([package]) The standard library documentation for Base.Test covers additional material beyond that shown in these examples.
Profile file is a powershell script that will run while the powershell console is starting. This way we can have our environment prepared for us each time we start new powershell session. Typical things we want to do on powershell start are: importing modules we use often (ActiveDirectory, Ex...
#Requires -Version <N>[.<n>] #Requires –PSSnapin <PSSnapin-Name> [-Version <N>[.<n>]] #Requires -Modules { <Module-Name> | <Hashtable> } #Requires –ShellId <ShellId> #Requires -RunAsAdministrator #requires statement can be placed on any li...
This example has a datepicker for the 'Start Date', an input for the 'Duration' (in weeks) and a second datepicker that is disabled for user input as it is updated on change of either the first datepicker or the duration inputs.
getUserMedia() ParamtersDescriptionConstraintsIt consist of array which allows us to specify which media devices to use i.e audio or video or bothSuccess callbackCreate a function for success callback which will provide you the stream which you get from your media devicesError callbackThis callback...
Promises have state, they start as pending and can settle to: fulfilled meaning that the computation completed successfully. rejected meaning that the computation failed. Promise returning functions should never throw, they should return rejections instead. Throwing from a promise returnin...
These are two sample programs that work together. One is a simple server, the other a simple client. Start the server in one window: python tserver.py Edit the server address in the client source file if desired. Then run python tclient.py The client connects to the server, then asks for i...
Node.js uses streams to handle incoming data. Quoting from the docs, A stream is an abstract interface for working with streaming data in Node.js. The stream module provides a base API that makes it easy to build objects that implement the stream interface. To handle in request body of a PO...
The Spring Data project allows application programmers to work with data stores using a consistent interface that makes use of an abstraction called Repository. A Spring Data Repository is modeled after the Repository pattern made popular by domain-driven design. Spring Data provides a central Ja...
The Scripting.FileSystemObject is much more robust that the legacy methods in this topic. It should be preferred in almost all cases.
ParameterUsagehostnameThis parameter tells the host to which the connection needs to be establishedusernameusername required to access the hostporthost portpasswordpassword for the account
x -> [body] (x, y) -> [body] (xs...) -> [body] 0.4.0 In older versions of Julia, closures and anonymous functions had a runtime performance penalty. This penalty has been eliminated in 0.5.
public void AddProfiles(params string[] assemblyNamesToScan) public void AddProfiles(params Assembly[] assembliesToScan) public void AddProfiles(params Type[] typesFromAssembliesContainingProfiles) public void AddProfiles(IEnumerable<string> assemblyNamesToScan) public void AddProfiles(I...

Page 48 of 96