Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for csistoragecapacity (0.51 sec)

  1. staging/src/k8s.io/api/storage/v1alpha1/zz_generated.prerelease-lifecycle.go

    func (in *CSIStorageCapacity) APILifecycleDeprecated() (major, minor int) {
    	return 1, 21
    }
    
    // APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type.
    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *CSIStorageCapacity) APILifecycleReplacement() schema.GroupVersionKind {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/zz_generated.deepcopy.go

    func (in *CSIStorageCapacity) DeepCopy() *CSIStorageCapacity {
    	if in == nil {
    		return nil
    	}
    	out := new(CSIStorageCapacity)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *CSIStorageCapacity) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

    }
    
    // CSIStorageCapacityList is a collection of CSIStorageCapacity objects.
    message CSIStorageCapacityList {
      // Standard list metadata
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of CSIStorageCapacity objects.
      repeated CSIStorageCapacity items = 2;
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1beta1/zz_generated.deepcopy.go

    func (in *CSIStorageCapacity) DeepCopy() *CSIStorageCapacity {
    	if in == nil {
    		return nil
    	}
    	out := new(CSIStorageCapacity)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *CSIStorageCapacity) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:01 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  5. pkg/apis/storage/zz_generated.deepcopy.go

    func (in *CSIStorageCapacity) DeepCopy() *CSIStorageCapacity {
    	if in == nil {
    		return nil
    	}
    	out := new(CSIStorageCapacity)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *CSIStorageCapacity) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    }
    
    func (CSIStorageCapacity) SwaggerDoc() map[string]string {
    	return map_CSIStorageCapacity
    }
    
    var map_CSIStorageCapacityList = map[string]string{
    	"":         "CSIStorageCapacityList is a collection of CSIStorageCapacity objects.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1alpha1/generated.pb.go

    func (m *CSIStorageCapacity) Reset()      { *m = CSIStorageCapacity{} }
    func (*CSIStorageCapacity) ProtoMessage() {}
    func (*CSIStorageCapacity) Descriptor() ([]byte, []int) {
    	return fileDescriptor_02e7952e43280c27, []int{0}
    }
    func (m *CSIStorageCapacity) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *CSIStorageCapacity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 76.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1/generated.proto

      // capacity that the driver deployment will report by creating
      // CSIStorageCapacity objects with capacity information, if set to true.
      //
      // The check can be enabled immediately when deploying a driver.
      // In that case, provisioning new volumes with late binding
      // will pause until the driver deployment has published
      // some suitable CSIStorageCapacity object.
      //
      // Alternatively, the driver can be deployed with the field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    			StorageCapacity: &storageCapacity,
    		},
    	}
    }
    
    func makeCapacity(name, storageClassName string, node *v1.Node, capacityStr, maximumVolumeSizeStr string) *storagev1.CSIStorageCapacity {
    	c := &storagev1.CSIStorageCapacity{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		StorageClassName: storageClassName,
    		NodeTopology:     &metav1.LabelSelector{},
    	}
    	if node != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. pkg/registry/storage/rest/storage_storage.go

    	csidriverstore "k8s.io/kubernetes/pkg/registry/storage/csidriver/storage"
    	csinodestore "k8s.io/kubernetes/pkg/registry/storage/csinode/storage"
    	csistoragecapacitystore "k8s.io/kubernetes/pkg/registry/storage/csistoragecapacity/storage"
    	storageclassstore "k8s.io/kubernetes/pkg/registry/storage/storageclass/storage"
    	volumeattachmentstore "k8s.io/kubernetes/pkg/registry/storage/volumeattachment/storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 12:51:06 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top