Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for registerPluginFuncs (0.44 sec)

  1. pkg/scheduler/scheduler_test.go

    			var registerPluginFuncs []tf.RegisterPluginFunc
    			for name, entrypoint := range tt.entrypoints {
    				registerPluginFuncs = append(registerPluginFuncs,
    					// anything supported by TestPlugin is fine
    					tf.RegisterFilterPlugin(name, entrypoint),
    				)
    			}
    			// we always need this
    			registerPluginFuncs = append(registerPluginFuncs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    				return true, gotBinding, item.injectBindError
    			})
    			registerPluginFuncs := append(item.registerPluginFuncs,
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    			)
    			ctx, cancel := context.WithCancel(context.Background())
    			defer cancel()
    			fwk, err := tf.NewFramework(ctx,
    				registerPluginFuncs,
    				testSchedulerName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top