Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsDeviceBindMountExist (0.17 sec)

  1. pkg/volume/util/volumepathhandler/volume_path_handler.go

    	RemoveMapPath(mapPath string) error
    	// IsSymlinkExist returns true if specified symbolic link exists
    	IsSymlinkExist(mapPath string) (bool, error)
    	// IsDeviceBindMountExist returns true if specified bind mount exists
    	IsDeviceBindMountExist(mapPath string) (bool, error)
    	// GetDeviceBindMountRefs searches bind mounts under global map path
    	GetDeviceBindMountRefs(devPath string, mapPath string) ([]string, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. pkg/volume/testing/testing.go

    	return nil
    }
    
    func (fv *FakeVolumePathHandler) IsSymlinkExist(mapPath string) (bool, error) {
    	// nil is success, else error
    	return true, nil
    }
    
    func (fv *FakeVolumePathHandler) IsDeviceBindMountExist(mapPath string) (bool, error) {
    	// nil is success, else error
    	return true, nil
    }
    
    func (fv *FakeVolumePathHandler) GetDeviceBindMountRefs(devPath string, mapPath string) ([]string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top