Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for getvolumename (0.25 sec)

  1. pkg/volume/local/local.go

    	plugin.recorder = host.GetEventRecorder()
    	return nil
    }
    
    func (plugin *localVolumePlugin) GetPluginName() string {
    	return localVolumePluginName
    }
    
    func (plugin *localVolumePlugin) GetVolumeName(spec *volume.Spec) (string, error) {
    	// This volume is only supported as a PersistentVolumeSource, so the PV name is unique
    	return spec.Name(), nil
    }
    
    func (plugin *localVolumePlugin) CanSupport(spec *volume.Spec) bool {
    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/util/operationexecutor/operation_generator.go

    		}
    
    		volumeName, err =
    			attachableVolumePlugin.GetVolumeName(volumeToDetach.VolumeSpec)
    		if err != nil {
    			return volumetypes.GeneratedOperations{}, volumeToDetach.GenerateErrorDetailed("DetachVolume.GetVolumeName failed", err)
    		}
    	} else {
    		// Get attacher plugin and the volumeName by splitting the volume unique name in case
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher_test.go

    			_, err := csiAttacher.k8s.StorageV1().VolumeAttachments().Create(context.TODO(), attachment, metav1.CreateOptions{})
    			if err != nil {
    				t.Fatalf("failed to attach: %v", err)
    			}
    			volumeName, err := plug.GetVolumeName(spec)
    			if err != nil {
    				t.Errorf("test case %s failed: %v", tc.name, err)
    			}
    
    			err = csiAttacher.Detach(volumeName, types.NodeName(nodeName))
    			if tc.shouldFail && err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  4. cmd/storage-rest_test.go

    	if err != nil {
    		t.Fatalf("unexpected error %v", err)
    	}
    
    	testCases := []struct {
    		volumeName     string
    		objectName     string
    		destVolumeName string
    		destObjectName string
    		expectErr      bool
    	}{
    		{"foo", "myobject", "foo", "yourobject", false},
    		{"foo", "yourobject", "bar", "myobject", false},
    		// overwrite.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation_test.go

    			t.Errorf("expected failure for test: %v", volumeAttachment)
    		}
    	}
    }
    
    func TestVolumeAttachmentUpdateValidation(t *testing.T) {
    	volumeName := "foo"
    	newVolumeName := "bar"
    
    	old := storage.VolumeAttachment{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    		Spec: storage.VolumeAttachmentSpec{
    			Attacher: "myattacher",
    			Source:   storage.VolumeAttachmentSource{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  6. src/path/filepath/path_test.go

    	{`//./UNC/host`, `\\.\UNC\host`},
    	{`//./UNC/host\`, `\\.\UNC\host\`},
    	{`//./UNC`, `\\.\UNC`},
    	{`//./UNC/`, `\\.\UNC\`},
    	{`\\?\x`, `\\?\x`},
    	{`\??\x`, `\??\x`},
    }
    
    func TestVolumeName(t *testing.T) {
    	if runtime.GOOS != "windows" {
    		return
    	}
    	for _, v := range volumenametests {
    		if vol := filepath.VolumeName(v.path); vol != v.vol {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top