Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 93 for BuildCache (0.28 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/snippets/buildCache/developer-ci-setup/kotlin/settings.gradle.kts

    rootProject.name = "developer-ci-setup"
    // tag::developer-ci-setup[]
    val isCiServer = System.getenv().containsKey("CI")
    
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            isPush = isCiServer
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 281 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildCache/developer-ci-setup/groovy/settings.gradle

    rootProject.name = 'developer-ci-setup'
    
    // tag::developer-ci-setup[]
    boolean isCiServer = System.getenv().containsKey("CI")
    
    buildCache {
        remote(HttpBuildCache) {
            url = 'https://example.com:8123/cache/'
            push = isCiServer
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 279 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesBetweenBuildsFileSystemWatchingIntegrationTest.groovy

            executedAndNotSkipped ":compileJava", ":classes", ":run"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17865")
        def "#description directory moved is handled properly"() {
            def buildCache = new TestBuildCache(temporaryFolder.file("cache-dir").deleteDir().createDir())
            def buildFileContents = """
                apply plugin: "base"
    
                @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingNativePerformanceTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.regression.buildcache
    
    import org.gradle.performance.annotations.RunFor
    import org.gradle.performance.annotations.Scenario
    
    import static org.gradle.performance.annotations.ScenarioType.PER_DAY
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testKit/testKitFunctionalTestSpockBuildCache/groovy/src/test/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

        File localBuildCacheDirectory
    
        def setup() {
            localBuildCacheDirectory = new File(testProjectDir, 'local-cache')
            buildFile = new File(testProjectDir,'settings.gradle') << """
                buildCache {
                    local {
                        directory '${localBuildCacheDirectory.toURI()}'
                    }
                }
            """
            buildFile = new File(testProjectDir,'build.gradle')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top