Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 334 for resourceVersion (0.39 sec)

  1. pkg/volume/util/resize_util_test.go

    	}
    	metadata, ok := patchMap["metadata"].(map[string]interface{})
    	if !ok {
    		t.Errorf("error converting metadata to version map")
    	}
    	resourceVersion, _ := metadata["resourceVersion"].(string)
    	if resourceVersion != "10" {
    		t.Errorf("expected resource version to 10 got %s", resourceVersion)
    	}
    }
    
    type pvcModifier struct {
    	pvc *v1.PersistentVolumeClaim
    }
    
    func (m pvcModifier) get() *v1.PersistentVolumeClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ListOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 376 bytes
    - Viewed (0)
  3. pkg/registry/resource/resourceslice/strategy_test.go

    }
    
    func TestClassStrategyUpdate(t *testing.T) {
    	t.Run("no-changes-okay", func(t *testing.T) {
    		ctx := genericapirequest.NewDefaultContext()
    		slice := slice.DeepCopy()
    		newClass := slice.DeepCopy()
    		newClass.ResourceVersion = "4"
    
    		Strategy.PrepareForUpdate(ctx, newClass, slice)
    		errs := Strategy.ValidateUpdate(ctx, newClass, slice)
    		if len(errs) != 0 {
    			t.Errorf("unexpected validation errors: %v", errs)
    		}
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. pkg/controller/storageversionmigrator/util.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    func convertResourceVersionToInt(rv string) (int64, error) {
    	resourceVersion, err := strconv.ParseInt(rv, 10, 64)
    	if err != nil {
    		return 0, fmt.Errorf("failed to parse resource version %q: %w", rv, err)
    	}
    
    	return resourceVersion, nil
    }
    
    func getGVRFromResource(svm *svmv1alpha1.StorageVersionMigration) schema.GroupVersionResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.GetOptions.yaml

    apiVersion: v1
    kind: GetOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 70 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.SerializedReference.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 305 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.SerializedReference.yaml

    apiVersion: v1
    kind: SerializedReference
    reference:
      apiVersion: apiVersionValue
      fieldPath: fieldPathValue
      kind: kindValue
      name: nameValue
      namespace: namespaceValue
      resourceVersion: resourceVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 230 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ListOptions.yaml

    allowWatchBookmarks: true
    apiVersion: v1
    continue: continueValue
    fieldSelector: fieldSelectorValue
    kind: ListOptions
    labelSelector: labelSelectorValue
    limit: 7
    resourceVersion: resourceVersionValue
    resourceVersionMatch: resourceVersionMatchValue
    sendInitialEvents: true
    timeoutSeconds: 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 300 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Status.yaml

      group: groupValue
      kind: kindValue
      name: nameValue
      retryAfterSeconds: 5
      uid: uidValue
    kind: Status
    message: messageValue
    metadata:
      continue: continueValue
      remainingItemCount: 4
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
    reason: reasonValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 410 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.DeleteOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    gracePeriodSeconds: 1
    kind: DeleteOptions
    orphanDependents: true
    preconditions:
      resourceVersion: resourceVersionValue
      uid: uidValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 215 bytes
    - Viewed (0)
Back to top