Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 154 for prioritylevelconfiguration (0.41 sec)

  1. 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)
  2. staging/src/k8s.io/api/flowcontrol/v1/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: Mon Oct 30 12:18:41 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/apihelpers/helpers.go

    			return &flowSchema.Status.Conditions[i]
    		}
    	}
    	return nil
    }
    
    // SetPriorityLevelConfigurationCondition sets conditions.
    func SetPriorityLevelConfigurationCondition(priorityLevel *flowcontrol.PriorityLevelConfiguration, newCondition flowcontrol.PriorityLevelConfigurationCondition) {
    	existingCondition := GetPriorityLevelConfigurationConditionByType(priorityLevel, newCondition.Type)
    	if existingCondition == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. api/discovery/aggregated_v2.json

                },
                {
                  "resource": "prioritylevelconfigurations",
                  "responseKind": {
                    "group": "",
                    "kind": "PriorityLevelConfiguration",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "prioritylevelconfiguration",
                  "subresources": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top