Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetStagingTargetPath (0.25 sec)

  1. pkg/volume/csi/fake/fake_client.go

    		return nil, f.nextErr
    	}
    
    	if req.GetVolumeId() == "" {
    		return nil, errors.New("missing volume id")
    	}
    	if req.GetStagingTargetPath() == "" {
    		return nil, errors.New("missing staging target path")
    	}
    
    	csiVol := CSIVolume{
    		Path:          req.GetStagingTargetPath(),
    		VolumeContext: req.GetVolumeContext(),
    	}
    
    	fsType := ""
    	fsTypes := "block|ext4|xfs|zfs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 16K bytes
    - Viewed (0)
  2. pkg/volume/csi/expander_test.go

    					t.Errorf("expected failed precondition error got: %v", err)
    				}
    			}
    
    			// verify device staging target path
    			stagingTargetPath := fakeNodeClient.FakeNodeExpansionRequest.GetStagingTargetPath()
    			if tc.deviceStagePath != "" && tc.deviceStagePath != stagingTargetPath {
    				t.Errorf("For %s: expected staging path %s got %s", tc.name, tc.deviceStagePath, stagingTargetPath)
    			}
    
    			if ok != tc.success {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 03:58:36 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top