Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for FlowSchemas (0.5 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#metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // `items` is a list of FlowSchemas.
      repeated FlowSchema items = 2;
    }
    
    // FlowSchemaSpec describes how the FlowSchema's specification looks like.
    message FlowSchemaSpec {
    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#metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // `items` is a list of FlowSchemas.
      repeated FlowSchema items = 2;
    }
    
    // FlowSchemaSpec describes how the FlowSchema's specification looks like.
    message FlowSchemaSpec {
    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. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// +optional
    	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// `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 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. pkg/controlplane/instance.go

    	// for more details.
    	legacyBetaEnabledByDefaultResources = []schema.GroupVersionResource{
    		flowcontrolv1beta3.SchemeGroupVersion.WithResource("flowschemas"),                 // deprecate in 1.29, remove in 1.32
    		flowcontrolv1beta3.SchemeGroupVersion.WithResource("prioritylevelconfigurations"), // deprecate in 1.29, remove in 1.32
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. pkg/controlplane/instance_test.go

    	// are no more beta resources enabled by default.
    	legacyBetaResourcesWithoutStableEquivalents := map[schema.GroupResource]bool{
    		flowcontrolv1bet3.SchemeGroupVersion.WithResource("flowschemas").GroupResource():                 true,
    		flowcontrolv1bet3.SchemeGroupVersion.WithResource("prioritylevelconfigurations").GroupResource(): true,
    	}
    
    	config := DefaultAPIResourceConfigSource()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

                "type": "string"
              },
              "items": {
                "description": "`items` is a list of FlowSchemas.",
                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1beta3.FlowSchema"
                    }
                  ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

                "type": "string"
              },
              "items": {
                "description": "`items` is a list of FlowSchemas.",
                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.flowcontrol.v1.FlowSchema"
                    }
                  ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "string"
            },
            "items": {
              "description": "`items` is a list of FlowSchemas.",
              "items": {
                "$ref": "#/definitions/io.k8s.api.flowcontrol.v1beta2.FlowSchema"
              },
              "type": "array"
            },
            "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  9. api/openapi-spec/swagger.json

              "type": "string"
            },
            "items": {
              "description": "`items` is a list of FlowSchemas.",
              "items": {
                "$ref": "#/definitions/io.k8s.api.flowcontrol.v1.FlowSchema"
              },
              "type": "array"
            },
            "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.26.md

      - rename 'assuredConcurrencyShares' (located under `spec.limited') to 'nominalConcurrencyShares'.
      - apply strategic merge patch annotations to 'Conditions' of flowschemas and `prioritylevelconfigurations`. ([#112306](https://github.com/kubernetes/kubernetes/pull/112306), [@tkashem](https://github.com/tkashem))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
Back to top