Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for isConfigCache (0.17 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

    ${COMMON_HINT}""")
        }
    
        def "expires daemon immediately when garbage collector is thrashing"() {
            given:
            if (JavaVersion.current().isJava9Compatible() && GradleContextualExecuter.isConfigCache()) {
                // For java.util.concurrent.CountDownLatch being serialized reflectively by configuration cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

                  inputs.files zip
                }
            """
    
            expect:
            2.times {
                run(":test",  ":publish", ":integTest")
                if (GradleContextualExecuter.isConfigCache()) {
                    // With configuration cache tasks can run in parallel
                    result.assertTaskOrder(exact(any(":test", ":integTest"), ":finalizer"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

                    "https://docs.gradle.org/current/userguide/upgrading_version_8.html#deprecated_access_to_conventions"
            )
            if (GradleContextualExecuter.isConfigCache()) {
                executer.expectDocumentedDeprecationWarning(
                    "The Provider.forUseAtConfigurationTime method has been deprecated. " +
                        "This is scheduled to be removed in Gradle 9.0. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                    stringInput.set(provider { throw new RuntimeException("BOOM") })
                }
            """)
    
            when:
            fails "failingTask"
    
            then:
            if (GradleContextualExecuter.isConfigCache()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top