Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for useHttpBuildCache (0.31 sec)

  1. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheFixture.groovy

        HttpBuildCacheServer httpBuildCacheServer = new HttpBuildCacheServer(temporaryFolder)
    
        String withHttpBuildCacheServer() {
            httpBuildCacheServer.start()
            return useHttpBuildCache(httpBuildCacheServer.uri)
        }
    
        static String useHttpBuildCache(URI uri) {
            """
                buildCache {
                    local {
                        enabled = false
                    }
                    remote(HttpBuildCache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

        }
    
        def "url can be specified with trailing slash"() {
            httpBuildCacheServer.start()
            def buildCacheUrl = URI.create("${httpBuildCacheServer.uri}/")
            settingsFile.text = useHttpBuildCache(buildCacheUrl)
    
            when:
            withBuildCache().run "jar"
            then:
            noneSkipped()
    
            expect:
            withBuildCache().run "clean"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top