Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for BuildCache (0.28 sec)

  1. .teamcity/performance-tests-ci.json

      }, {
        "testId" : "org.gradle.performance.regression.buildcache.TaskOutputCachingJavaPerformanceTest.clean check on ephemeral ci with remote http cache",
        "groups" : [ {
          "testProject" : "smallJavaMultiProjectManyExternalDependencies",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        } ]
      }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsIntegrationTest.groovy

                        createdResources.removeUnusedEntriesAfterDays = ${MODIFIED_AGE_IN_DAYS_FOR_CREATED_CACHE_ENTRIES}
                        buildCache.removeUnusedEntriesAfterDays = ${MODIFIED_AGE_IN_DAYS_FOR_BUILD_CACHE_ENTRIES}
                    }
                }
            """
            settingsFile << """
                caches {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ResolveNonIncrementalCachingStateStep.java

        public ResolveNonIncrementalCachingStateStep(
            BuildCacheController buildCache,
            boolean emitDebugLogging,
            Step<? super NonIncrementalCachingContext, ? extends UpToDateResult> delegate
        ) {
            super(buildCache, emitDebugLogging);
            this.delegate = delegate;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/SettingsDelegate.kt

            delegate.includeFlat(projectNames)
        }
    
        override fun getStartParameter(): StartParameter =
            delegate.startParameter
    
        override fun buildCache(action: Action<in BuildCacheConfiguration>) =
            delegate.buildCache(action)
    
        override fun getSourceControl(): SourceControl =
            delegate.sourceControl
    
        override fun getProviders(): ProviderFactory =
            delegate.providers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/initScripts/cacheRetention/kotlin/gradleUserHome/init.d/cache-settings.gradle.kts

            snapshotWrappers.setRemoveUnusedEntriesAfterDays(10)
            downloadedResources.setRemoveUnusedEntriesAfterDays(45)
            createdResources.setRemoveUnusedEntriesAfterDays(10)
            buildCache.setRemoveUnusedEntriesAfterDays(5)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:36 UTC 2024
    - 339 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/initScripts/cacheRetention/groovy/gradleUserHome/init.d/cache-settings.gradle

            snapshotWrappers.removeUnusedEntriesAfterDays = 10
            downloadedResources.removeUnusedEntriesAfterDays = 45
            createdResources.removeUnusedEntriesAfterDays = 10
            buildCache.removeUnusedEntriesAfterDays = 5
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:36 UTC 2024
    - 350 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/initScripts/multiVersionCacheRetention/groovy/gradleUserHome/init.d/gradle8/cache-settings.gradle

            snapshotWrappers.removeUnusedEntriesAfterDays = 10
            downloadedResources.removeUnusedEntriesAfterDays = 45
            createdResources.removeUnusedEntriesAfterDays = 10
            buildCache.removeUnusedEntriesAfterDays = 5
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:36 UTC 2024
    - 350 bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/buildcache/LocalTaskOutputCacheCrossBuildPerformanceTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.experiment.buildcache
    
    import org.gradle.performance.AbstractCrossBuildPerformanceTest
    import org.gradle.performance.annotations.RunFor
    import org.gradle.performance.annotations.Scenario
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestBuildCache.groovy

        def localCacheConfiguration(boolean push = true) {
            """
                buildCache {
                    local {
                        directory = '${cacheDir.absoluteFile.toURI()}'
                        push = $push
                    }
                }
            """
        }
    
        def remoteCacheConfiguration(boolean push = true) {
            """
                buildCache {
                    remote(DirectoryBuildCache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/AbstractTaskOutputCachingPerformanceTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.regression.buildcache
    
    import org.gradle.initialization.StartParameterBuildOptions
    import org.gradle.performance.AbstractCrossVersionPerformanceTest
    import org.gradle.profiler.BuildContext
    import org.gradle.profiler.BuildMutator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top