Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for keyA (0.21 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. 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)
  5. 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),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	//
    	// Examples:
    	// podAntiAffinityLabelSelector:
    	//   - key: security
    	//     operator: In
    	//     values: S1,S2
    	//     topologyKey: "kubernetes.io/hostname"
    	//     This pod anti-affinity rule says that the pod requires not to be scheduled
    	//     onto a node if that node is already running a pod with label having key
    	//     “security” and value “S1”.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-65518`](https://youtrack.jetbrains.com/issue/KT-65518) Memory leak in buildMap and in Wasm/Js/Native (Linked)HashMap
    - [`KT-65525`](https://youtrack.jetbrains.com/issue/KT-65525) JS: Wrong return value of HashMap.keys.remove
    - [`KT-63397`](https://youtrack.jetbrains.com/issue/KT-63397) kotlin-test should declare runtime dependency on "org.junit.platform:junit-platform-launcher"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top