Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for prioritylevelconfiguration (0.32 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		h.handler.ServeHTTP(w, r)
    		return
    	}
    
    	var classification *PriorityAndFairnessClassification
    	noteFn := func(fs *flowcontrol.FlowSchema, pl *flowcontrol.PriorityLevelConfiguration, flowDistinguisher string) {
    		classification = &PriorityAndFairnessClassification{
    			FlowSchemaName:    fs.Name,
    			FlowSchemaUID:     fs.UID,
    			PriorityLevelName: pl.Name,
    			PriorityLevelUID:  pl.UID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. pkg/registry/flowcontrol/ensurer/flowschema_test.go

    	return &fsBuilder{
    		object: &flowcontrolv1.FlowSchema{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: name,
    			},
    			Spec: flowcontrolv1.FlowSchemaSpec{
    				PriorityLevelConfiguration: flowcontrolv1.PriorityLevelConfigurationReference{
    					Name: plName,
    				},
    				MatchingPrecedence: matchingPrecedence,
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  3. pkg/controlplane/instance.go

    		flowcontrolv1beta3.SchemeGroupVersion.WithResource("flowschemas"),                 // deprecate in 1.29, remove in 1.32
    		flowcontrolv1beta3.SchemeGroupVersion.WithResource("prioritylevelconfigurations"), // deprecate in 1.29, remove in 1.32
    	}
    	// betaAPIGroupVersionsDisabledByDefault is for all future beta groupVersions.
    	betaAPIGroupVersionsDisabledByDefault = []schema.GroupVersion{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. pkg/controlplane/instance_test.go

    		flowcontrolv1bet3.SchemeGroupVersion.WithResource("flowschemas").GroupResource():                 true,
    		flowcontrolv1bet3.SchemeGroupVersion.WithResource("prioritylevelconfigurations").GroupResource(): true,
    	}
    
    	config := DefaultAPIResourceConfigSource()
    	for gvr, enable := range config.ResourceConfigs {
    		if !strings.Contains(gvr.Version, "beta") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top