Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 86 for LimitResponse (0.25 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    	"limitResponse":            "`limitResponse` indicates what to do with requests that can not be executed right now",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // This field has a default value of 30.
      // +optional
      optional int32 nominalConcurrencyShares = 1;
    
      // `limitResponse` indicates what to do with requests that can not be executed right now
      optional LimitResponse limitResponse = 2;
    
      // `lendablePercent` prescribes the fraction of the level's NominalCL that
      // can be borrowed by other priority levels. The value of this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/types.go

    	// "jail" for this priority level that is used to hold some request(s)
    	//
    	// +optional
    	NominalConcurrencyShares int32
    
    	// `limitResponse` indicates what to do with requests that can not be executed right now
    	LimitResponse LimitResponse
    
    	// `lendablePercent` prescribes the fraction of the level's NominalCL that
    	// can be borrowed by other priority levels. The value of this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta1/types_swagger_doc_generated.go

    	"limitResponse":            "`limitResponse` indicates what to do with requests that can not be executed right now",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta2/types_swagger_doc_generated.go

    	"limitResponse":            "`limitResponse` indicates what to do with requests that can not be executed right now",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	}
    	qcQS := fq.QueuingConfig{Name: pl.Name}
    	if pl.Spec.Limited != nil {
    		if (pl.Spec.Limited.LimitResponse.Type == flowcontrol.LimitResponseTypeReject) != (pl.Spec.Limited.LimitResponse.Queuing == nil) {
    			return nil, errors.New("broken union structure for limit response")
    		}
    		qcAPI := pl.Spec.Limited.LimitResponse.Queuing
    		if qcAPI != nil {
    			qcQS = fq.QueuingConfig{Name: pl.Name,
    				DesiredNumQueues: int(qcAPI.Queues),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    			Type: flowcontrol.PriorityLevelEnablementLimited,
    			Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
    				NominalConcurrencyShares: ptr.To(int32(10)),
    				LimitResponse: flowcontrol.LimitResponse{
    					Type: flowcontrol.LimitResponseTypeReject,
    				},
    			},
    		},
    	}
    
    	clientset := clientsetfake.NewSimpleClientset(fs, pl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			Type: flowcontrol.PriorityLevelEnablementLimited,
    			Limited: &flowcontrol.LimitedPriorityLevelConfiguration{
    				NominalConcurrencyShares: ptr.To(concurrency),
    				LimitResponse: flowcontrol.LimitResponse{
    					Type:    responseType,
    					Queuing: qcfg,
    				},
    			},
    		},
    	}
    
    	return []runtime.Object{fs, pl}
    }
    
    // gathers and checks the metrics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "limitResponse": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.LimitResponse"
                  }
                ],
                "default": {},
                "description": "`limitResponse` indicates what to do with requests that can not be executed right now"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "limitResponse": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1.LimitResponse"
                  }
                ],
                "default": {},
                "description": "`limitResponse` indicates what to do with requests that can not be executed right now"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
Back to top