Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 150 for priorityLevelConfiguration (0.27 sec)

  1. pkg/apis/flowcontrol/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PriorityLevelConfiguration.
    func (in *PriorityLevelConfiguration) DeepCopy() *PriorityLevelConfiguration {
    	if in == nil {
    		return nil
    	}
    	out := new(PriorityLevelConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta2/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PriorityLevelConfiguration.
    func (in *PriorityLevelConfiguration) DeepCopy() *PriorityLevelConfiguration {
    	if in == nil {
    		return nil
    	}
    	out := new(PriorityLevelConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			pl := obj.(*flowcontrol.PriorityLevelConfiguration)
    			klog.V(7).Infof("Triggered API priority and fairness config reloading in %s due to creation of PLC %s", cfgCtlr.name, pl.Name)
    			cfgCtlr.configQueue.Add(0)
    		},
    		UpdateFunc: func(oldObj, newObj interface{}) {
    			newPL := newObj.(*flowcontrol.PriorityLevelConfiguration)
    			oldPL := oldObj.(*flowcontrol.PriorityLevelConfiguration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta3/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PriorityLevelConfiguration.
    func (in *PriorityLevelConfiguration) DeepCopy() *PriorityLevelConfiguration {
    	if in == nil {
    		return nil
    	}
    	out := new(PriorityLevelConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta1/zz_generated.deepcopy.go

    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PriorityLevelConfiguration.
    func (in *PriorityLevelConfiguration) DeepCopy() *PriorityLevelConfiguration {
    	if in == nil {
    		return nil
    	}
    	out := new(PriorityLevelConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/borrowing_test.go

    				{lendable: 50, borrowing: 33},
    				{lendable: 67, borrowing: 50},
    			}},
    	} {
    		t.Run(testCase.name, func(t *testing.T) {
    			fsObjs := make([]*flowcontrol.FlowSchema, 2)
    			plcObjs := make([]*flowcontrol.PriorityLevelConfiguration, 2)
    			usernames := make([]string, 2)
    			cfgObjs := []runtime.Object{}
    			for flow := 0; flow < 2; flow++ {
    				usernames[flow] = fmt.Sprintf("test-user%d", flow)
    				plName := fmt.Sprintf("test-pl%d", flow)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/v1beta3/defaults.go

    // PriorityLevelConfiguration object. Since we need to inspect the presence
    // of the roundtrip annotation in order to determine whether the user has
    // specified a zero value for the 'NominalConcurrencyShares' field,
    // the defaulting logic needs visibility to the annotations field.
    func SetDefaults_PriorityLevelConfiguration(in *v1beta3.PriorityLevelConfiguration) {
    	if limited := in.Spec.Limited; limited != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    					[]string{flowcontrol.NonResourceAll}),
    			},
    		},
    	)
    )
    
    func newPriorityLevelConfiguration(name string, spec flowcontrol.PriorityLevelConfigurationSpec) *flowcontrol.PriorityLevelConfiguration {
    	return &flowcontrol.PriorityLevelConfiguration{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    			Annotations: map[string]string{
    				flowcontrol.AutoUpdateAnnotationKey: "true",
    			},
    		},
    		Spec: spec,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

              },
              "priorityLevelConfiguration": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationReference"
                  }
                ],
                "default": {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

              },
              "priorityLevelConfiguration": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationReference"
                  }
                ],
                "default": {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
Back to top