Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for keyA (0.07 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    					XListType:    strPtr("map"),
    					XListMapKeys: []string{"keyA", "keyB"},
    					Items: &apiextensions.JSONSchemaPropsOrArray{
    						Schema: &apiextensions.JSONSchemaProps{
    							Type: "object",
    							Properties: map[string]apiextensions.JSONSchemaProps{
    								"keyA": {
    									Type: "string",
    								},
    								"keyB": {
    									Type: "integer",
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    // the triple <key,value,effect> using the matching operator <operator>.
    type Toleration struct {
    	// Key is the taint key that the toleration applies to. Empty means match all taint keys.
    	// If the key is empty, operator must be Exists; this combination means to match all values and all keys.
    	// +optional
    	Key string `json:"key,omitempty" protobuf:"bytes,1,opt,name=key"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    		if v == cc {
    			return
    		}
    	}
    	if p.conns == nil {
    		p.conns = make(map[string][]*http2ClientConn)
    	}
    	if p.keys == nil {
    		p.keys = make(map[*http2ClientConn][]string)
    	}
    	p.conns[key] = append(p.conns[key], cc)
    	p.keys[cc] = append(p.keys[cc], key)
    }
    
    func (p *http2clientConnPool) MarkDead(cc *http2ClientConn) {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

            "properties": {
              "key": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    			},
    		},
    	}
    }
    
    func schema_pkg_apis_meta_v1_GetOptions(ref common.ReferenceCallback) common.OpenAPIDefinition {
    	return common.OpenAPIDefinition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.9.md

    ### **Scheduling**
    
    *   Taint key `unreachable` is now in GA.
    *   Taint key `notReady` is changed to `not-ready`, and is also now in GA.
    *   These changes are automatically updated for taints. Tolerations for these taints must be updated manually. Specifically, you must:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	totalSize := 0
    
    	for key, value := range cfg.Data {
    		for _, msg := range validation.IsConfigMapKey(key) {
    			allErrs = append(allErrs, field.Invalid(field.NewPath("data").Key(key), key, msg))
    		}
    		// check if we have a duplicate key in the other bag
    		if _, isValue := cfg.BinaryData[key]; isValue {
    			msg := "duplicate of key present in binaryData"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.7.md

    * kubectl create secret has a new option --from-env-file that populates a secret from file which follows a key=val format for each line.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    show/hide actions based on the end user, and for users to quickly reason about their own permissions.
    
    * [alpha] Building on the 1.7 work to allow encryption of resources such as secrets, a mechanism to store resource encryption keys in external Key Management Systems (KMS) was introduced. This complements the original file-based storage and allows integration with multiple KMS. A Google Cloud KMS plugin was added and will be usable once the Google side of the integration is complete....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.13.md

    - kube-controller-manager
      - The deprecated `--insecure-experimental-approve-all-kubelet-csrs-for-group` flag has been removed.
    - kubelet
      - The deprecated `--google-json-key` flag has been removed. Remove the `--google-json-key` flag from kubelet invocations before upgrading. ([#69354](https://github.com/kubernetes/kubernetes/pull/69354), [@yujuhong](https://github.com/yujuhong))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
Back to top