Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for disableCacheCleanupViaProperty (0.32 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/cache/internal/GradleUserHomeCleanupFixture.groovy

            switch (method) {
                case CleanupMethod.PROPERTY:
                    disableCacheCleanupViaProperty()
                    break
                case CleanupMethod.DSL:
                    disableCacheCleanupViaDsl()
                    break
                case CleanupMethod.BOTH:
                    disableCacheCleanupViaProperty()
                    disableCacheCleanupViaDsl()
                    break
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceIntegrationTest.groovy

            given:
            requireOwnGradleUserHomeDir() // because we delete caches and distributions
            disableCacheCleanupViaProperty()
            explicitlyEnableCacheCleanupViaDsl()
    
            and:
            def oldButRecentlyUsedGradleDist = versionedDistDirs(DistType.RELEASED.version("1.4.5"), USED_TODAY, "my-dist-1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 15:48:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ArtifactCacheUnusedEntryCleanupIntegrationTest.groovy

            given:
            buildscriptWithDependency(snapshotModule)
    
            when:
            executer.requireIsolatedDaemons() // needs to stop daemon
    
            and:
            disableCacheCleanupViaProperty()
            explicitlyEnableCacheCleanupViaDsl()
    
            and:
            succeeds 'resolve'
    
            then:
            def resource = findFile(cacheDir, 'resources-*/**/maven-metadata.xml')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            }
    
            when:
            executer.requireIsolatedDaemons() // needs to stop daemon
            requireOwnGradleUserHomeDir() // needs its own journal
            disableCacheCleanupViaProperty()
            explicitlyEnableCacheCleanupViaDsl()
            succeeds ":app:resolve"
    
            then:
            def outputDir1 = immutableOutputDir("lib1-1.0.jar", "lib1-1.0.jar.txt").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top