Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for HttpBuildCache (0.17 sec)

  1. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/HttpBuildCacheServiceServices.java

    import org.gradle.caching.configuration.internal.BuildCacheServiceRegistration;
    import org.gradle.caching.configuration.internal.DefaultBuildCacheServiceRegistration;
    import org.gradle.caching.http.HttpBuildCache;
    import org.gradle.internal.service.ServiceRegistration;
    import org.gradle.internal.service.scopes.AbstractGradleModuleServices;
    import org.gradle.util.GradleVersion;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/buildCache/configure-built-in-caches/groovy/settings.gradle

    buildCache {
        local {
            directory = new File(rootDir, 'build-cache')
        }
    }
    // end::configure-directory-build-cache[]
    
    // tag::configure-http-build-cache[]
    buildCache {
        remote(HttpBuildCache) {
            url = 'https://example.com:8123/cache/'
            credentials {
                username = 'build-cache-user'
                password = 'some-complicated-password'
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:36 UTC 2024
    - 516 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/buildCache/configure-built-in-caches/kotlin/settings.gradle.kts

    buildCache {
        local {
            directory = File(rootDir, "build-cache")
        }
    }
    // end::configure-directory-build-cache[]
    
    // tag::configure-http-build-cache[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            credentials {
                username = "build-cache-user"
                password = "some-complicated-password"
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 21:43:36 UTC 2024
    - 516 bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/AbstractTaskOutputCachingPerformanceTest.groovy

            context.iteration == firstWarmupWithCache && context.phase == Phase.WARM_UP
        }
    
        String getRemoteCacheSettingsScript() {
            """
                def httpCacheClass = Class.forName('org.gradle.caching.http.HttpBuildCache')
                buildCache {
                    local {
                        directory = '${cacheDir.absoluteFile.toURI()}'
                    }
                    remote(httpCacheClass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.api.tasks.testing.Test.forkEvery don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.testing.testng.TestNGOptions.parallel don't use symmetrical @Nullable
    Accessors for org.gradle.caching.http.HttpBuildCache.url don't use symmetrical @Nullable
    Accessors for org.gradle.external.javadoc.MinimalJavadocOptions.destinationDirectory don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    === Remote HTTP build cache
    
    link:{groovyDslPath}/org.gradle.caching.http.HttpBuildCache.html[HttpBuildCache] provides the ability read to and write from a remote cache via HTTP.
    
    With the following configuration, the local build cache will be used for storing build outputs while the local and the remote build cache will be used for retrieving build outputs.
    
    .Load from HttpBuildCache
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.caching.http.internal
    
    import org.gradle.api.internal.tasks.execution.ExecuteTaskBuildOperationType
    import org.gradle.caching.http.HttpBuildCache
    import org.gradle.caching.internal.operations.BuildCacheRemoteStoreBuildOperationType
    import org.gradle.integtests.fixtures.BuildOperationsFixture
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.caching.BuildCacheEntryWriter
    import org.gradle.caching.BuildCacheException
    import org.gradle.caching.BuildCacheServiceFactory
    import org.gradle.caching.http.HttpBuildCache
    import org.gradle.caching.internal.TestBuildCacheKey
    import org.gradle.internal.resource.transport.http.DefaultSslContextFactory
    import org.gradle.internal.resource.transport.http.HttpClientHelper
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.caching.http.HttpBuildCache.getCredentials()> does not have raw return type assignable to org.gradle.api.provider.Provider in (HttpBuildCache.java:0)
    Method <org.gradle.caching.http.HttpBuildCache.getUrl()> does not have raw return type assignable to org.gradle.api.provider.Property in (HttpBuildCache.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel4.5:http_build_cache_no_follow_redirects]]
    === [4.5] `HttpBuildCache` no longer follows redirects
    
    When connecting to an HTTP build cache backend via `HttpBuildCache`, Gradle does not follow redirects any more, treating them as errors instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top