Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 123 for fsType (0.1 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/awselasticblockstorevolumesource.go

    // with apply.
    type AWSElasticBlockStoreVolumeSourceApplyConfiguration struct {
    	VolumeID  *string `json:"volumeID,omitempty"`
    	FSType    *string `json:"fsType,omitempty"`
    	Partition *int32  `json:"partition,omitempty"`
    	ReadOnly  *bool   `json:"readOnly,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  2. internal/disk/type_bsd.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package disk
    
    // getFSType returns the filesystem type of the underlying mounted filesystem
    func getFSType(fstype []int8) string {
    	b := make([]byte, len(fstype))
    	for i, v := range fstype {
    		b[i] = byte(v)
    	}
    	return string(b)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/flexpersistentvolumesource.go

    // with apply.
    type FlexPersistentVolumeSourceApplyConfiguration struct {
    	Driver    *string                            `json:"driver,omitempty"`
    	FSType    *string                            `json:"fsType,omitempty"`
    	SecretRef *SecretReferenceApplyConfiguration `json:"secretRef,omitempty"`
    	ReadOnly  *bool                              `json:"readOnly,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/flexvolumesource.go

    	return b
    }
    
    // WithFSType sets the FSType field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the FSType field is set to the value of the last call.
    func (b *FlexVolumeSourceApplyConfiguration) WithFSType(value string) *FlexVolumeSourceApplyConfiguration {
    	b.FSType = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/gcepersistentdiskvolumesource.go

    // with apply.
    type GCEPersistentDiskVolumeSourceApplyConfiguration struct {
    	PDName    *string `json:"pdName,omitempty"`
    	FSType    *string `json:"fsType,omitempty"`
    	Partition *int32  `json:"partition,omitempty"`
    	ReadOnly  *bool   `json:"readOnly,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. pkg/volume/iscsi/attacher.go

    	if err != nil {
    		return nil, err
    	}
    
    	klog.V(5).Infof("iscsi: VolumeSpecToMounter volumeMode %s", volumeMode)
    	return &iscsiDiskMounter{
    		iscsiDisk:  iscsiDisk,
    		fsType:     fsType,
    		volumeMode: volumeMode,
    		readOnly:   readOnly,
    		mounter:    &mount.SafeFormatAndMount{Interface: host.GetMounter(iscsiPluginName), Exec: exec},
    		exec:       exec,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/fcvolumesource.go

    	return b
    }
    
    // WithFSType sets the FSType field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the FSType field is set to the value of the last call.
    func (b *FCVolumeSourceApplyConfiguration) WithFSType(value string) *FCVolumeSourceApplyConfiguration {
    	b.FSType = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/csivolumesource.go

    	return b
    }
    
    // WithFSType sets the FSType field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the FSType field is set to the value of the last call.
    func (b *CSIVolumeSourceApplyConfiguration) WithFSType(value string) *CSIVolumeSourceApplyConfiguration {
    	b.FSType = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/rbdpersistentvolumesource.go

    	return b
    }
    
    // WithFSType sets the FSType field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the FSType field is set to the value of the last call.
    func (b *RBDPersistentVolumeSourceApplyConfiguration) WithFSType(value string) *RBDPersistentVolumeSourceApplyConfiguration {
    	b.FSType = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/util.go

    }
    
    func getFSType(spec *volume.Spec) (string, error) {
    	if spec.Volume != nil && spec.Volume.FlexVolume != nil {
    		return spec.Volume.FlexVolume.FSType, nil
    	}
    	if spec.PersistentVolume != nil && spec.PersistentVolume.Spec.FlexVolume != nil {
    		return spec.PersistentVolume.Spec.FlexVolume.FSType, nil
    	}
    	return "", errNotFlexVolume
    }
    
    func getSecretNameAndNamespace(spec *volume.Spec, podNamespace string) (string, string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 14 13:58:56 UTC 2021
    - 4.8K bytes
    - Viewed (0)
Back to top