Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for expectsContinue (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			expectContinue:       false,
    		},
    		{
    			name:   "test List with filter returning two items, more pages possible",
    			prefix: "/pods",
    			pred: storage.SelectionPredicate{
    				Field: fields.OneTermEqualSelector("metadata.name", "bar"),
    				Label: labels.Everything(),
    				Limit: 2,
    			},
    			expectContinue: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

            .writeUtf8(": ")
            .writeUtf8(headers.value(i))
            .writeUtf8("\r\n")
        }
        sink.writeUtf8("\r\n")
        state = STATE_OPEN_REQUEST_BODY
      }
    
      override fun readResponseHeaders(expectContinue: Boolean): Response.Builder? {
        check(
          state == STATE_OPEN_REQUEST_BODY ||
            state == STATE_WRITING_REQUEST_BODY ||
            state == STATE_READ_RESPONSE_HEADERS,
        ) {
          "state: $state"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/HttpBuildCacheService.java

            final URI uri = root.resolve(key.getHashCode());
            HttpPut httpPut = new HttpPut(uri);
            if (useExpectContinue) {
                httpPut.setHeader(HTTP.EXPECT_DIRECTIVE, HTTP.EXPECT_CONTINUE);
            }
            httpPut.addHeader(HttpHeaders.CONTENT_TYPE, BUILD_CACHE_CONTENT_TYPE);
            requestCustomizer.customize(httpPut);
    
            httpPut.setEntity(new AbstractHttpEntity() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 14:13:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. mockwebserver-deprecated/api/mockwebserver.api

    	public static final field DISCONNECT_DURING_RESPONSE_BODY Lokhttp3/mockwebserver/SocketPolicy;
    	public static final field DO_NOT_READ_REQUEST_BODY Lokhttp3/mockwebserver/SocketPolicy;
    	public static final field EXPECT_CONTINUE Lokhttp3/mockwebserver/SocketPolicy;
    	public static final field FAIL_HANDSHAKE Lokhttp3/mockwebserver/SocketPolicy;
    	public static final field KEEP_OPEN Lokhttp3/mockwebserver/SocketPolicy;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top