Tutorial by Examples: l

Here are the steps required to install Gradle plugin in Eclipse: Open Eclipse and go to Help -> Eclipse Marketplace In the search bar, enter buildship and hit enter Select "Buildship Gradle Integration 1.0" and click Install In the next window, click Confirm Then, accept the term...
This linked list example implements Set abstract data type operations. SinglyLinkedNode class Option Explicit Private Value As Variant Private NextNode As SinglyLinkedNode '"Next" is a keyword in VBA and therefore is not a valid variable name LinkedList class Option Explicit P...
$username = "[email protected]" $pwdTxt = Get-Content "C:\temp\Stored_Password.txt" $securePwd = $pwdTxt | ConvertTo-SecureString $credObject = New-Object System.Management.Automation.PSCredential -ArgumentList $username, $securePwd # Now, $credObject is having the credential...
Python import csv with open('/tmp/output.tsv', 'wt') as out_file: tsv_writer = csv.writer(out_file, delimiter='\t') tsv_writer.writerow(['name', 'field']) tsv_writer.writerow(['Dijkstra', 'Computer Science']) tsv_writer.writerow(['Shelah', 'Math']) tsv_writer.writerow(['...
To install tslint run command npm install -g tslint Tslint is configured via file tslint.json. To initialize default configuration run command tslint --init To check file for possible errors in file run command tslint filename.ts
Module Module1 Sub Main() Debug.WriteLine("This line will be shown in the Visual Studio output console") Console.WriteLine("Press a key to exit") Console.ReadKey() Debug.WriteLine("End of application") End Sub End Modul...
At the beginning of your application, your must add a TextWriterTraceListener to the Listeners list of the Debug class. Module Module1 Sub Main() Debug.Listeners.Add(New TextWriterTraceListener("Debug of " & DateTime.Now.ToString() & ".txt")) D...
On 32-bit systems, integers greater than 0x7FFFFFFF cannot be stored primitively, while integers between 0x0000000080000000 and 0x7FFFFFFFFFFFFFFF can be stored primitively on 64-bit systems but not 32-bit systems (signed long long). However, since 64-bit systems and many other languages support sto...
Detailed instructions on getting cloudfoundry set up or installed.
One major aspect of process substitution is that it lets us avoid usage of a sub-shell when piping commands from the shell. This can be demonstrated with a simple example below. I have the following files in my current folder: $ find . -maxdepth 1 -type f -print foo bar zoo foobar foozoo barzoo ...
Once you have your UWP application ready for tests you should add test application to your solution. To do it "right" click on the solution and choose "Unit Test App (Universal Windows)": Once you add it to the solution there are few more steps required to configure it. You w...
Once your test application is ready you can connect it with code for which you want to write unit tests. Either you have you code in PCL, or in UWP app project (I assume that you applied MVVM pattern) just add reference to it in Test Application project: Now you have access to all your code from...
Once you have everything prepared to write your Unit Tests it is worth to mention about mocking. There is new framework called "SimpleStubs" which enables you to create mocks based on the interfaces. Simple case from GitHub documentation: //Sample interface: public interface IPhoneBook ...
An artifact built by Maven can be declared as a Maven plugin by specifying the packaging as maven-plugin in the pom.xml. <packaging>maven-plugin</packaging> You need to declare a dependency on the plugin API and annotations. <dependency> <groupId>org.apache.maven&lt...
Goals are implemented by creating a MOJO. This is a class file annotated with annotations from maven-plugin-annotations. @Mojo(name = "hello") public final class HelloWorldMojo extends AbstractMojo { public void execute() throws MojoExecutionException, MojoFailureException { ...
Plugins can be configured by annotating fields with @Parameter. The MOJO is then injected with the configuration. @Mojo(name = "greet") public final class GreetMojo extends AbstractMojo { @Parameter(required = true) public String name; public void execute() throws Mojo...
@Mojo(name = "hi", defaultPhase = LifecyclePhase.COMPILE)
@Parameter(defaultValue = "${project.build.directory}") private File buildDirectory;
Within the CodeIgniter, there are two main directories to worry about: system and application. The system folder contains the core guts of CodeIgniter. The application folder will contain all of the code specific to your application, including models, controllers, views and other relevant libraries...
When you want for example enforce the use of the parameter Password if the parameter User is provided. (and vise versa) Function Do-Something { Param ( [Parameter(Mandatory=$true)] [String]$SomeThingToDo, [Parameter(ParameterSetName="Credentials", man...

Page 691 of 861