Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for assertConfigurationCacheStateStored (0.39 sec)

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

            then:
            result.task(":app:$taskName").outcome == TaskOutcome.SUCCESS
    
            and:
            if (GradleContextualExecuter.isConfigCache()) {
                result.assertConfigurationCacheStateStored()
            }
    
            when: 'running the build for the 2nd time'
            result = runner.build()
    
            then:
            result.task(":app:$taskName").outcome == TaskOutcome.UP_TO_DATE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

            and:
            assert !result.output.contains(JAVA_COMPILE_DEPRECATION_MESSAGE)
    
            and:
            if (GradleContextualExecuter.isConfigCache()) {
                result.assertConfigurationCacheStateStored()
            }
    
            when: 'up-to-date build'
            SantaTrackerConfigurationCacheWorkaround.beforeBuild(runner.projectDir, IntegrationTestBuildContext.INSTANCE.gradleUserHomeDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

                return delegate.taskPaths(outcome)
            }
    
            @Override
            BuildTask task(String taskPath) {
                return delegate.task(taskPath)
            }
    
            void assertConfigurationCacheStateStored() {
                assertBuildOperationTracePresent()
                new ConfigurationCacheBuildOperationsFixture(operations).assertStateStored()
            }
    
            void assertConfigurationCacheStateLoaded() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K 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