Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for requestTimeout (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config.go

    	RESTOptionsGetter genericregistry.RESTOptionsGetter
    
    	// If specified, all requests except those which match the LongRunningFunc predicate will timeout
    	// after this duration.
    	RequestTimeout time.Duration
    	// If specified, long running requests such as watch will be allocated a random timeout between this value, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/options/options_test.go

    			CorsAllowedOriginList:       []string{"10.10.10.100", "10.10.10.200"},
    			MaxRequestsInFlight:         400,
    			MaxMutatingRequestsInFlight: 200,
    			RequestTimeout:              time.Duration(2) * time.Minute,
    			MinRequestTimeout:           1800,
    			JSONPatchMaxCopyBytes:       int64(3 * 1024 * 1024),
    			MaxRequestBodyBytes:         int64(3 * 1024 * 1024),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/options/options_test.go

    				CorsAllowedOriginList:       []string{"10.10.10.100", "10.10.10.200"},
    				MaxRequestsInFlight:         400,
    				MaxMutatingRequestsInFlight: 200,
    				RequestTimeout:              time.Duration(2) * time.Minute,
    				MinRequestTimeout:           1800,
    				JSONPatchMaxCopyBytes:       int64(3 * 1024 * 1024),
    				MaxRequestBodyBytes:         int64(3 * 1024 * 1024),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		Description:    "Cannot respond to plain-text request from TLS-encrypted server",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrRequestTimedout: {
    		Code:           "RequestTimeout",
    		Description:    "A timeout occurred while trying to lock a resource, please reduce your request rate",
    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrClientDisconnected: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
Back to top