Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 172 for fsType (0.17 sec)

  1. pkg/volume/iscsi/iscsi.go

    		//Add volume metrics
    		iscsiDisk.MetricsProvider = volume.NewMetricsStatFS(iscsiDisk.GetPath())
    	}
    	return &iscsiDiskMounter{
    		iscsiDisk:    iscsiDisk,
    		fsType:       fsType,
    		readOnly:     readOnly,
    		mounter:      &mount.SafeFormatAndMount{Interface: mounter, Exec: exec},
    		exec:         exec,
    		deviceUtil:   ioutil.NewDeviceHandler(ioutil.NewIOHandler()),
    		mountOptions: ioutil.MountOptionFromSpec(spec),
    	}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	out.VolumeID = in.VolumeID
    	out.FSType = in.FSType
    	out.Partition = in.Partition
    	out.ReadOnly = in.ReadOnly
    	return nil
    }
    
    // Convert_v1_AWSElasticBlockStoreVolumeSource_To_core_AWSElasticBlockStoreVolumeSource is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// fsType is the filesystem type to mount.
    	// Must be a filesystem type supported by the host operating system.
    	// Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
    	// More info: https://examples.k8s.io/mysql-cinder-pd/README.md
    	// +optional
    	FSType string `json:"fsType,omitempty" protobuf:"bytes,2,opt,name=fsType"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"volumeID":  "volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. pkg/volume/fc/fc.go

    	if err != nil {
    		return nil, err
    	}
    
    	klog.V(5).Infof("fc: newMounterInternal volumeMode %s", volumeMode)
    	return &fcDiskMounter{
    		fcDisk:       fcDisk,
    		fsType:       fc.FSType,
    		volumeMode:   volumeMode,
    		readOnly:     readOnly,
    		mounter:      &mount.SafeFormatAndMount{Interface: mounter, Exec: exec},
    		deviceUtil:   util.NewDeviceHandler(util.NewIOHandler()),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string cachingMode = 3;
    
      // fsType is Filesystem type to mount.
      // Must be a filesystem type supported by the host operating system.
      // Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
      // +optional
      optional string fsType = 4;
    
      // readOnly Defaults to false (read/write). ReadOnly here will force
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. cmd/metacache-walk.go

    // On success a sorted meta cache stream will be returned.
    // Metadata has data stripped, if any.
    func (s *xlStorage) WalkDir(ctx context.Context, opts WalkDirOptions, wr io.Writer) (err error) {
    	legacyFS := !(s.fsType == xfs || s.fsType == ext4)
    
    	s.RLock()
    	legacy := s.formatLegacy
    	s.RUnlock()
    
    	// Verify if volume is valid and it exists.
    	volumeDir, err := s.getVolDir(opts.Bucket)
    	if err != nil {
    		return err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    	return (*funcref)(source, target, fstype, flags, data)
    }
    
    func legacyMount(source string, target string, fstype string, flags uintptr, data string) (err error) {
    	if needspace := 8 - len(fstype); needspace <= 0 {
    		fstype = fstype[0:8]
    	} else {
    		fstype += "        "[0:needspace]
    	}
    	return mount_LE(target, source, fstype, uint32(flags), int32(len(data)), data)
    }
    
    func validMount() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. pkg/controller/volume/expand/expand_controller_test.go

    			Driver:       pluginName,
    			VolumeHandle: volumeName,
    		}
    	} else {
    		pv.Spec.PersistentVolumeSource.AWSElasticBlockStore = &v1.AWSElasticBlockStoreVolumeSource{
    			VolumeID: volumeName,
    			FSType:   "ext4",
    		}
    	}
    	return pv
    }
    
    func getFakePersistentVolumeClaim(pvcName, volumeName, statusSize, requestSize string, uid types.UID) *v1.PersistentVolumeClaim {
    	pvc := &v1.PersistentVolumeClaim{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.pb.go

    		i--
    		if *m.ReadOnly {
    			dAtA[i] = 1
    		} else {
    			dAtA[i] = 0
    		}
    		i--
    		dAtA[i] = 0x28
    	}
    	if m.FSType != nil {
    		i -= len(*m.FSType)
    		copy(dAtA[i:], *m.FSType)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.FSType)))
    		i--
    		dAtA[i] = 0x22
    	}
    	if m.CachingMode != nil {
    		i -= len(*m.CachingMode)
    		copy(dAtA[i:], *m.CachingMode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top