Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for volumeattachment (0.33 sec)

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

    func (m *VolumeAttachment) Reset()      { *m = VolumeAttachment{} }
    func (*VolumeAttachment) ProtoMessage() {}
    func (*VolumeAttachment) Descriptor() ([]byte, []int) {
    	return fileDescriptor_73e4f72503e71065, []int{12}
    }
    func (m *VolumeAttachment) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *VolumeAttachment) 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
    - 133.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/generated.pb.go

    func (m *VolumeAttachment) Reset()      { *m = VolumeAttachment{} }
    func (*VolumeAttachment) ProtoMessage() {}
    func (*VolumeAttachment) Descriptor() ([]byte, []int) {
    	return fileDescriptor_662262cc70094b41, []int{12}
    }
    func (m *VolumeAttachment) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *VolumeAttachment) 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
    - 133.8K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    				return printRuntimeClass(&nodeapi.RuntimeClass{}, printers.GenerateOptions{})
    			},
    		},
    		{
    			name: "VolumeAttachment",
    			printer: func() ([]metav1.TableRow, error) {
    				return printVolumeAttachment(&storage.VolumeAttachment{}, printers.GenerateOptions{})
    			},
    		},
    		{
    			name: "FlowSchema",
    			printer: func() ([]metav1.TableRow, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printVolumeAttachment(obj *storage.VolumeAttachment, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	name := obj.Name
    	pvName := ""
    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