Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 96 for forkx (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

            """
            [buildFile, annotationProjectDir.file("build.gradle"), processorProjectDir.file("build.gradle")].each { buildFile ->
                buildFile << """
                    compileJava {
                        options.fork = ${mode != IN_PROCESS}
                        ${mode == COMMAND_LINE ? "options.forkOptions.executable = '${TextUtil.escapeString(AvailableJavaHomes.getJdk(JavaVersion.current()).javacExecutable)}'" : ''}
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            group = ciGroup
        }
    
        register("noDaemonTest") {
            description = "Run all integration tests in no-daemon execution mode: each Gradle execution started in a test forks a new daemon"
            group = ciGroup
        }
    
        register("configCacheTest") {
            description = "Run all integration tests with instant execution"
            group = ciGroup
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/common/extensions.kt

            param("env.ANDROID_SDK_ROOT", os.androidHome)
            param("env.GRADLE_INTERNAL_REPO_URL", "%gradle.internal.repository.url%")
            if (os == Os.MACOS) {
                // Use fewer parallel forks on macOs, since the agents are not very powerful.
                param("maxParallelForks", "2")
            }
            if (os == Os.LINUX || os == Os.MACOS) {
                param("env.LC_ALL", "en_US.UTF-8")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

            test.excludes.empty
            test.filter.includePatterns == [TEST_PATTERN_1] as Set
            test.filter.commandLineIncludePatterns == [TEST_PATTERN_2] as Set
        }
    
        def "jvm arg providers are added to java fork options"() {
            when:
            test.jvmArgumentProviders << new CommandLineArgumentProvider() {
                @Override
                Iterable<String> asArguments() {
                    return ["First", "Second"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top