Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for FROM_CACHE (0.11 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

            ':santa-tracker:generateDebugFeatureTransitiveDeps': SUCCESS,
            ':santa-tracker:generateDebugResValues': FROM_CACHE,
            ':santa-tracker:generateDebugResources': FROM_CACHE,
            ':santa-tracker:handleDebugMicroApk': FROM_CACHE,
            ':santa-tracker:javaPreCompileDebug': FROM_CACHE,
            ':santa-tracker:kaptDebugKotlin': FROM_CACHE,
            ':santa-tracker:kaptGenerateStubsDebugKotlin': FROM_CACHE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildCrossVersionTestConfigurationCacheSmokeTest.groovy

            then:
            configurationCacheRun(tasks, 1)
    
            then:
            result.assertConfigurationCacheStateLoaded()
            result.task(":configuration-cache:embeddedCrossVersionTest").outcome == TaskOutcome.FROM_CACHE
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildIntegTestConfigurationCacheSmokeTest.groovy

            then:
            configurationCacheRun supportedTasks, 1
    
            then:
            result.assertConfigurationCacheStateLoaded()
            result.task(":configuration-cache:embeddedIntegTest").outcome == TaskOutcome.FROM_CACHE
            assertTestClassExecutedIn "platforms/core-configuration/configuration-cache", "org.gradle.internal.cc.impl.ConfigurationCacheDebugLogIntegrationTest"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/CacheableTaskOutcomeCrossVersionSpec.groovy

                    }
                }
            """
            file("input").text = "input file"
        }
    
        @TargetGradleVersion('>=3.5')
        def "cacheable task is reported as FROM_CACHE"() {
            when:
            def pushToCacheEvents = ProgressEvents.create()
            runCacheableBuild(pushToCacheEvents)
            then:
            !cacheableTaskResult(pushToCacheEvents).fromCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             * same workspace).
             */
            UP_TO_DATE,
    
            /**
             * The outputs of the work have been loaded from the build cache.
             */
            FROM_CACHE,
    
            /**
             * Executing the work was not necessary to produce the outputs.
             * This is usually due to the work having no inputs to process.
             */
            SHORT_CIRCUITED,
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    === Example: Testing cacheable tasks
    
    [source,groovy,indent=0]
    .BuildLogicFunctionalTest.groovy
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top