Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for FlowSchemaCondition (0.27 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional FlowSchemaStatus status = 3;
    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    message FlowSchemaCondition {
      // `type` is the type of the condition.
      // Required.
      optional string type = 1;
    
      // `status` is the status of the condition.
      // Can be True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional FlowSchemaStatus status = 3;
    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    message FlowSchemaCondition {
      // `type` is the type of the condition.
      // Required.
      optional string type = 1;
    
      // `status` is the status of the condition.
      // Can be True, False, Unknown.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/types.go

    	// +listType=map
    	// +listMapKey=type
    	// +patchMergeKey=type
    	// +patchStrategy=merge
    	// +optional
    	Conditions []FlowSchemaCondition
    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    type FlowSchemaCondition struct {
    	// `type` is the type of the condition.
    	// Required.
    	Type FlowSchemaConditionType
    	// `status` is the status of the condition.
    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/apiserver/pkg/util/flowcontrol/apf_controller.go

    }
    
    // A buffered set of status updates for FlowSchemas
    type fsStatusUpdate struct {
    	flowSchema *flowcontrol.FlowSchema
    	condition  flowcontrol.FlowSchemaCondition
    	oldValue   flowcontrol.FlowSchemaCondition
    }
    
    // digestConfigObjects is given all the API objects that configure
    // cfgCtlr and writes its consequent new configState.
    // Only invoke this in the one and only worker goroutine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/format/formatting.go

    		*flowcontrol.PolicyRulesWithSubjects,
    		flowcontrol.PolicyRulesWithSubjects,
    		flowcontrol.Subject,
    		flowcontrol.ResourcePolicyRule,
    		flowcontrol.NonResourcePolicyRule,
    		flowcontrol.FlowSchemaCondition,
    		*flowcontrol.PriorityLevelConfiguration,
    		flowcontrol.PriorityLevelConfiguration,
    		flowcontrol.PriorityLevelConfigurationSpec,
    		*flowcontrol.LimitedPriorityLevelConfiguration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	// `conditions` is a list of the current states of FlowSchema.
    	// +listType=map
    	// +listMapKey=type
    	// +optional
    	Conditions []FlowSchemaCondition `json:"conditions,omitempty" protobuf:"bytes,1,rep,name=conditions"`
    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    type FlowSchemaCondition struct {
    	// `type` is the type of the condition.
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	// `conditions` is a list of the current states of FlowSchema.
    	// +listType=map
    	// +listMapKey=type
    	// +optional
    	Conditions []FlowSchemaCondition `json:"conditions,omitempty" protobuf:"bytes,1,rep,name=conditions"`
    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    type FlowSchemaCondition struct {
    	// `type` is the type of the condition.
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	// +listMapKey=type
    	// +patchMergeKey=type
    	// +patchStrategy=merge
    	// +optional
    	Conditions []FlowSchemaCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"`
    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    type FlowSchemaCondition struct {
    	// `type` is the type of the condition.
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// +listMapKey=type
    	// +patchMergeKey=type
    	// +patchStrategy=merge
    	// +optional
    	Conditions []FlowSchemaCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"`
    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    type FlowSchemaCondition struct {
    	// `type` is the type of the condition.
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1/types_swagger_doc_generated.go

    }
    
    func (FlowSchema) SwaggerDoc() map[string]string {
    	return map_FlowSchema
    }
    
    var map_FlowSchemaCondition = map[string]string{
    	"":                   "FlowSchemaCondition describes conditions for a FlowSchema.",
    	"type":               "`type` is the type of the condition. Required.",
    	"status":             "`status` is the status of the condition. Can be True, False, Unknown. Required.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 21.7K bytes
    - Viewed (0)
Back to top