Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for respAuds (0.23 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                    requestRedirect:
                                      description: "RequestRedirect defines a schema for
                                        a filter that responds to the request with an
                                        HTTP redirection. \n Support: Core"
                                      properties:
                                        hostname:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K 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)
  8. CHANGELOG/CHANGELOG-1.17.md

    - Fix unsafe JSON construction in a number...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
Back to top