congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
JavaForkOptions.systemProperty
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: org.gradle/gradle-core

public JavaExecHandleBuilder systemProperty(String name, Object value) {
  javaOptions.systemProperty(name, value);
  return this;
}
origin: gradle.plugin.com.github.anolivetree/gradle-clojure-plugin

public void submit(Action<ClojureWorkerConfiguration> action) {
 ClojureWorkerConfiguration config = new ClojureWorkerConfiguration();
 action.execute(config);
 FileCollection realClasspath = config.getClasspath().plus(resolveShim());
 workerExecutor.submit(ClojureWorker.class, worker -> {
  worker.setIsolationMode(IsolationMode.PROCESS);
  worker.params(config.getNamespace(), config.getFunction(), config.getArgs());
  config.getConfigureFork().forEach(worker::forkOptions);
  worker.forkOptions(fork -> fork.systemProperty("shim.classpath", realClasspath.getAsPath()));
  worker.classpath(resolveWorker());
 });
}
org.gradle.processJavaForkOptionssystemProperty

Popular methods of JavaForkOptions

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

Popular in Java

  • Running tasks concurrently on multiple threads
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • setScale (BigDecimal)
  • addToBackStack (FragmentTransaction)
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • JOptionPane (javax.swing)
  • 21 Best Atom Packages for 2021
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now