Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/volume/flexvolume/plugin.go

    type pluginFactory struct{}
    
    func (pluginFactory) NewFlexVolumePlugin(pluginDir, name string, runner exec.Interface) (volume.VolumePlugin, error) {
    	execPath := filepath.Join(pluginDir, name)
    
    	driverName := utilstrings.UnescapeQualifiedName(name)
    
    	flexPlugin := &flexVolumePlugin{
    		driverName:          driverName,
    		execPath:            execPath,
    		runner:              runner,
    		unsupportedCommands: []string{},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. 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)
Back to top