Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UnmapDevice (0.14 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    		"volumePlugin is nil": {
    			volumePlugins:  []volume.VolumePlugin{},
    			expectErr:      true,
    			expectedErrMsg: "UnmapDevice.FindMapperPluginByName failed",
    		},
    		"blockVolumePlugin is nil": {
    			volumePlugins:  volumetesting.NewFakeFileVolumePlugin(),
    			expectErr:      true,
    			expectedErrMsg: "UnmapDevice.FindMapperPluginByName failed to find BlockVolumeMapper plugin. Volume plugin is nil.",
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. pkg/volume/testing/testing.go

    }
    
    func (fv *FakeVolumePathHandler) MapDevice(devicePath string, mapDir string, linkName string, bindMount bool) error {
    	// nil is success, else error
    	return nil
    }
    
    func (fv *FakeVolumePathHandler) UnmapDevice(mapDir string, linkName string, bindMount bool) error {
    	// nil is success, else error
    	return nil
    }
    
    func (fv *FakeVolumePathHandler) RemoveMapPath(mapPath string) error {
    	// nil is success, else 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