Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for filterVerb (0.5 sec)

  1. pkg/scheduler/extender.go

    	for _, r := range config.ManagedResources {
    		managedResources.Insert(string(r.Name))
    	}
    	return &HTTPExtender{
    		extenderURL:      config.URLPrefix,
    		preemptVerb:      config.PreemptVerb,
    		filterVerb:       config.FilterVerb,
    		prioritizeVerb:   config.PrioritizeVerb,
    		bindVerb:         config.BindVerb,
    		weight:           config.Weight,
    		client:           client,
    		nodeCacheCapable: config.NodeCacheCapable,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. pkg/scheduler/apis/config/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_Extender_To_config_Extender(in *v1.Extender, out *config.Extender, s conversion.Scope) error {
    	out.URLPrefix = in.URLPrefix
    	out.FilterVerb = in.FilterVerb
    	out.PreemptVerb = in.PreemptVerb
    	out.PrioritizeVerb = in.PrioritizeVerb
    	out.Weight = in.Weight
    	out.BindVerb = in.BindVerb
    	out.EnableHTTPS = in.EnableHTTPS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/types.go

    type Extender struct {
    	// URLPrefix at which the extender is available
    	URLPrefix string
    	// Verb for the filter call, empty if not supported. This verb is appended to the URLPrefix when issuing the filter call to extender.
    	FilterVerb string
    	// Verb for the preempt call, empty if not supported. This verb is appended to the URLPrefix when issuing the preempt call to extender.
    	PreemptVerb string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "URLPrefix at which the extender is available",
    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"filterVerb": {
    						SchemaProps: spec.SchemaProps{
    							Description: "Verb for the filter call, empty if not supported. This verb is appended to the URLPrefix when issuing the filter call to extender.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top