Codota Logo
JavaForkOptions.jvmArgs
Code IndexAdd Codota to your IDE (free)

How to use
jvmArgs
method
in
org.gradle.process.JavaForkOptions

Best Java code snippets using org.gradle.process.JavaForkOptions.jvmArgs (Showing top 5 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: org.gradle/gradle-core

public JavaExecHandleBuilder jvmArgs(Object... arguments) {
  javaOptions.jvmArgs(arguments);
  return this;
}
origin: org.gradle/gradle-core

public JavaExecHandleBuilder jvmArgs(Iterable<?> arguments) {
  javaOptions.jvmArgs(arguments);
  return this;
}
origin: gradle.plugin.de.lukaskoerfer.gradle/debugging

@TaskAction
private void setupDebug() throws IOException {
  target.jvmArgs(debugSpec.getJvmArgs());
}
origin: gradle.plugin.de.lukaskoerfer.gradle/debugging

/**
 * Adds JVM parameters for debugging according to the specification configured by the given closure to the task
 * @param specAction A closure to configure a debug specification. The specification will be passed as both single parameter and delegate to the closure.
 */
public void debug(Closure specAction) {
  DebugSpec spec = new DebugSpec();
  specAction.setDelegate(spec);
  specAction.call(spec);
  task.jvmArgs(spec.getJvmArgs());
}
 
origin: gradle.plugin.de.lukaskoerfer.gradle/debugging

/**
 * Adds JVM parameters for debugging according to the specification configured by the given action to the task
 * @param specAction An action to configure a debug specification.
 */
public void debug(Action<DebugSpec> specAction) {
  DebugSpec spec = new DebugSpec();
  specAction.execute(spec);
  task.jvmArgs(spec.getJvmArgs());
}
 
org.gradle.processJavaForkOptionsjvmArgs

Popular methods of JavaForkOptions

  • setJvmArgs
  • setMaxHeapSize
  • setDefaultCharacterEncoding
  • setMinHeapSize
  • getJvmArgumentProviders
  • setDebug
  • systemProperty
  • bootstrapClasspath
  • copyTo
  • getAllJvmArgs
  • getBootstrapClasspath
  • getDebug
  • getBootstrapClasspath,
  • getDebug,
  • getDefaultCharacterEncoding,
  • getEnableAssertions,
  • getEnvironment,
  • getExecutable,
  • getJvmArgs,
  • getMaxHeapSize,
  • getMinHeapSize

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (Timer)
  • getExternalFilesDir (Context)
  • getSharedPreferences (Context)
  • PrintWriter (java.io)
    Prints formatted representations of objects to a text-output stream. This class implements all of th
  • Dictionary (java.util)
    The Dictionary class is the abstract parent of any class, such as Hashtable, which maps keys to valu
  • LinkedHashMap (java.util)
    Hash table and linked list implementation of the Map interface, with predictable iteration order. Th
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now