Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for lendablePercent (0.17 sec)

  1. staging/src/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 = 2;
    }
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    message FlowDistinguisherMethod {
      // `type` is the type of flow distinguisher method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/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 = 2;
    }
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    message FlowDistinguisherMethod {
      // `type` is the type of flow distinguisher method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. staging/src/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 = 2;
    }
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    message FlowDistinguisherMethod {
      // `type` is the type of flow distinguisher method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. staging/src/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 = 2;
    }
    
    // FlowDistinguisherMethod specifies the method of a flow distinguisher.
    message FlowDistinguisherMethod {
      // `type` is the type of flow distinguisher method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top