Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 124 for flowschemas (0.39 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta2/generated.pb.go

    var xxx_messageInfo_FlowDistinguisherMethod proto.InternalMessageInfo
    
    func (m *FlowSchema) Reset()      { *m = FlowSchema{} }
    func (*FlowSchema) ProtoMessage() {}
    func (*FlowSchema) Descriptor() ([]byte, []int) {
    	return fileDescriptor_2e620af2eea53237, []int{2}
    }
    func (m *FlowSchema) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *FlowSchema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 142K bytes
    - Viewed (0)
  2. pkg/generated/openapi/zz_generated.openapi.go

    						SchemaProps: spec.SchemaProps{
    							Description: "`items` is a list of FlowSchemas.",
    							Type:        []string{"array"},
    							Items: &spec.SchemaOrArray{
    								Schema: &spec.Schema{
    									SchemaProps: spec.SchemaProps{
    										Default: map[string]interface{}{},
    										Ref:     ref("k8s.io/api/flowcontrol/v1.FlowSchema"),
    									},
    								},
    							},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		h.handler.ServeHTTP(w, r)
    		return
    	}
    
    	var classification *PriorityAndFairnessClassification
    	noteFn := func(fs *flowcontrol.FlowSchema, pl *flowcontrol.PriorityLevelConfiguration, flowDistinguisher string) {
    		classification = &PriorityAndFairnessClassification{
    			FlowSchemaName:    fs.Name,
    			FlowSchemaUID:     fs.UID,
    			PriorityLevelName: pl.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "group": "flowcontrol.apiserver.k8s.io",
              "kind": "FlowSchema",
              "version": "v1beta1"
            }
          }
        },
        "/apis/flowcontrol.apiserver.k8s.io/v1beta1/flowschemas/{name}": {
          "delete": {
            "consumes": [
              "*/*"
            ],
            "description": "delete a FlowSchema",
            "operationId": "deleteFlowcontrolApiserverV1beta1FlowSchema",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/validation/validation.go

    	// section of a priority level.
    	AllowZeroLimitedNominalConcurrencyShares bool
    }
    
    // ValidateFlowSchema validates the content of flow-schema
    func ValidateFlowSchema(fs *flowcontrol.FlowSchema) field.ErrorList {
    	allErrs := apivalidation.ValidateObjectMeta(&fs.ObjectMeta, false, ValidateFlowSchemaName, field.NewPath("metadata"))
    	specPath := field.NewPath("spec")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.26.md

      - rename 'assuredConcurrencyShares' (located under `spec.limited') to 'nominalConcurrencyShares'.
      - apply strategic merge patch annotations to 'Conditions' of flowschemas and `prioritylevelconfigurations`. ([#112306](https://github.com/kubernetes/kubernetes/pull/112306), [@tkashem](https://github.com/tkashem))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		uss.expectedInqueueReqs = uss.expectedInqueueReqs + fmt.Sprintf(`				apiserver_flowcontrol_current_inqueue_requests{flow_schema=%q,priority_level=%q} 0%s`, fsName, uss.name, "\n")
    		uss.expectedInqueueSeats = uss.expectedInqueueSeats + fmt.Sprintf(`				apiserver_flowcontrol_current_inqueue_seats{flow_schema=%q,priority_level=%q} 0%s`, fsName, uss.name, "\n")
    		for j := 0; j < uc.nThreads; j++ {
    			ust := uniformScenarioThread{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    	})
    }
    
    func checkRules(t *testing.T, expectMatch bool, digest RequestDigest, rules []flowcontrol.PolicyRulesWithSubjects) {
    	for idx, rule := range rules {
    		fs := &flowcontrol.FlowSchema{
    			ObjectMeta: metav1.ObjectMeta{Name: fmt.Sprintf("rule%d", idx)},
    			Spec: flowcontrol.FlowSchemaSpec{
    				Rules: []flowcontrol.PolicyRulesWithSubjects{rule}}}
    		actualMatch := matchesFlowSchema(digest, fs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	utilflowcontrol.WatchTracker
    	utilflowcontrol.MaxSeatsTracker
    }
    
    func (t fakeApfFilter) Handle(ctx context.Context,
    	requestDigest utilflowcontrol.RequestDigest,
    	noteFn func(fs *flowcontrol.FlowSchema, pl *flowcontrol.PriorityLevelConfiguration, flowDistinguisher string),
    	workEstimator func() fcrequest.WorkEstimate,
    	queueNoteFn fq.QueueNoteFn,
    	execFn func(),
    ) {
    	if t.mockDecision == decisionSkipFilter {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    		}
    	}
    }
    
    func TestPrintFlowSchema(t *testing.T) {
    	all := []string{"*"}
    
    	tests := []struct {
    		fs       flowcontrol.FlowSchema
    		expected []metav1.TableRow
    	}{
    		{
    			fs: flowcontrol.FlowSchema{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "all-matcher",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top