Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 405 for volumeName (0.12 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml

                  storageClassName: storageClassNameValue
                  volumeAttributesClassName: volumeAttributesClassNameValue
                  volumeMode: volumeModeValue
                  volumeName: volumeNameValue
            fc:
              fsType: fsTypeValue
              lun: 2
              readOnly: true
              targetWWNs:
              - targetWWNsValue
              wwids:
              - wwidsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.StatefulSet.json

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

                  storageClassName: storageClassNameValue
                  volumeAttributesClassName: volumeAttributesClassNameValue
                  volumeMode: volumeModeValue
                  volumeName: volumeNameValue
            fc:
              fsType: fsTypeValue
              lun: 2
              readOnly: true
              targetWWNs:
              - targetWWNsValue
              wwids:
              - wwidsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.StatefulSet.json

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

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  9. src/os/path.go

    		i--
    	}
    	if i < 0 {
    		i = 0
    	}
    
    	// If there is a parent directory, and it is not the volume name,
    	// recurse to ensure parent directory exists.
    	if parent := path[:i]; len(parent) > len(filepathlite.VolumeName(path)) {
    		err = MkdirAll(parent, perm)
    		if err != nil {
    			return err
    		}
    	}
    
    	// Parent now exists; invoke Mkdir and use its result.
    	err = Mkdir(path, perm)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pkg/volume/util/util.go

    			volumeSpec.Name())
    	}
    
    	volumeName, err := volumePlugin.GetVolumeName(volumeSpec)
    	if err != nil || volumeName == "" {
    		return "", fmt.Errorf(
    			"failed to GetVolumeName from volumePlugin for volumeSpec %q err=%v",
    			volumeSpec.Name(),
    			err)
    	}
    
    	return GetUniqueVolumeName(
    			volumePlugin.GetPluginName(),
    			volumeName),
    		nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top