Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for HttpBuildCache (0.21 sec)

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

     *
     * @since 3.5
     */
    public abstract class HttpBuildCache extends AbstractBuildCache {
        private final HttpBuildCacheCredentials credentials;
        private URI url;
        private boolean allowUntrustedServer;
        private boolean allowInsecureProtocol;
        private boolean useExpectContinue;
    
        public HttpBuildCache() {
            this.credentials = new HttpBuildCacheCredentials();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/buildCache/http-build-cache/tests/httpBuildCache.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 51 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.caching.http.HttpBuildCache.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/BuildCacheConfigurationExtensionsTest.kt

                on { remote(any<Class<HttpBuildCache>>()) } doReturn mock<HttpBuildCache>()
                on { remote(any<Class<HttpBuildCache>>(), any<Action<HttpBuildCache>>()) } doReturn mock<HttpBuildCache>()
            }
    
            buildCache.remote<HttpBuildCache>()
    
            inOrder(buildCache) {
                verify(buildCache).remote(HttpBuildCache::class.java)
                verifyNoMoreInteractions()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/DefaultHttpBuildCacheServiceFactory.java

    import org.gradle.api.GradleException;
    import org.gradle.authentication.Authentication;
    import org.gradle.caching.BuildCacheService;
    import org.gradle.caching.BuildCacheServiceFactory;
    import org.gradle.caching.http.HttpBuildCache;
    import org.gradle.caching.http.HttpBuildCacheCredentials;
    import org.gradle.internal.authentication.DefaultBasicAuthentication;
    import org.gradle.internal.deprecation.Documentation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            settingsFile << """
                buildCache {
                    local {
                        enabled = false
                    }
                    remote(org.gradle.caching.http.HttpBuildCache) {
                        enabled = true
                        url = "$url"
                        push = $push
                        $credentials
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/buildCache/http-build-cache/groovy/settings.gradle

    rootProject.name = 'http-build-cache'
    
    // tag::http-build-cache[]
    buildCache {
        remote(HttpBuildCache) {
            url = 'https://example.com:8123/cache/'
        }
    }
    // end::http-build-cache[]
    
    // tag::allow-untrusted-server[]
    buildCache {
        remote(HttpBuildCache) {
            url = 'https://example.com:8123/cache/'
            allowUntrustedServer = true
        }
    }
    // end::allow-untrusted-server[]
    
    // tag::use-expect-continue[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 584 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/buildCache/http-build-cache/kotlin/settings.gradle.kts

    rootProject.name = "http-build-cache"
    // tag::http-build-cache[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
        }
    }
    // end::http-build-cache[]
    
    // tag::allow-untrusted-server[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            isAllowUntrustedServer = true
        }
    }
    // end::allow-untrusted-server[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 602 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top