Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for FlowSchemaCondition (0.89 sec)

  1. 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)
  2. 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)
  3. pkg/generated/openapi/zz_generated.openapi.go

    										Default: map[string]interface{}{},
    										Ref:     ref("k8s.io/api/flowcontrol/v1.FlowSchemaCondition"),
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		Dependencies: []string{
    			"k8s.io/api/flowcontrol/v1.FlowSchemaCondition"},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    							Verbs:           all,
    							NonResourceURLs: all,
    						}},
    					}},
    				},
    				Status: flowcontrol.FlowSchemaStatus{
    					Conditions: []flowcontrol.FlowSchemaCondition{{
    						Type:               flowcontrol.FlowSchemaConditionDangling,
    						Status:             "True",
    						LastTransitionTime: metav1.Time{Time: time.Now().Add(-time.Hour)},
    					}},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. api/openapi-spec/swagger.json

              "group": "flowcontrol.apiserver.k8s.io",
              "kind": "FlowSchema",
              "version": "v1"
            }
          ]
        },
        "io.k8s.api.flowcontrol.v1.FlowSchemaCondition": {
          "description": "FlowSchemaCondition describes conditions for a FlowSchema.",
          "properties": {
            "lastTransitionTime": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top