Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for assertConfigurationCacheStateStored (1.69 sec)

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

                ":stdlib-java-extensions:test", "--tests=org.gradle.api.JavaVersionSpec"
            ]
    
            when:
            configurationCacheRun supportedTasks, 0
    
            then:
            result.assertConfigurationCacheStateStored()
    
            when:
            run([":tooling-api:clean", ":base-services:clean"])
    
            and:
            configurationCacheRun supportedTasks + ["--info"], 1
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildCrossVersionTestConfigurationCacheSmokeTest.groovy

                '--tests=org.gradle.internal.cc.impl.ConfigurationCacheCrossVersionTest'
            ]
    
            when:
            configurationCacheRun(tasks, 0)
    
            then:
            result.assertConfigurationCacheStateStored()
    
            when:
            run([":configuration-cache:clean"])
    
            then:
            configurationCacheRun(tasks, 1)
    
            then:
            result.assertConfigurationCacheStateLoaded()
    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

                "--tests=org.gradle.internal.cc.impl.ConfigurationCacheDebugLogIntegrationTest"
            ]
    
            when:
            configurationCacheRun supportedTasks, 0
    
            then:
            result.assertConfigurationCacheStateStored()
    
            when:
            run([":configuration-cache:clean"])
    
            then:
            configurationCacheRun supportedTasks, 1
    
            then:
            result.assertConfigurationCacheStateLoaded()
    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. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

            def result = buildLocation(originalDir, agpVersion)
    
            then:
            if (GradleContextualExecuter.isConfigCache()) {
                result.assertConfigurationCacheStateStored()
            }
    
            when: 'up-to-date build, reusing configuration cache when enabled'
            SantaTrackerConfigurationCacheWorkaround.beforeBuild(originalDir, homeDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
Back to top