Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 468 for limiter (1.08 sec)

  1. pkg/registry/flowcontrol/ensurer/prioritylevelconfiguration_test.go

    	return b
    }
    
    // must be called after WithLimited
    func (b *plBuilder) WithQueuing(queues, handSize, queueLengthLimit int32) *plBuilder {
    	limited := b.object.Spec.Limited
    	if limited == nil {
    		return b
    	}
    
    	limited.LimitResponse.Type = flowcontrolv1.LimitResponseTypeQueue
    	limited.LimitResponse.Queuing = &flowcontrolv1.QueuingConfiguration{
    		Queues:           queues,
    		HandSize:         handSize,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    // a resource was not limited by default.
    func limitedByDefault(usage corev1.ResourceList, limitedResources []resourcequotaapi.LimitedResource) []corev1.ResourceName {
    	result := []corev1.ResourceName{}
    	for _, limitedResource := range limitedResources {
    		for k, v := range usage {
    			// if a resource is consumed, we need to check if it matches on the limited resource list.
    			if v.Sign() == 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. LICENSE

          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
          and conversions to other media types.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. 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{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  5. cmd/bucket-listobjects-handlers.go

    // Special conditions required by MinIO server are as below
    //   - delimiter if set should be equal to '/', otherwise the request is rejected.
    //   - marker if set should have a common prefix with 'prefix' param, otherwise
    //     the request is rejected.
    func validateListObjectsArgs(prefix, marker, delimiter, encodingType string, maxKeys int) APIErrorCode {
    	// Max keys cannot be negative.
    	if maxKeys < 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // The server's concurrency limit (ServerCL) is divided among the
      // Limited priority levels in proportion to their NCS values:
      //
      // NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs )
      // sum_ncs = sum[limited priority level k] NCS(k)
      //
      // Bigger numbers mean a larger nominal concurrency limit,
      // at the expense of every other Limited priority level.
      // This field has a default value of 30.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/types.go

    	Type PriorityLevelEnablement
    
    	// `limited` specifies how requests are handled for a Limited priority level.
    	// This field must be non-empty if and only if `type` is `"Limited"`.
    	// +optional
    	Limited *LimitedPriorityLevelConfiguration
    
    	// `exempt` specifies how requests are handled for an exempt priority level.
    	// This field MUST be empty if `type` is `"Limited"`.
    	// This field MAY be non-empty if `type` is `"Exempt"`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  8. LICENSES/vendor/sigs.k8s.io/yaml/LICENSE

    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	Type PriorityLevelEnablement `json:"type" protobuf:"bytes,1,opt,name=type"`
    
    	// `limited` specifies how requests are handled for a Limited priority level.
    	// This field must be non-empty if and only if `type` is `"Limited"`.
    	// +optional
    	Limited *LimitedPriorityLevelConfiguration `json:"limited,omitempty" protobuf:"bytes,2,opt,name=limited"`
    
    	// `exempt` specifies how requests are handled for an exempt priority level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	Type PriorityLevelEnablement `json:"type" protobuf:"bytes,1,opt,name=type"`
    
    	// `limited` specifies how requests are handled for a Limited priority level.
    	// This field must be non-empty if and only if `type` is `"Limited"`.
    	// +optional
    	Limited *LimitedPriorityLevelConfiguration `json:"limited,omitempty" protobuf:"bytes,2,opt,name=limited"`
    
    	// `exempt` specifies how requests are handled for an exempt priority level.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top