Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isUseExpectContinue (0.34 sec)

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

        }
    }
    // end::allow-untrusted-server[]
    
    // tag::use-expect-continue[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            isUseExpectContinue = true
        }
    }
    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

     * <p>
     * {@literal PUT} requests may also return a {@literal 413 Payload Too Large} response to indicate that the payload is larger than can be accepted.
     * This is useful when {@link #isUseExpectContinue()} is enabled.
     * <p>
     * Redirecting responses may be issued with {@literal 301}, {@literal 302}, {@literal 303}, {@literal 307} or {@literal 308} responses.
    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

            boolean allowUntrustedServer = configuration.isAllowUntrustedServer();
            boolean allowInsecureProtocol = configuration.isAllowInsecureProtocol();
            boolean useExpectContinue = configuration.isUseExpectContinue();
    
            HttpRedirectVerifier redirectVerifier =
                createRedirectVerifier(noUserInfoUrl, allowInsecureProtocol);
    
            DefaultHttpSettings.Builder builder = DefaultHttpSettings.builder()
    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

    Be sure to check that your cache server does support it before enabling.
    
    To enable, set link:{groovyDslPath}/org.gradle.caching.http.HttpBuildCache.html#org.gradle.caching.http.HttpBuildCache:useExpectContinue[HttpBuildCache.isUseExpectContinue()] to `true`.
    
    .Use Expect-Continue
    ====
    include::sample[dir="snippets/buildCache/http-build-cache/kotlin",files="settings.gradle.kts[tags=use-expect-continue]"]
    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.isAllowUntrustedServer()> does not have raw return type assignable to org.gradle.api.provider.Property in (HttpBuildCache.java:0)
    Method <org.gradle.caching.http.HttpBuildCache.isUseExpectContinue()> 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