Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Continuation (0.1 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		// ResourceVersion should be unset when setting continuation token.
    		ResourceVersion: "",
    		Predicate:       pred(0, continueFromSecondItem),
    		Recursive:       true,
    	}
    	if err := store.GetList(ctx, "/pods", options, out); err != nil {
    		t.Fatalf("Unable to get second page: %v", err)
    	}
    	if len(out.Continue) != 0 {
    		t.Fatalf("Unexpected continuation token set")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. cmd/object-api-listobjects_test.go

    	t, _ := t1.(*testing.T)
    	testBuckets := []string{
    		// This bucket is used for testing ListObject operations.
    		"test-bucket-list-object-continuation-1",
    		"test-bucket-list-object-continuation-2",
    	}
    	for _, bucket := range testBuckets {
    		err := obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{})
    		if err != nil {
    			t.Fatalf("%s : %s", instanceType, err.Error())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	// call. It also means the liveness at pc may not be known.
    	//
    	// TODO: Distinguish frame.continpc, which is really the stack map PC, from
    	// the actual continuation PC, which is computed differently depending on
    	// this flag and a few other things.
    	unwindTrap
    
    	// unwindJumpStack indicates that, if the traceback is on a system stack, it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		Description:    "Remote backend is unreachable",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrIncorrectContinuationToken: {
    		Code:           "InvalidArgument",
    		Description:    "The continuation token provided is incorrect",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	// S3 Select API Errors
    	ErrEmptyRequestBody: {
    		Code:           "EmptyRequestBody",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Serve consistent reads from storage if ConsistentListFromCache is disabled
    	consistentReadFromStorage := resourceVersion == "" && !(consistentListFromCacheEnabled && requestWatchProgressSupported)
    	// Watch cache doesn't support continuations, so serve them from etcd.
    	hasContinuation := len(pred.Continue) > 0
    	// Serve paginated requests about revision "0" from watch cache to avoid overwhelming etcd.
    	hasLimit := pred.Limit > 0 && resourceVersion != "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top