Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 126 for flowschema (0.23 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *FlowSchema) APILifecycleIntroduced() (major, minor int) {
    	return 1, 29
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    	if err != nil {
    		panic(err)
    	}
    	return plc
    }
    
    // A FlowSchema together with characteristics relevant to testing
    type fsTestingRecord struct {
    	fs *flowcontrol.FlowSchema
    	// Does this reference an existing priority level?
    	wellFormed                    bool
    	matchesAllResourceRequests    bool
    	matchesAllNonResourceRequests bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta3/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_52ab6629c083d251, []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
    - 141.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/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_5d08a1401821035d, []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
    - 141.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta1/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_3a5cb22a034fcb2a, []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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top