Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for CountFlags (0.14 sec)

  1. pkg/volume/csi/csi_mounter_test.go

    			if vol.Path != csiMounter.GetPath() {
    				t.Errorf("csi server expected path %s, got %s", csiMounter.GetPath(), vol.Path)
    			}
    			if !reflect.DeepEqual(vol.MountFlags, expectedMountOptions) {
    				t.Errorf("csi server expected mount options %v, got %v", expectedMountOptions, vol.MountFlags)
    			}
    			if !reflect.DeepEqual(vol.VolumeContext, test.expectedVolumeContext) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_client_test.go

    			Block: &csipbv1.VolumeCapability_BlockVolume{},
    		}
    	} else {
    		mountVolume := &csipbv1.VolumeCapability_MountVolume{
    			FsType:     fsType,
    			MountFlags: mountOptions,
    		}
    		if fsGroup != nil {
    			mountVolume.VolumeMountGroup = strconv.FormatInt(*fsGroup, 10 /* base */)
    		}
    		req.VolumeCapability.AccessType = &csipbv1.VolumeCapability_Mount{
    			Mount: mountVolume,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_attacher_test.go

    					t.Errorf("expected mount path: %s. got: %s", tc.deviceMountPath, vol.Path)
    				}
    				if !reflect.DeepEqual(vol.MountFlags, tc.spec.PersistentVolume.Spec.MountOptions) {
    					t.Errorf("expected mount options: %v, got: %v", tc.spec.PersistentVolume.Spec.MountOptions, vol.MountFlags)
    				}
    				if vol.VolumeMountGroup != tc.expectedVolumeMountGroup {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
Back to top