Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/go/internal/test/test.go

    	// "-assign",
    	"-atomic",
    	"-bool",
    	"-buildtags",
    	// "-cgocall",
    	// "-composites",
    	// "-copylocks",
    	"-directive",
    	"-errorsas",
    	// "-httpresponse",
    	"-ifaceassert",
    	// "-lostcancel",
    	// "-methods",
    	"-nilfunc",
    	"-printf",
    	// "-rangeloops",
    	// "-shift",
    	"-slog",
    	"-stringintconv",
    	// "-structtags",
    	// "-tests",
    	// "-unreachable",
    	// "-unsafeptr",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	opts := storage.ListOptions{
    		ResourceVersion: "0",
    		Predicate:       storage.Everything,
    	}
    
    	// Cancel the request so that it doesn't hang forever.
    	listCtx, listCancel := context.WithTimeout(context.Background(), 250*time.Millisecond)
    	defer listCancel()
    
    	result := &example.PodList{}
    	err = cacher.GetList(listCtx, "/pods/ns", opts, result)
    	if err != nil && apierrors.IsTooManyRequests(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top