Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 126 for flowschema (0.37 sec)

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

    func (in *FlowSchema) APILifecycleDeprecated() (major, minor int) {
    	return 1, 26
    }
    
    // APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type.
    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *FlowSchema) APILifecycleReplacement() schema.GroupVersionKind {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 03 18:04:51 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/util/helpers.go

    	"sort"
    
    	"k8s.io/kubernetes/pkg/apis/flowcontrol"
    )
    
    var _ sort.Interface = FlowSchemaSequence{}
    
    // FlowSchemaSequence holds sorted set of pointers to FlowSchema objects.
    // FlowSchemaSequence implements `sort.Interface`
    type FlowSchemaSequence []*flowcontrol.FlowSchema
    
    func (s FlowSchemaSequence) Len() int {
    	return len(s)
    }
    
    func (s FlowSchemaSequence) Less(i, j int) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 29 04:26:12 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/v1beta3/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta3.FlowSchema)(nil), (*flowcontrol.FlowSchema)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta3_FlowSchema_To_flowcontrol_FlowSchema(a.(*v1beta3.FlowSchema), b.(*flowcontrol.FlowSchema), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*flowcontrol.FlowSchema)(nil), (*v1beta3.FlowSchema)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 53.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// `items` is a list of FlowSchemas.
    	Items []FlowSchema `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // FlowSchemaSpec describes how the FlowSchema's specification looks like.
    type FlowSchemaSpec struct {
    	// `priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot
    	// be resolved, the FlowSchema will be ignored and marked as invalid in its status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta3/zz_generated.prerelease-lifecycle.go

    func (in *FlowSchema) APILifecycleDeprecated() (major, minor int) {
    	return 1, 29
    }
    
    // APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type.
    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *FlowSchema) APILifecycleReplacement() schema.GroupVersionKind {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    // +k8s:prerelease-lifecycle-gen:replacement=flowcontrol.apiserver.k8s.io,v1,FlowSchema
    
    // FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with
    // similar attributes and is identified by a pair of strings: the name of the FlowSchema and a "flow distinguisher".
    type FlowSchema struct {
    	metav1.TypeMeta `json:",inline"`
    	// `metadata` is the standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.FlowSchema)(nil), (*flowcontrol.FlowSchema)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_FlowSchema_To_flowcontrol_FlowSchema(a.(*v1.FlowSchema), b.(*flowcontrol.FlowSchema), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*flowcontrol.FlowSchema)(nil), (*v1.FlowSchema)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/rule.go

    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/endpoints/request"
    )
    
    // Tests whether a given request and FlowSchema match.  Nobody mutates
    // either input.
    func matchesFlowSchema(digest RequestDigest, flowSchema *flowcontrol.FlowSchema) bool {
    	for _, policyRule := range flowSchema.Spec.Rules {
    		if matchesPolicyRule(digest, &policyRule) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

              "type"
            ],
            "type": "object"
          },
          "io.k8s.api.flowcontrol.v1beta3.FlowSchema": {
            "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".",
            "properties": {
              "apiVersion": {
    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

              "type"
            ],
            "type": "object"
          },
          "io.k8s.api.flowcontrol.v1.FlowSchema": {
            "description": "FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a \"flow distinguisher\".",
            "properties": {
              "apiVersion": {
    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