Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for configCache (0.45 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheCompositeConfigurationIntegrationTest.groovy

                expectedCacheDirs[":i2:i3"] = i3Cache.cacheDir
            }
    
            def finalizeOps = operations.all(FinalizeBuildCacheConfigurationBuildOperationType)
            def opsPerCache = configCache ? 2 : 1
            finalizeOps.size() == expectedCacheDirs.size() * opsPerCache
            def pathToCacheDirMap = finalizeOps.collectEntries {
                [
                    it.details.buildPath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

            def ops = buildOperations.all(type, spec)
            assert !ops.empty
            if (type == RealizeTaskBuildOperationType && GradleContextualExecuter.configCache) {
                // When using load after store, the task will be realized twice:
                //  - at configuration time
                //  - after loading from the configuration cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. 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)
  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/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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    Toggles the <<build_cache.adoc#build_cache, Gradle Build Cache>>. Gradle will try to reuse outputs from previous builds. _Default is off_.
    
    `--configuration-cache`, `--no-configuration-cache`::
    Toggles the <<configuration_cache.adoc#config_cache,Configuration Cache>>. Gradle will try to reuse the build configuration from previous builds. _Default is off_.
    
    `--configuration-cache-problems=(fail,warn)`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    An example of a build feature is the <<configuration_cache.adoc#config_cache,configuration cache>>.
    
    There are two main use cases:
    
    - Using the status of build features in reports or statistics.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top