Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for volumeName (0.12 sec)

  1. src/cmd/go/internal/str/path.go

    // filesystem does, and assumes that all path separators are canonicalized to
    // filepath.Separator (as returned by filepath.Clean).
    func HasFilePathPrefix(s, prefix string) bool {
    	sv := filepath.VolumeName(s)
    	pv := filepath.VolumeName(prefix)
    
    	// Strip the volume from both paths before canonicalizing sv and pv:
    	// it's unlikely that strings.ToUpper will change the length of the string,
    	// but doesn't seem impossible.
    	s = s[len(sv):]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/path/filepath/symlink_windows.go

    package filepath
    
    import (
    	"strings"
    	"syscall"
    )
    
    // normVolumeName is like VolumeName, but makes drive letter upper case.
    // result of EvalSymlinks must be unique, so we have
    // EvalSymlinks(`c:\a`) == EvalSymlinks(`C:\a`).
    func normVolumeName(path string) string {
    	volume := VolumeName(path)
    
    	if len(volume) > 2 { // isUNC
    		return volume
    	}
    
    	return strings.ToUpper(volume)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 07:42:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pkg/volume/flexvolume/plugin.go

    	return true, nil
    }
    
    // ConstructVolumeSpec is part of the volume.AttachableVolumePlugin interface.
    func (plugin *flexVolumePlugin) ConstructVolumeSpec(volumeName, mountPath string) (volume.ReconstructedVolume, error) {
    	flexVolume := &api.Volume{
    		Name: volumeName,
    		VolumeSource: api.VolumeSource{
    			FlexVolume: &api.FlexVolumeSource{
    				Driver: plugin.driverName,
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml

        readOnly: true
        secretRef:
          name: nameValue
          namespace: namespaceValue
        sslEnabled: true
        storageMode: storageModeValue
        storagePool: storagePoolValue
        system: systemValue
        volumeName: volumeNameValue
      storageClassName: storageClassNameValue
      storageos:
        fsType: fsTypeValue
        readOnly: true
        secretRef:
          apiVersion: apiVersionValue
          fieldPath: fieldPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.yaml

              name: nameValue
              namespace: namespaceValue
            sslEnabled: true
            storageMode: storageModeValue
            storagePool: storagePoolValue
            system: systemValue
            volumeName: volumeNameValue
          storageClassName: storageClassNameValue
          storageos:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml

              name: nameValue
              namespace: namespaceValue
            sslEnabled: true
            storageMode: storageModeValue
            storagePool: storagePoolValue
            system: systemValue
            volumeName: volumeNameValue
          storageClassName: storageClassNameValue
          storageos:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1alpha1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

              name: nameValue
              namespace: namespaceValue
            sslEnabled: true
            storageMode: storageModeValue
            storagePool: storagePoolValue
            system: systemValue
            volumeName: volumeNameValue
          storageClassName: storageClassNameValue
          storageos:
            fsType: fsTypeValue
            readOnly: true
            secretRef:
              apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top