Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for continuetoken (0.47 sec)

  1. staging/src/k8s.io/api/storagemigration/v1alpha1/generated.pb.go

    }
    
    func (m *StorageVersionMigrationSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	i -= len(m.ContinueToken)
    	copy(dAtA[i:], m.ContinueToken)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.ContinueToken)))
    	i--
    	dAtA[i] = 0x12
    	{
    		size, err := m.Resource.MarshalToSizedBuffer(dAtA[:i])
    		if err != nil {
    			return 0, err
    		}
    		i -= size
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storagemigration/v1alpha1/generated.proto

      // to migrate. When the .status.conditions indicates the migration is
      // "Running", users can use this token to check the progress of the
      // migration.
      // +optional
      optional string continueToken = 2;
    }
    
    // Status of the storage version migration.
    message StorageVersionMigrationStatus {
      // The latest available observations of the migration's current state.
      // +patchMergeKey=type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storagemigration/v1alpha1/types_swagger_doc_generated.go

    	"":              "Spec of the storage version migration.",
    	"resource":      "The resource that is being migrated. The migrator sends requests to the endpoint serving the resource. Immutable.",
    	"continueToken": "The token used in the list options to get the next chunk of objects to migrate. When the .status.conditions indicates the migration is \"Running\", users can use this token to check the progress of the migration.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response_test.go

    }
    
    func TestAsPartialObjectMetadataList(t *testing.T) {
    	var remainingItemCount int64 = 10
    	pods := &examplev1.PodList{
    		ListMeta: metav1.ListMeta{
    			ResourceVersion:    "10",
    			Continue:           "continuetoken",
    			RemainingItemCount: &remainingItemCount,
    		},
    	}
    
    	pomGVs := []schema.GroupVersion{metav1beta1.SchemeGroupVersion, metav1.SchemeGroupVersion}
    	for _, gv := range pomGVs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    		t.Fatalf("list should support ListMeta %T: %v", listObj, err)
    	}
    	m.SetContinue("continuetoken")
    	m.SetResourceVersion("11")
    
    	table, err := t.storage.(rest.TableConvertor).ConvertToTable(ctx, listObj, nil)
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	if table.ResourceVersion != "11" || table.Continue != "continuetoken" {
    		t.Errorf("printer lost list meta: %#v", table.ListMeta)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/helper_test.go

    	}{
    		{
    			name:        "updates list options with continue token until list finished",
    			initialOpts: &metav1.ListOptions{},
    			listFunc: func(options metav1.ListOptions) (runtime.Object, error) {
    				continueTokens = append(continueTokens, options.Continue)
    				obj := corev1.PodList{}
    				switch options.Continue {
    				case "":
    					metadataAccessor.SetContinue(&obj, "abc")
    				case "abc":
    					metadataAccessor.SetContinue(&obj, "def")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

              }
            ]
          },
          "io.k8s.api.storagemigration.v1alpha1.StorageVersionMigrationSpec": {
            "description": "Spec of the storage version migration.",
            "properties": {
              "continueToken": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     map[string]interface{}{},
    							Ref:         ref("k8s.io/api/storagemigration/v1alpha1.GroupVersionResource"),
    						},
    					},
    					"continueToken": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  9. api/openapi-spec/swagger.json

            }
          ]
        },
        "io.k8s.api.storagemigration.v1alpha1.StorageVersionMigrationSpec": {
          "description": "Spec of the storage version migration.",
          "properties": {
            "continueToken": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top