Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 124 for keyA (0.06 sec)

  1. staging/src/k8s.io/api/authentication/v1/types.go

    	// extra map[string][]string for user.Info.  The key will be every after the prefix.
    	// It can be repeated multiplied times for multiple map keys and the same key can be repeated multiple
    	// times to have multiple elements in the slice under a single key
    	ImpersonateUserExtraHeaderPrefix = "Impersonate-Extra-"
    )
    
    // +genclient
    // +genclient:nonNamespaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pkg/spiffe/spiffe_test.go

    	keyBlock, _ := pem.Decode([]byte(validWorkloadKey))
    	if keyBlock == nil {
    		t.Fatalf("failed to parse PEM block containing the workload private key")
    	}
    
    	privateKey, err := x509.ParsePKCS1PrivateKey(keyBlock.Bytes)
    	if err != nil {
    		t.Fatalf("failed to parse workload private key: %v", privateKey)
    	}
    
    	server.TLS = &tls.Config{
    		Certificates: []tls.Certificate{
    			{
    				Certificate: serverCert,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. src/encoding/json/encode.go

    // Map values encode as JSON objects. The map's key type must either be a
    // string, an integer type, or implement [encoding.TextMarshaler]. The map keys
    // are sorted and used as JSON object keys by applying the following rules,
    // subject to the UTF-8 coercion described for string values above:
    //   - keys of any string type are used directly
    //   - [encoding.TextMarshalers] are marshaled
    //   - integer keys are converted to strings
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	// fails you may set the desired value here.
    	LocalAPIEndpoint APIEndpoint
    
    	// CertificateKey sets the key with which certificates and keys are encrypted prior to being uploaded in
    	// a secret in the cluster during the uploadcerts init phase.
    	// The certificate key is a hex encoded string that is an AES key of size 32 bytes.
    	CertificateKey string
    
    	// SkipPhases is a list of phases to skip during command execution.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. cmd/handler-utils.go

    			} else {
    				m[supportedHeader] = strings.Join(value, ",")
    			}
    		}
    	}
    
    	for key := range v {
    		for _, prefix := range userMetadataKeyPrefixes {
    			if !stringsHasPrefixFold(key, prefix) {
    				continue
    			}
    			value, ok := nv[http.CanonicalHeaderKey(key)]
    			if ok {
    				m[key] = strings.Join(value, ",")
    				break
    			}
    		}
    	}
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1/types.go

    	// usages specifies a set of key usages requested in the issued certificate.
    	//
    	// Requests for TLS client certificates typically request: "digital signature", "key encipherment", "client auth".
    	//
    	// Requests for TLS serving certificates typically request: "key encipherment", "digital signature", "server auth".
    	//
    	// Valid values are:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/pod.go

    	return res
    }
    
    // getPodByKey returns the pod by key
    func (pc *PodCache) getPodByKey(key types.NamespacedName) *v1.Pod {
    	return pc.pods.Get(key.Name, key.Namespace)
    }
    
    // getPodByKey returns the pod of the proxy
    func (pc *PodCache) getPodByProxy(proxy *model.Proxy) *v1.Pod {
    	var pod *v1.Pod
    	key := podKeyByProxy(proxy)
    	if key.Name != "" {
    		pod = pc.getPodByKey(key)
    		if pod != nil {
    			return pod
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

            for (K item : keys) {
                destination.put(item, keyGenerator.transform(item));
            }
        }
    
        /**
         * Given a set of keys, derive a set of values and return a map
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. internal/kms/config.go

    	EnvKESAPIKey         = "MINIO_KMS_KES_API_KEY"      // Access credential for KES - API keys and private key / certificate are mutually exclusive
    	EnvKESClientKey      = "MINIO_KMS_KES_KEY_FILE"     // Path to TLS private key for authenticating to KES with mTLS - usually prefer API keys
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

            if (number == 0) {
                return;
            }
    
            // See the distributions' respective `compiler.java` files to see the keys used for localization.
            // We are using the following keys:
            //  - count.error and count.error.plural
            //  - count.warn and count.warn.plural
            StringBuilder keyBuilder = new StringBuilder("count.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top