Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UnescapeQualifiedName (0.22 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    				if err != nil {
    					klog.ErrorS(err, "Could not read volume plugin directory", "volumePluginPath", volumePluginPath)
    					continue
    				}
    				unescapePluginName := utilstrings.UnescapeQualifiedName(pluginName)
    				for _, volumeName := range volumePluginDirs {
    					volumePath := filepath.Join(volumePluginPath, volumeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_getters.go

    		volumeDirs, err := utilpath.ReadDirNoStat(volumePluginPath)
    		if err != nil {
    			return volumes, fmt.Errorf("could not read directory %s: %v", volumePluginPath, err)
    		}
    		unescapePluginName := utilstrings.UnescapeQualifiedName(volumePluginName)
    
    		if unescapePluginName != csi.CSIPluginName {
    			for _, volumeDir := range volumeDirs {
    				volumes = append(volumes, filepath.Join(volumePluginPath, volumeDir))
    			}
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top