Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for keyA (0.12 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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/x-x509-key">
      </mime-type>
      <mime-type type="application/x-x509-key;format=pem">
        <sub-class-of type="application/x-x509-key"/>
        <magic priority="50">
          <match value="-----BEGIN PRIVATE KEY-----" type="string" offset="0"/>
          <match value="-----BEGIN PUBLIC KEY-----" type="string" offset="0"/>
          <match value="-----BEGIN KEY-----" type="string" offset="0"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top