Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isAllowUntrustedServer (0.36 sec)

  1. platforms/documentation/docs/src/snippets/buildCache/http-build-cache/kotlin/settings.gradle.kts

        }
    }
    // end::http-build-cache[]
    
    // tag::allow-untrusted-server[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            isAllowUntrustedServer = true
        }
    }
    // end::allow-untrusted-server[]
    
    // tag::use-expect-continue[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 602 bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

         *
         * @since 4.2
         */
        public boolean isAllowUntrustedServer() {
            return allowUntrustedServer;
        }
    
        /**
         * Specifies whether it is acceptable to communicate with an HTTP build cache backend with an untrusted SSL certificate.
         *
         * @see #isAllowUntrustedServer()
         * @since 4.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/DefaultHttpBuildCacheServiceFactory.java

                authentications = Collections.<Authentication>singleton(basicAuthentication);
            }
    
            boolean authenticated = !authentications.isEmpty();
            boolean allowUntrustedServer = configuration.isAllowUntrustedServer();
            boolean allowInsecureProtocol = configuration.isAllowInsecureProtocol();
            boolean useExpectContinue = configuration.isUseExpectContinue();
    
            HttpRedirectVerifier redirectVerifier =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    The trust requirement can be disabled by setting link:{groovyDslPath}/org.gradle.caching.http.HttpBuildCache.html#org.gradle.caching.http.HttpBuildCache:allowUntrustedServer[HttpBuildCache.isAllowUntrustedServer()] to `true`.
    Enabling this option is a security risk, as it allows any cache server to impersonate the intended server.
    It should only be used as a temporary measure or in very tightly controlled network environments.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.caching.http.HttpBuildCache.isAllowInsecureProtocol()> does not have raw return type assignable to org.gradle.api.provider.Property in (HttpBuildCache.java:0)
    Method <org.gradle.caching.http.HttpBuildCache.isAllowUntrustedServer()> 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)
Back to top