Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 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.11.md

    you must keep the following in mind:
    
    * **JSON configuration files that contain fields with incorrect case will no longer be valid. You must correct these files before upgrading.** When specifying keys in JSON resource definitions during direct API server communication, the keys are case-sensitive. A bug introduced in Kubernetes 1.8 caused the API server to accept a request with incorrect case and coerce it to correct case, but this behaviour has been fixed in 1.11 and the API server...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.14.md

        * If you are running E2E tests which require SSH keys and you utilize environment variables to override their location, you may need to modify the environment variable set. On all providers the environment variable override can now be either an absolute path to the key or a relative path (relative to ~/.ssh). Specifically the changes are:
        *  - Created new GCE_SSH_KEY allowing specification of SSH keys for gce, gke, and kubemark.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  10. 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)
Back to top