Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for fsType (0.12 sec)

  1. pkg/volume/local/local.go

    	err = dm.mounter.FormatAndMount(devicePath, deviceMountPath, fstype, mountOptions)
    	if err != nil {
    		if rmErr := os.Remove(deviceMountPath); rmErr != nil {
    			klog.Warningf("local: failed to remove %s: %v", deviceMountPath, rmErr)
    		}
    		return fmt.Errorf("local: failed to mount device %s at %s (fstype: %s), error %w", devicePath, deviceMountPath, fstype, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. pkg/volume/portworx/portworx.go

    	pwx, readOnly, err := getVolumeSource(spec)
    	if err != nil {
    		return nil, err
    	}
    
    	volumeID := pwx.VolumeID
    	fsType := pwx.FSType
    
    	return &portworxVolumeMounter{
    		portworxVolume: &portworxVolume{
    			podUID:          podUID,
    			volName:         spec.Name(),
    			volumeID:        volumeID,
    			manager:         manager,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/syscall/syscall_linux.go

    }
    
    //sys	mount(source string, target string, fstype string, flags uintptr, data *byte) (err error)
    
    func Mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
    	// Certain file systems get rather angry and EINVAL if you give
    	// them an empty string of data, rather than NULL.
    	if data == "" {
    		return mount(source, target, fstype, flags, nil)
    	}
    	datap, err := BytePtrFromString(data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/types.go

    	// to determine if Kubernetes should modify ownership and permissions of the volume.
    	// With the default policy the defined fsGroup will only be applied
    	// if a fstype is defined and the volume's access mode contains ReadWriteOnce.
    	//
    	// +optional
    	FSGroupPolicy *FSGroupPolicy `json:"fsGroupPolicy,omitempty" protobuf:"bytes,5,opt,name=fsGroupPolicy"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. pkg/volume/emptydir/empty_dir_test.go

    		t.Errorf("Expected %v physicalMounter calls during setup, got %v", e, a)
    	} else if config.expectedSetupMounts == 1 &&
    		(log[0].Action != mount.FakeActionMount || (log[0].FSType != "tmpfs" && log[0].FSType != "hugetlbfs")) {
    		t.Errorf("Unexpected physicalMounter action during setup: %#v", log[0])
    	}
    	physicalMounter.ResetLog()
    
    	// Make an unmounter for the volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. cmd/storage-datatypes.go

    //
    //msgp:tuple DiskInfo
    type DiskInfo struct {
    	Total      uint64
    	Free       uint64
    	Used       uint64
    	UsedInodes uint64
    	FreeInodes uint64
    	Major      uint32
    	Minor      uint32
    	NRRequests uint64
    	FSType     string
    	RootDisk   bool
    	Healing    bool
    	Scanning   bool
    	Endpoint   string
    	MountPath  string
    	ID         string
    	Rotational bool
    	Metrics    DiskMetrics
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. pkg/volume/plugins.go

    }
    
    const (
    	// Common parameter which can be specified in StorageClass to specify the desired FSType
    	// Provisioners SHOULD implement support for this if they are block device based
    	// Must be a filesystem type supported by the host operating system.
    	// Ex. "ext4", "xfs", "ntfs". Default value depends on the provisioner
    	VolumeParameterFSType = "fstype"
    
    	ProbeAddOrUpdate ProbeOperation = 1 << iota
    	ProbeRemove
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top