Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for csistoragecapacity (0.41 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.CSIStorageCapacity.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 523 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.CSIStorageCapacity.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 518 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.CSIStorageCapacity.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 518 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1alpha1.CSIStorageCapacity.pb

    Daniel Smith <******@****.***> 1651776874 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 524 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 524 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.CSIStorageCapacity.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 523 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 524 bytes
    - Viewed (0)
  8. pkg/registry/storage/csistoragecapacity/storage/storage.go

    	storageapi "k8s.io/kubernetes/pkg/apis/storage"
    	"k8s.io/kubernetes/pkg/registry/storage/csistoragecapacity"
    )
    
    // CSIStorageCapacityStorage includes storage for CSIStorageCapacity and all subresources
    type CSIStorageCapacityStorage struct {
    	CSIStorageCapacity *REST
    }
    
    // REST object that will work for CSIStorageCapacity
    type REST struct {
    	*genericregistry.Store
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. pkg/registry/storage/csistoragecapacity/strategy.go

    }
    
    func (csiStorageCapacityStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	csiStorageCapacity := obj.(*storage.CSIStorageCapacity)
    	opts := validation.CSIStorageCapacityValidateOptions{
    		AllowInvalidLabelValueInSelector: false,
    	}
    	errs := validation.ValidateCSIStorageCapacity(csiStorageCapacity, opts)
    	return errs
    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 08:41:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. pkg/registry/storage/csistoragecapacity/storage/storage_test.go

    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	csiStorageCapacity := validNewCSIStorageCapacity("foo")
    	csiStorageCapacity.ObjectMeta = metav1.ObjectMeta{GenerateName: "foo-"}
    	test.TestCreate(
    		// valid
    		csiStorageCapacity,
    		// invalid
    		&storageapi.CSIStorageCapacity{
    			ObjectMeta: metav1.ObjectMeta{Name: "*BadName!"},
    		},
    	)
    }
    
    func TestUpdate(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 03 19:54:14 UTC 2020
    - 4.4K bytes
    - Viewed (0)
Back to top