Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GetRegisteredPlugins (0.22 sec)

  1. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    	socketPath string,
    	previousTimestamp time.Time,
    	asw cache.ActualStateOfWorld) {
    	err := retryWithExponentialBackOff(
    		time.Duration(500*time.Millisecond),
    		func() (bool, error) {
    			registeredPlugins := asw.GetRegisteredPlugins()
    			for _, plugin := range registeredPlugins {
    				if plugin.SocketPath == socketPath && plugin.Timestamp.After(previousTimestamp) {
    					return true, nil
    				}
    			}
    			return false, nil
    		},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top