Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NewTimeoutError (0.35 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/timeout.go

    		}
    
    		postTimeoutFn := func() {
    			metrics.RecordRequestTermination(req, requestInfo, metrics.APIServerComponent, http.StatusGatewayTimeout)
    		}
    		return req, false, postTimeoutFn, apierrors.NewTimeoutError("request did not complete within the allotted timeout", 0)
    	}
    	return WithTimeout(handler, timeoutFunc)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    				}
    				utilruntime.HandleError(callErr)
    
    				select {
    				case <-ctx.Done():
    					// parent context is canceled or timed out, no point in continuing
    					return apierrors.NewTimeoutError("request did not complete within requested timeout", 0)
    				default:
    					// individual webhook timed out, but parent context did not, continue
    					continue
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/apiclient/idempotency_test.go

    			node: v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:   "testnode",
    					Labels: map[string]string{v1.LabelHostname: ""},
    				},
    			},
    			success:   false,
    			fakeError: apierrors.NewTimeoutError("fake timeout", -1),
    		},
    		{
    			name:       "patch node when conflict",
    			lookupName: "testnode",
    			node: v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:   "testnode",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    			}
    
    			// Check if the request has already timed out before decode object
    			select {
    			case <-ctx.Done():
    				// parent context is canceled or timed out, no point in continuing
    				return storage.NewTimeoutError(string(kv.Key), "request did not complete within requested timeout")
    			default:
    			}
    
    			obj, err := decodeListItem(ctx, data, uint64(kv.ModRevision), s.codec, s.versioner, newItemFunc)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top