Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for markingStrategy (0.26 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsContinuousIntegrationTest.groovy

            initDir.mkdirs()
            new File(initDir, "cache-settings.gradle") << """
                beforeSettings { settings ->
                    settings.caches {
                        markingStrategy = MarkingStrategy.NONE
                        cleanup = Cleanup.DISABLED
                        releasedWrappers.removeUnusedEntriesAfterDays = 10
                        snapshotWrappers.removeUnusedEntriesAfterDays = 5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/cache/DefaultCacheConfigurations.java

            this.cleanup = new ContextualErrorMessageProperty<>(propertyHost, Cleanup.class, "cleanup").convention(createCleanupConvention());
            this.markingStrategy = new ContextualErrorMessageProperty<>(propertyHost, MarkingStrategy.class, "markingStrategy").convention(MarkingStrategy.CACHEDIR_TAG);
            this.legacyCacheCleanupEnablement = legacyCacheCleanupEnablement;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

                cacheConfigurations.cleanup.value(readNonNull<Provider<Cleanup>>())
                cacheConfigurations.markingStrategy.value(readNonNull<Provider<MarkingStrategy>>())
            }
            if (gradle.isRootBuild) {
                gradle.serviceOf<CacheConfigurationsInternal>().setCleanupHasBeenConfigured(true)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top