Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for Required (0.2 sec)

  1. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"namespace":        "Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.",
    	"name":             "Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.",
    	"uid":              "UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // This field is required in all cases.
      optional string namespace = 1;
    
      // Name is the metadata.name of the referenced ConfigMap.
      // This field is required in all cases.
      optional string name = 2;
    
      // UID is the metadata.UID of the referenced ConfigMap.
      // This field is forbidden in Node.Spec, and required in Node.Status.
      // +optional
      optional string uid = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

              "name": "name",
              "required": true,
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            },
            {
              "description": "object name and auth scope, such as for teams and projects",
              "in": "path",
              "name": "namespace",
              "required": true,
              "schema": {
                "type": "string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // This field is required in all cases.
      optional string namespace = 1;
    
      // Name is the metadata.name of the referenced ConfigMap.
      // This field is required in all cases.
      optional string name = 2;
    
      // UID is the metadata.UID of the referenced ConfigMap.
      // This field is forbidden in Node.Spec, and required in Node.Status.
      // +optional
      optional string uid = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.8.md

        - [Action Required](#action-required-6)
        - [Other notable changes](#other-notable-changes-18)
    - [v1.8.0-alpha.1](#v180-alpha1)
      - [Downloads for v1.8.0-alpha.1](#downloads-for-v180-alpha1)
        - [Client Binaries](#client-binaries-20)
        - [Server Binaries](#server-binaries-20)
        - [Node Binaries](#node-binaries-20)
      - [Changelog since v1.7.0-alpha.4](#changelog-since-v170-alpha4)
        - [Action Required](#action-required-7)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    		}
    		i--
    		dAtA[i] = 0x1
    		i--
    		dAtA[i] = 0xc2
    	}
    	if len(m.Required) > 0 {
    		for iNdEx := len(m.Required) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Required[iNdEx])
    			copy(dAtA[i:], m.Required[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Required[iNdEx])))
    			i--
    			dAtA[i] = 0x1
    			i--
    			dAtA[i] = 0xba
    		}
    	}
    	if m.MinProperties != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.pb.go

    		}
    		i--
    		dAtA[i] = 0x1
    		i--
    		dAtA[i] = 0xc2
    	}
    	if len(m.Required) > 0 {
    		for iNdEx := len(m.Required) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Required[iNdEx])
    			copy(dAtA[i:], m.Required[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Required[iNdEx])))
    			i--
    			dAtA[i] = 0x1
    			i--
    			dAtA[i] = 0xba
    		}
    	}
    	if m.MinProperties != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 244.4K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    * ✨ Add support for omitting `...` as default value when declaring required parameters with:
    
    * `Path()`
    * `Query()`
    * `Header()`
    * `Cookie()`
    * `Body()`
    * `Form()`
    * `File()`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // No shuffling is required, so copy input directly to output.
          return no_op();
    
        int64_t input_rank = input_type.getRank();
        int64_t first_dim_size = input_type.getDimSize(0);
        if (ShapedType::isDynamic(first_dim_size)) return failure();
    
        if (first_dim_size <= 1)
          // No shuffling is required, so copy input directly to output.
          return no_op();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - Fixes a 1.30.0 regression in openapi descriptions of imagePullSecrets and hostAliases fields to mark the fields used as keys in those lists as either defaulted or required. ([#124694](https://github.com/kubernetes/kubernetes/pull/124694), [@pmalek](https://github.com/pmalek))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top