Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mountOptions (0.21 sec)

  1. staging/src/k8s.io/api/storage/v1/generated.pb.go

    			dAtA[i] = 1
    		} else {
    			dAtA[i] = 0
    		}
    		i--
    		dAtA[i] = 0x30
    	}
    	if len(m.MountOptions) > 0 {
    		for iNdEx := len(m.MountOptions) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.MountOptions[iNdEx])
    			copy(dAtA[i:], m.MountOptions[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.MountOptions[iNdEx])))
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	if m.ReclaimPolicy != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    			dAtA[i] = 1
    		} else {
    			dAtA[i] = 0
    		}
    		i--
    		dAtA[i] = 0x30
    	}
    	if len(m.MountOptions) > 0 {
    		for iNdEx := len(m.MountOptions) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.MountOptions[iNdEx])
    			copy(dAtA[i:], m.MountOptions[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.MountOptions[iNdEx])))
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	if m.ReclaimPolicy != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    	}
    	return true, nil
    }
    
    func checkMountOptionSupport(og *operationGenerator, volumeToMount VolumeToMount, plugin volume.VolumePlugin) error {
    	mountOptions := util.MountOptionFromSpec(volumeToMount.VolumeSpec)
    
    	if len(mountOptions) > 0 && !plugin.SupportsMountOption() {
    		return fmt.Errorf("mount options are not supported for this volume type")
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. pkg/apis/core/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.ClaimRef != nil {
    		in, out := &in.ClaimRef, &out.ClaimRef
    		*out = new(ObjectReference)
    		**out = **in
    	}
    	if in.MountOptions != nil {
    		in, out := &in.MountOptions, &out.MountOptions
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.VolumeMode != nil {
    		in, out := &in.VolumeMode, &out.VolumeMode
    		*out = new(PersistentVolumeMode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.ClaimRef != nil {
    		in, out := &in.ClaimRef, &out.ClaimRef
    		*out = new(ObjectReference)
    		**out = **in
    	}
    	if in.MountOptions != nil {
    		in, out := &in.MountOptions, &out.MountOptions
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.VolumeMode != nil {
    		in, out := &in.VolumeMode, &out.VolumeMode
    		*out = new(PersistentVolumeMode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top