Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for forkx (0.04 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                forkedProjects = new ArrayList<>(forkedExecutions.size());
    
                try {
                    for (Map.Entry<String, List<MojoExecution>> fork : forkedExecutions.entrySet()) {
                        String projectId = fork.getKey();
    
                        ProjectIndex projectIndex = session.getSession()
                                .getData()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    [source.multi-language-sample,groovy]
    ----
    <task>.options.fork = true
    ----
    ====
    
    To apply the configuration to _all_ Java compilation tasks, you can `configureEach` java compilation task:
    
    ====
    include::sample[dir="snippets/performance/parallelTestExecution/kotlin",files="build.gradle.kts[tags=fork-java]"]
    include::sample[dir="snippets/performance/parallelTestExecution/groovy",files="build.gradle[tags=fork-java]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/FileContentGenerator.groovy

                            <version>3.8.0</version>
                            <configuration>
                                <source>1.8</source>
                                <target>1.8</target>
                                <fork>true</fork>
                                <meminitial>${config.compilerMemory}</meminitial>
                                <maxmem>${config.compilerMemory}</maxmem>
                            </configuration>
                        </plugin>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.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: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            outputContains("Appending implementation to build cache key:")
            outputContains("Appending additional implementation to build cache key:")
            outputContains("Appending input value fingerprint for 'options.fork'")
            outputContains("Appending input file fingerprints for 'classpath'")
            def sourcesDebugLogging = "Appending input file fingerprints for 'stableSources' to build cache key: "
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/start.go

    		// that delegated go command may think that it is itself a telemetry
    		// child.
    		//
    		// On the other hand, if telemetryChildVar were simply unset, then the
    		// delegated go commands would fork themselves recursively. Short-circuit
    		// this recursion.
    		os.Setenv(telemetryChildVar, "2")
    		upload := os.Getenv(telemetryUploadVar) == "1"
    		child(reportCrashes, upload, config.UploadStartTime, config.UploadURL)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/runtime/signal_unix.go

    }
    
    // signalDuringFork is called if we receive a signal while doing a fork.
    // We do not want signals at that time, as a signal sent to the process
    // group may be delivered to the child process, causing confusion.
    // This should never be called, because we block signals across the fork;
    // this function is just a safety check. See issue 18600 for background.
    func signalDuringFork(sig uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. subprojects/core/build.gradle.kts

    }
    
    packageCycles {
        excludePatterns.add("org/gradle/**")
    }
    
    tasks.test {
        setForkEvery(200)
    }
    
    tasks.compileTestGroovy {
        groovyOptions.fork("memoryInitialSize" to "128M", "memoryMaximumSize" to "1G")
    }
    
    tasks.isolatedProjectsIntegTest {
        enabled = true
    }
    
    integTest.usesJavadocCodeSnippets = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            assertToolchainUsages(events1, jdkMetadata1, "JavaLauncher")
            assertToolchainUsages(events2, jdkMetadata2, "JavaLauncher")
        }
    
        def "emits toolchain usages for compilation that configures #option via fork options"() {
            JvmInstallationMetadata curJdk = AvailableJavaHomes.getJvmInstallationMetadata(Jvm.current())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    * [git](https://git-scm.com/) and a [GitHub account](https://github.com/join).
    
    Gradle uses pull requests for contributions. Fork [gradle/gradle](https://github.com/gradle/gradle) and clone your fork. Configure your Git username and email with:
    
        git config user.name 'First Last'
        git config user.email ******@****.***
    
    #### Import Gradle into IntelliJ
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top