Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 78 for lendablePercent (0.4 sec)

  1. pkg/apis/flowcontrol/types.go

    	// as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
    	//
    	// LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
    	//
    	// +optional
    	LendablePercent *int32
    
    	// `borrowingLimitPercent`, if present, configures a limit on how many
    	// seats this priority level can borrow from other priority levels.
    	// The limit is known as this level's BorrowingConcurrencyLimit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter_test.go

    		Spec: flowcontrol.PriorityLevelConfigurationSpec{
    			Type: flowcontrol.PriorityLevelEnablementLimited,
    			Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
    				NominalConcurrencyShares: ptr.To(int32(100)),
    				LendablePercent:          &lendable,
    				BorrowingLimitPercent:    &borrowingLimit,
    				LimitResponse: flowcontrol.LimitResponse{
    					Type: flowcontrol.LimitResponseTypeQueue,
    					Queuing: &flowcontrol.QueuingConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.pb.go

    }
    
    func (m *ExemptPriorityLevelConfiguration) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.LendablePercent != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.LendablePercent))
    		i--
    		dAtA[i] = 0x10
    	}
    	if m.NominalConcurrencyShares != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.NominalConcurrencyShares))
    		i--
    		dAtA[i] = 0x8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
      //
      // LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
      //
      // +optional
      optional int32 lendablePercent = 3;
    
      // `borrowingLimitPercent`, if present, configures a limit on how many
      // seats this priority level can borrow from other priority levels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
      //
      // LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
      //
      // +optional
      optional int32 lendablePercent = 3;
    
      // `borrowingLimitPercent`, if present, configures a limit on how many
      // seats this priority level can borrow from other priority levels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
      //
      // LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
      //
      // +optional
      optional int32 lendablePercent = 3;
    
      // `borrowingLimitPercent`, if present, configures a limit on how many
      // seats this priority level can borrow from other priority levels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    		var lendableCL, borrowingCL int
    		if lendablePercent != nil {
    			lendableCL = int(math.Round(float64(concurrencyLimit) * float64(*lendablePercent) / 100))
    		}
    		if borrowingLimitPercent != nil {
    			borrowingCL = int(math.Round(float64(concurrencyLimit) * float64(*borrowingLimitPercent) / 100))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.pb.go

    }
    
    func (m *ExemptPriorityLevelConfiguration) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.LendablePercent != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.LendablePercent))
    		i--
    		dAtA[i] = 0x10
    	}
    	if m.NominalConcurrencyShares != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.NominalConcurrencyShares))
    		i--
    		dAtA[i] = 0x8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
      //
      // LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
      //
      // +optional
      optional int32 lendablePercent = 3;
    
      // `borrowingLimitPercent`, if present, configures a limit on how many
      // seats this priority level can borrow from other priority levels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/borrowing_test.go

    						Type: flowcontrol.PriorityLevelEnablementLimited,
    						Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
    							NominalConcurrencyShares: ptr.To(int32(100)),
    							LendablePercent:          &testCase.constraints[flow].lendable,
    							BorrowingLimitPercent:    &testCase.constraints[flow].borrowing,
    							LimitResponse: flowcontrol.LimitResponse{
    								Type: flowcontrol.LimitResponseTypeQueue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top