Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for num1xx (0.08 sec)

  1. src/net/http/transport.go

    		}
    		is1xx := 100 <= resCode && resCode <= 199
    		// treat 101 as a terminal status, see issue 26161
    		is1xxNonTerminal := is1xx && resCode != StatusSwitchingProtocols
    		if is1xxNonTerminal {
    			num1xx++
    			if num1xx > max1xxResponses {
    				return nil, errors.New("net/http: too many 1xx informational responses")
    			}
    			pc.readLimit = pc.maxHeaderResponseSize() // reset the limit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					"updating validating field num2 to another validating value, but rachet invalid field num1",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"nums": map[string]interface{}{
    							"num1": 1,
    							"num2": 2000,
    						},
    					}},
    				expectError{applyPatchOperation{
    					"update field num1 to different invalid value",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top