Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for configCache (0.11 sec)

  1. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/IntegrationTestSamplesRunner.java

            super.runChild(sample, new RunNotifierWrapper(notifier) {
                @Override
                public void fireTestFailure(Failure failure) {
                    String extraParameter = "configCache".equals(System.getProperty("org.gradle.integtest.executer")) ?
                        "-PenableConfigurationCacheForDocsTests=true" : "";
                    super.fireTestFailure(new Failure(failure.getDescription(), new GradleException(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 22:10:58 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

            failureHasCause "Failed to calculate the value of task ':fails' property 'color'."
            failureHasCause "Cannot access the value of 'BuildWorkResult' before it becomes available!"
            if (GradleContextualExecuter.configCache) {
                failureDescriptionStartsWith "Configuration cache problems found in this build"
            }
        }
    
        enum ScriptTarget {
            SETTINGS,
            PROJECT;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/ivy/IvySftpRepoErrorsIntegrationTest.groovy

        }
    
        private void assertTaskFailureDescription(String taskSelector) {
            if (GradleContextualExecuter.configCache) {
                failureDescriptionContains("Configuration cache state could not be cached:")
                failureDescriptionContains(taskSelector)
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. 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)
Back to top