Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for FlowSchemaCondition (0.2 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1beta3/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: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta1/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: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta2/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: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    		ftr.wellFormed = false
    		dangleStatus = flowcontrol.ConditionTrue
    	}
    	fs.Status.Conditions = []flowcontrol.FlowSchemaCondition{{
    		Type:   flowcontrol.FlowSchemaConditionDangling,
    		Status: dangleStatus}}
    	fs.Spec.MatchingPrecedence = rng.Int31n(9997) + 2
    	if rng.Float32() < 0.8 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/validation/validation.go

    	return ValidateFlowSchemaStatus(&fs.Status, field.NewPath("status"))
    }
    
    // ValidateFlowSchemaCondition validates condition in the flow-schema's status.
    func ValidateFlowSchemaCondition(condition *flowcontrol.FlowSchemaCondition, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    	if len(condition.Type) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("type"), "must not be empty"))
    	}
    	return allErrs
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
Back to top