Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for LimitedPriorityLevelConfiguration (0.47 sec)

  1. pkg/apis/flowcontrol/v1beta3/defaults_test.go

    			original: &flowcontrolv1beta3.PriorityLevelConfiguration{
    				Spec: flowcontrolv1beta3.PriorityLevelConfigurationSpec{
    					Type: flowcontrolv1beta3.PriorityLevelEnablementLimited,
    					Limited: &flowcontrolv1beta3.LimitedPriorityLevelConfiguration{
    						NominalConcurrencyShares: 5,
    						LimitResponse: flowcontrolv1beta3.LimitResponse{
    							Type: flowcontrolv1beta3.LimitResponseTypeReject,
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/v1/defaults_test.go

    			original: &flowcontrolv1.PriorityLevelConfiguration{
    				Spec: flowcontrolv1.PriorityLevelConfigurationSpec{
    					Type: flowcontrolv1.PriorityLevelEnablementLimited,
    					Limited: &flowcontrolv1.LimitedPriorityLevelConfiguration{
    						NominalConcurrencyShares: ptr.To(int32(5)),
    						LimitResponse: flowcontrolv1.LimitResponse{
    							Type: flowcontrolv1.LimitResponseTypeReject,
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/v1beta3/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta3.LimitedPriorityLevelConfiguration)(nil), (*flowcontrol.LimitedPriorityLevelConfiguration)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta3_LimitedPriorityLevelConfiguration_To_flowcontrol_LimitedPriorityLevelConfiguration(a.(*v1beta3.LimitedPriorityLevelConfiguration), b.(*flowcontrol.LimitedPriorityLevelConfiguration), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 53.1K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.LimitedPriorityLevelConfiguration)(nil), (*flowcontrol.LimitedPriorityLevelConfiguration)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_LimitedPriorityLevelConfiguration_To_flowcontrol_LimitedPriorityLevelConfiguration(a.(*v1.LimitedPriorityLevelConfiguration), b.(*flowcontrol.LimitedPriorityLevelConfiguration), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/v1beta3/conversion_test.go

    			ObjectMeta: metav1.ObjectMeta{
    				Annotations: annotations,
    			},
    			Spec: v1beta3.PriorityLevelConfigurationSpec{
    				Type: v1beta3.PriorityLevelEnablementLimited,
    				Limited: &v1beta3.LimitedPriorityLevelConfiguration{
    					NominalConcurrencyShares: shares,
    					LimitResponse: v1beta3.LimitResponse{
    						Type: v1beta3.LimitResponseTypeReject,
    					},
    				},
    			},
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/validation/validation_test.go

    	}
    }
    
    func TestPriorityLevelConfigurationValidation(t *testing.T) {
    	badSpec := flowcontrol.PriorityLevelConfigurationSpec{
    		Type: flowcontrol.PriorityLevelEnablementLimited,
    		Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
    			NominalConcurrencyShares: 42,
    			LimitResponse: flowcontrol.LimitResponse{
    				Type: flowcontrol.LimitResponseTypeReject},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    		flowcontrol.PriorityLevelConfigurationNameCatchAll,
    		flowcontrol.PriorityLevelConfigurationSpec{
    			Type: flowcontrol.PriorityLevelEnablementLimited,
    			Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
    				NominalConcurrencyShares: ptr.To(int32(5)),
    				LendablePercent:          ptr.To(int32(0)),
    				LimitResponse: flowcontrol.LimitResponse{
    					Type: flowcontrol.LimitResponseTypeReject,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  8. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy_test.go

    			ObjectMeta: metav1.ObjectMeta{
    				Name: "foo",
    			},
    			Spec: flowcontrolv1.PriorityLevelConfigurationSpec{
    				Type: flowcontrolv1.PriorityLevelEnablementLimited,
    				Limited: &flowcontrolv1.LimitedPriorityLevelConfiguration{
    					NominalConcurrencyShares: v,
    					LimitResponse: flowcontrolv1.LimitResponse{
    						Type: flowcontrolv1.LimitResponseTypeReject},
    				},
    			},
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1/zz_generated.deepcopy.go

    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LimitedPriorityLevelConfiguration.
    func (in *LimitedPriorityLevelConfiguration) DeepCopy() *LimitedPriorityLevelConfiguration {
    	if in == nil {
    		return nil
    	}
    	out := new(LimitedPriorityLevelConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/format/formatting.go

    		flowcontrol.FlowSchemaCondition,
    		*flowcontrol.PriorityLevelConfiguration,
    		flowcontrol.PriorityLevelConfiguration,
    		flowcontrol.PriorityLevelConfigurationSpec,
    		*flowcontrol.LimitedPriorityLevelConfiguration,
    		flowcontrol.LimitedPriorityLevelConfiguration,
    		flowcontrol.LimitResponse,
    		*flowcontrol.QueuingConfiguration,
    		flowcontrol.QueuingConfiguration:
    		return ToJSON(sr.val)
    	case []user.Info:
    		return FmtUsers(typed)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top