Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for refreshProbedPlugins (0.24 sec)

  1. pkg/volume/plugins.go

    	matchedPluginNames := []string{}
    	for _, v := range pm.plugins {
    		if v.CanSupport(spec) {
    			match = v
    			matchedPluginNames = append(matchedPluginNames, v.GetPluginName())
    		}
    	}
    
    	pm.refreshProbedPlugins()
    	for _, plugin := range pm.probedPlugins {
    		if plugin.CanSupport(spec) {
    			match = plugin
    			matchedPluginNames = append(matchedPluginNames, plugin.GetPluginName())
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top