Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 92 for extrakey (0.19 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/certificates.k8s.io.v1.CertificateSigningRequest.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      expirationSeconds: 8
      extra:
        extraKey:
        - extraValue
      groups:
      - groupsValue
      request: AQ==
      signerName: signerNameValue
      uid: uidValue
      usages:
      - usagesValue
      username: usernameValue
    status:
      certificate: Ag==
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/admission.k8s.io.v1.AdmissionReview.json

        "operation": "operationValue",
        "userInfo": {
          "username": "usernameValue",
          "uid": "uidValue",
          "groups": [
            "groupsValue"
          ],
          "extra": {
            "extraKey": [
              "extraValue"
            ]
          }
        },
        "object": {
          "apiVersion": "example.com/v1",
          "kind": "CustomType",
          "spec": {
            "replicas": 1
          },
          "status": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1beta1.AdmissionReview.json

        "operation": "operationValue",
        "userInfo": {
          "username": "usernameValue",
          "uid": "uidValue",
          "groups": [
            "groupsValue"
          ],
          "extra": {
            "extraKey": [
              "extraValue"
            ]
          }
        },
        "object": {
          "apiVersion": "example.com/v1",
          "kind": "CustomType",
          "spec": {
            "replicas": 1
          },
          "status": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/admission.k8s.io.v1beta1.AdmissionReview.json

        "operation": "operationValue",
        "userInfo": {
          "username": "usernameValue",
          "uid": "uidValue",
          "groups": [
            "groupsValue"
          ],
          "extra": {
            "extraKey": [
              "extraValue"
            ]
          }
        },
        "object": {
          "apiVersion": "example.com/v1",
          "kind": "CustomType",
          "spec": {
            "replicas": 1
          },
          "status": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/admission.k8s.io.v1beta1.AdmissionReview.yaml

      resource:
        group: groupValue
        resource: resourceValue
        version: versionValue
      subResource: subResourceValue
      uid: uidValue
      userInfo:
        extra:
          extraKey:
          - extraValue
        groups:
        - groupsValue
        uid: uidValue
        username: usernameValue
    response:
      allowed: true
      auditAnnotations:
        auditAnnotationsKey: auditAnnotationsValue
      patch: BA==
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview_test.go

    	userInfo := &user.DefaultInfo{
    		Name:   "myuser",
    		Groups: []string{"mygroup"},
    		UID:    "myuid",
    		Extra:  map[string][]string{"extrakey": {"value1", "value2"}},
    	}
    	attrs := admission.NewAttributesRecord(
    		internalObj.DeepCopyObject(),
    		internalObjOld.DeepCopyObject(),
    		schema.GroupVersionKind{Group: "apps", Version: "v1", Kind: "Deployment"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    			}
    			for _, group := range tc.impersonationGroups {
    				req.Header.Add(authenticationapi.ImpersonateGroupHeader, group)
    			}
    			for extraKey, values := range tc.impersonationUserExtras {
    				for _, value := range values {
    					req.Header.Add(authenticationapi.ImpersonateUserExtraHeaderPrefix+extraKey, value)
    				}
    			}
    			if len(tc.impersonationUid) > 0 {
    				req.Header.Add(authenticationapi.ImpersonateUIDHeader, tc.impersonationUid)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  8. internal/crypto/key_test.go

    	}
    }
    
    var generateKeyTests = []struct {
    	ExtKey     [32]byte
    	Random     io.Reader
    	ShouldPass bool
    }{
    	{ExtKey: [32]byte{}, Random: nil, ShouldPass: true},              // 0
    	{ExtKey: [32]byte{}, Random: rand.Reader, ShouldPass: true},      // 1
    	{ExtKey: [32]byte{}, Random: shortRandom(32), ShouldPass: true},  // 2
    	{ExtKey: [32]byte{}, Random: shortRandom(31), ShouldPass: false}, // 3
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 02 00:13:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. internal/crypto/key.go

    // domain (SSE-C or SSE-S3).
    func (key ObjectKey) Seal(extKey []byte, iv [32]byte, domain, bucket, object string) SealedKey {
    	if len(extKey) != 32 {
    		logger.CriticalIf(context.Background(), errors.New("crypto: invalid key length"))
    	}
    	var (
    		sealingKey   [32]byte
    		encryptedKey bytes.Buffer
    	)
    	mac := hmac.New(sha256.New, extKey)
    	mac.Write(iv[:])
    	mac.Write([]byte(domain))
    	mac.Write([]byte(SealAlgorithm))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 20:28:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

            ReferenceEntry<K, V> first = table.get(index);
    
            for (e = first; e != null; e = e.getNext()) {
              K entryKey = e.getKey();
              if (e.getHash() == hash
                  && entryKey != null
                  && map.keyEquivalence.equivalent(key, entryKey)) {
                valueReference = e.getValueReference();
                if (valueReference.isLoading()) {
                  createNewEntry = false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top