Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for CSINodeList (0.26 sec)

  1. staging/src/k8s.io/api/storage/v1/generated.pb.go

    var xxx_messageInfo_CSINodeDriver proto.InternalMessageInfo
    
    func (m *CSINodeList) Reset()      { *m = CSINodeList{} }
    func (*CSINodeList) ProtoMessage() {}
    func (*CSINodeList) Descriptor() ([]byte, []int) {
    	return fileDescriptor_662262cc70094b41, []int{5}
    }
    func (m *CSINodeList) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *CSINodeList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    var xxx_messageInfo_CSINodeDriver proto.InternalMessageInfo
    
    func (m *CSINodeList) Reset()      { *m = CSINodeList{} }
    func (*CSINodeList) ProtoMessage() {}
    func (*CSINodeList) Descriptor() ([]byte, []int) {
    	return fileDescriptor_73e4f72503e71065, []int{5}
    }
    func (m *CSINodeList) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *CSINodeList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CSINodeList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 17
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/generated.proto

      // This field is beta.
      // +optional
      optional VolumeNodeResources allocatable = 4;
    }
    
    // CSINodeList is a collection of CSINode objects.
    message CSINodeList {
      // Standard list metadata
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // allocatable represents the volume resources of a node that are available for scheduling.
      // +optional
      optional VolumeNodeResources allocatable = 4;
    }
    
    // CSINodeList is a collection of CSINode objects.
    message CSINodeList {
      // Standard list metadata
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/storage/v1/generated.proto

      // This field is beta.
      // +optional
      optional VolumeNodeResources allocatable = 4;
    }
    
    // CSINodeList is a collection of CSINode objects.
    message CSINodeList {
      // Standard list metadata
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // allocatable represents the volume resources of a node that are available for scheduling.
      // +optional
      optional VolumeNodeResources allocatable = 4;
    }
    
    // CSINodeList is a collection of CSINode objects.
    message CSINodeList {
      // Standard list metadata
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.17
    
    // CSINodeList is a collection of CSINode objects.
    type CSINodeList struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard list metadata
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              }
            },
            "required": [
              "name",
              "nodeID"
            ],
            "type": "object"
          },
          "io.k8s.api.storage.v1.CSINodeList": {
            "description": "CSINodeList is a collection of CSINode objects.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    	}
    	row.Cells = append(row.Cells, obj.Name, int64(len(obj.Spec.Drivers)), translateTimestampSince(obj.CreationTimestamp))
    	return []metav1.TableRow{row}, nil
    }
    
    func printCSINodeList(list *storage.CSINodeList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	rows := make([]metav1.TableRow, 0, len(list.Items))
    	for i := range list.Items {
    		r, err := printCSINode(&list.Items[i], options)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top