Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for configCache (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

                    from configurations.compile
                    into 'libs'
                }
            """
    
            when:
            fails 'retrieve'
    
            then:
            GradleContextualExecuter.configCache || failure.assertHasDescription("Execution failed for task ':retrieve'.")
            failure.assertHasCause("Could not resolve all files for configuration ':compile'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

            // 11 tasks + "\n" + "BUILD SUCCESSFUL" + "2 actionable tasks: 2 executed"
            // when configuration cache is enabled also "Configuration cache entry reused."
            def expectedEvents = GradleContextualExecuter.configCache ? 15 : 14
    
            assert progressOutputEvents.size() == expectedEvents
        }
    
        private void assertNestedTaskOutputTracked(String projectPath = ':nested') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            operations.only(FinishRootBuildTreeBuildOperationType)
        }
    
        def "generates finish build tree lifecycle operation for included builds with #description"() {
            if (GradleContextualExecuter.configCache) {
                Assume.assumeFalse(description == "buildFinished")
            }
            given:
            def buildC = multiProjectBuild("buildC", ["someLib"]) {
                buildFile << """
                    allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

            run ":a:aSerialPing", ":b:aPing", ":b:bPing"
    
            // when configuration is loaded from configuration cache, all tasks are executed in parallel
            if (GradleContextualExecuter.configCache) {
                blockingServer.expectConcurrent(":a:aSerialPing", ":b:aPing", ":b:bPing")
                run ":a:aSerialPing", ":b:aPing", ":b:bPing"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

        }
    
        private void exitsContinuousBuildSinceNotWatchingAnyLocationsExceptForConfigCache() {
            if (GradleContextualExecuter.configCache) {
                // When using the configuration cache, the build files are stored in the VFS, so we start watching.
                // That means for hierarchical watchers, we'll also detect the change above.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            eventsOnCompile = toolchainEvents(":compileKotlin")
            eventsOnTest = toolchainEvents(":test")
    
            then:
            if (isKotlin1dot6 && Jvm.current().javaVersion.java8 && GradleContextualExecuter.configCache) {
                // For Kotlin 1.6 the compilation is not up-to-date with configuration caching when running on Java 8
                executedAndNotSkipped(":compileKotlin")
            } else {
    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. platforms/documentation/docs/build.gradle

            systemProperty("org.gradle.integtest.samples.checkLoadingFromConfigurationCache", "true")
            systemProperty("org.gradle.integtest.executer", "configCache")
    
            filter {
                // Configuration cache samples enable configuration cache explicitly. We're not going to run them with the configuration cache executer.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def lib1Message = "Transforming lib1.jar with MakeGreen"
            def lib2Message = "Transforming lib2.jar with MakeGreen"
    
            then:
            if (!GradleContextualExecuter.configCache) {
                // Only runs once, as the transform execution in-memory cache is not discarded prior to execution time
                output.count(lib1Message) == 1
                output.count(lib2Message) == 1
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            def ops = buildOperations.all(CalculateTaskGraphBuildOperationType)
                .findAll { it.details.buildPath == buildPath }
            assert !ops.empty
            if (GradleContextualExecuter.configCache) {
                assert ops.size() == 2
            } else {
                assert ops.size() == 1
            }
            return ops.collect { op ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    [[sec:changing_what_gradle_logs]]
    == Changing what Gradle logs
    
    [WARNING]
    ====
    The <<configuration_cache.adoc#config_cache,configuration cache>> limits the ability to customize Gradle's logging UI.
    The custom logger can only implement <<configuration_cache.adoc#config_cache:requirements:build_listeners,supported listener interfaces>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top