Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for lendablePercent (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    		flowcontrol.PriorityLevelConfigurationSpec{
    			Type: flowcontrol.PriorityLevelEnablementExempt,
    			Exempt: &flowcontrol.ExemptPriorityLevelConfiguration{
    				NominalConcurrencyShares: ptr.To(int32(0)),
    				LendablePercent:          ptr.To(int32(0)),
    			},
    		},
    	)
    	MandatoryPriorityLevelConfigurationCatchAll = newPriorityLevelConfiguration(
    		flowcontrol.PriorityLevelConfigurationNameCatchAll,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	// as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
    	//
    	// LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
    	//
    	// +optional
    	LendablePercent *int32 `json:"lendablePercent,omitempty" protobuf:"varint,3,opt,name=lendablePercent"`
    
    	// `borrowingLimitPercent`, if present, configures a limit on how many
    	// seats this priority level can borrow from other priority levels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/validation/validation.go

    		}
    	}
    	allErrs = append(allErrs, ValidateLimitResponse(lplc.LimitResponse, fldPath.Child("limitResponse"))...)
    
    	if lplc.LendablePercent != nil && !(*lplc.LendablePercent >= 0 && *lplc.LendablePercent <= 100) {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("lendablePercent"), *lplc.LendablePercent, "must be between 0 and 100, inclusive"))
    	}
    	if lplc.BorrowingLimitPercent != nil && *lplc.BorrowingLimitPercent < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/types_swagger_doc_generated.go

    	"lendablePercent":          "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels.  This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    	"lendablePercent":          "`lendablePercent` prescribes the fraction of the level's NominalCL that can be borrowed by other priority levels.  This value of this field must be between 0 and 100, inclusive, and it defaults to 0. The number of seats that other levels can borrow...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
    	//
    	// LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
    	//
    	// +optional
    	LendablePercent *int32 `json:"lendablePercent,omitempty" protobuf:"varint,3,opt,name=lendablePercent"`
    
    	// `borrowingLimitPercent`, if present, configures a limit on how many
    	// seats this priority level can borrow from other priority levels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	// as this level's LendableConcurrencyLimit (LendableCL), is defined as follows.
    	//
    	// LendableCL(i) = round( NominalCL(i) * lendablePercent(i)/100.0 )
    	//
    	// +optional
    	LendablePercent *int32 `json:"lendablePercent,omitempty" protobuf:"varint,3,opt,name=lendablePercent"`
    
    	// `borrowingLimitPercent`, if present, configures a limit on how many
    	// seats this priority level can borrow from other priority levels.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.NominalConcurrencyShares != nil {
    		in, out := &in.NominalConcurrencyShares, &out.NominalConcurrencyShares
    		*out = new(int32)
    		**out = **in
    	}
    	if in.LendablePercent != nil {
    		in, out := &in.LendablePercent, &out.LendablePercent
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExemptPriorityLevelConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1beta3/zz_generated.deepcopy.go

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

    	*out = *in
    	if in.NominalConcurrencyShares != nil {
    		in, out := &in.NominalConcurrencyShares, &out.NominalConcurrencyShares
    		*out = new(int32)
    		**out = **in
    	}
    	if in.LendablePercent != nil {
    		in, out := &in.LendablePercent, &out.LendablePercent
    		*out = new(int32)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExemptPriorityLevelConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top