Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 266 for forkx (0.04 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/jvm/JavaCompilationSoakTest.groovy

                        // ~25MB
                        ext.memoryHog = new byte[1024*1024*25]
    
                        tasks.withType(JavaCompile).configureEach {
                            options.fork = true
                            options.forkOptions.jvmArgs << "-Dcounter=" + project.property("counter")
                        }
                    }
                """
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandleBuilder.java

        ExecHandleBuilder setDisplayName(String displayName);
    
        /**
         * When true, spawn the process. That is, start the process and leave it running once successfully started. When false, fork the process (the default). That is, start the process and wait for it to complete.
         */
        ExecHandleBuilder setDaemon(boolean daemon);
    
        /**
         * Sets a handler for the output streams of the process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/README.md

    We have been working inside Google on a fork of Go that uses
    BoringCrypto (the core of [BoringSSL](https://boringssl.googlesource.com/boringssl/))
    for various crypto primitives, in furtherance of some work related to FIPS 140.
    We have heard that some external users of Go would be
    interested in this code as well, so we have published this code
    here in the main Go repository behind the setting GOEXPERIMENT=boringcrypto.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/language/groovy/GroovyCompileRelocationIntegrationTest.groovy

        @Override
        protected String getTaskName() {
            return ":compile"
        }
    
        @Override
        String getDaemonConfiguration() {
            return "compile.groovyOptions.fork = true"
        }
    
        @Override
        String getForkOptionsObject() {
            return "compile.groovyOptions.forkOptions"
        }
    
        @Override
        protected void setupProjectIn(TestFile projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileRelocationIntegrationTest.groovy

        @Override
        protected String getTaskName() {
            return ":compile"
        }
    
        @Override
        String getDaemonConfiguration() {
            return "compile.options.fork = true"
        }
    
        @Override
        String getForkOptionsObject() {
            return "compile.options.forkOptions"
        }
    
        @Override
        protected void setupProjectIn(TestFile projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonExpirationIntegrationTest.groovy

                    }
                }
    
                subprojects { p ->
                    apply plugin: 'java'
                    tasks.withType(JavaCompile) { task ->
                        task.options.fork = true
                        rootProject.tasks.expireWorkers.dependsOn task
                    }
                }
            """.stripIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. samples/httpbin/README.md

    # Httpbin service
    
    This sample runs [httpbin](https://httpbin.org) as an Istio service.
    Httpbin is a well-known HTTP testing service that can be used for experimenting
    with all kinds of Istio features.
    
    This sample uses a fork of the [upstream httpbin repo](https://github.com/postmanlabs/httpbin) with [multiarch image support](https://github.com/Kong/httpbin)
    
    To use it:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/ChmodBenchmark.java

    import org.gradle.internal.nativeintegration.services.NativeServices;
    import org.gradle.internal.nativeintegration.services.NativeServices.NativeServicesMode;
    import org.openjdk.jmh.annotations.Benchmark;
    import org.openjdk.jmh.annotations.Fork;
    import org.openjdk.jmh.annotations.Level;
    import org.openjdk.jmh.annotations.Measurement;
    import org.openjdk.jmh.annotations.Scope;
    import org.openjdk.jmh.annotations.Setup;
    import org.openjdk.jmh.annotations.State;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/BuildProgressCrossVersionSpec.groovy

            buildFile << """
                apply plugin: 'java'
                ${mavenCentralRepository()}
                dependencies { ${testImplementationConfiguration} 'junit:junit:4.13' }
                compileTestJava.options.fork = true  // forked as 'Gradle Test Executor 1'
            """
    
            file("src/test/java/MyTest.java") << """
                package example;
                public class MyTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonFailureIntegrationTest.groovy

            def buildOperations = new BuildOperationsFixture(executer, temporaryFolder)
    
            buildFile << """
                apply plugin: "java"
    
                tasks.compileJava {
                    options.fork = true
                    options.forkOptions.jvmArgs = ['--not-a-real-argument']
                }
            """
    
            file('src/main/java/ClassToCompile.java') << """
                class ClassToCompile {
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top