Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for respondsTo (0.16 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         * Protocol negotiation is only attempted for HTTPS URLs.
         *
         * [Protocol.HTTP_1_0] is not supported in this set. Requests are initiated with `HTTP/1.1`. If
         * the server responds with `HTTP/1.0`, that will be exposed by [Response.protocol].
         *
         * [alpn]: http://tools.ietf.org/html/draft-ietf-tls-applayerprotoneg
         * [rfc_2616]: http://www.w3.org/Protocols/rfc2616/rfc2616.html
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	DryRun []string `json:"dryRun,omitempty" protobuf:"bytes,5,rep,name=dryRun"`
    }
    
    const (
    	// FieldValidationIgnore ignores unknown/duplicate fields
    	FieldValidationIgnore = "Ignore"
    	// FieldValidationWarn responds with a warning, but successfully serve the request
    	FieldValidationWarn = "Warn"
    	// FieldValidationStrict fails the request on unknown/duplicate fields
    	FieldValidationStrict = "Strict"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    	{
    		expectation:      "100-continue",
    		readBody:         true,
    		chunked:          true,
    		expectedResponse: "100 Continue",
    	},
    }
    
    // Tests that the server responds to the "Expect" request header
    // correctly.
    func TestServerExpect(t *testing.T) { run(t, testServerExpect, []testMode{http1Mode}) }
    func testServerExpect(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	// set it, only then do we transparently decode the gzip.
    	addedGzip bool
    
    	// Optional blocking chan for Expect: 100-continue (for send).
    	// If the request has an "Expect: 100-continue" header and
    	// the server responds 100 Continue, readLoop send a value
    	// to writeLoop via this chan.
    	continueCh chan<- struct{}
    
    	callerGone <-chan struct{} // closed when roundTrip caller has returned
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CallTest.kt

        executeSynchronously(request).assertBody("abc")
      }
    
      /**
       * Make a request with two routes. The first route will fail because the null server connects but
       * never responds. The manual retry will succeed.
       */
      @Test
      fun readTimeoutFails() {
        server.enqueue(MockResponse(socketPolicy = StallSocketAtStart))
        server2.enqueue(
          MockResponse(body = "success!"),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	// leading to higher cpu usage.
    	// Note that even though we set the period to 1s, the relisting itself can
    	// take more than 1s to finish if the container runtime responds slowly
    	// and/or when there are many container changes in one cycle.
    	genericPlegRelistPeriod    = time.Second * 1
    	genericPlegRelistThreshold = time.Minute * 3
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                    requestRedirect:
                                      description: |-
                                        RequestRedirect defines a schema for a filter that responds to the
                                        request with an HTTP redirection.
    
    
                                        Support: Core
                                      properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
Back to top