Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for extraValue (0.22 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1/certificatesigningrequestspec.go

    // overwriting an existing map entries in Extra field with the same key.
    func (b *CertificateSigningRequestSpecApplyConfiguration) WithExtra(entries map[string]v1.ExtraValue) *CertificateSigningRequestSpecApplyConfiguration {
    	if b.Extra == nil && len(entries) > 0 {
    		b.Extra = make(map[string]v1.ExtraValue, len(entries))
    	}
    	for k, v := range entries {
    		b.Extra[k] = v
    	}
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:16 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1beta1/certificatesigningrequestspec.go

    func (b *CertificateSigningRequestSpecApplyConfiguration) WithExtra(entries map[string]v1beta1.ExtraValue) *CertificateSigningRequestSpecApplyConfiguration {
    	if b.Extra == nil && len(entries) > 0 {
    		b.Extra = make(map[string]v1beta1.ExtraValue, len(entries))
    	}
    	for k, v := range entries {
    		b.Extra[k] = v
    	}
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:16 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/certificates.k8s.io.v1.CertificateSigningRequest.yaml

        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==
      conditions:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/authentication.k8s.io.v1beta1.SelfSubjectReview.json

      },
      "status": {
        "userInfo": {
          "username": "usernameValue",
          "uid": "uidValue",
          "groups": [
            "groupsValue"
          ],
          "extra": {
            "extraKey": [
              "extraValue"
            ]
          }
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1.TokenReview.yaml

    spec:
      audiences:
      - audiencesValue
      token: tokenValue
    status:
      audiences:
      - audiencesValue
      authenticated: true
      error: errorValue
      user:
        extra:
          extraKey:
          - extraValue
        groups:
        - groupsValue
        uid: uidValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/authentication.k8s.io.v1.TokenReview.yaml

    spec:
      audiences:
      - audiencesValue
      token: tokenValue
    status:
      audiences:
      - audiencesValue
      authenticated: true
      error: errorValue
      user:
        extra:
          extraKey:
          - extraValue
        groups:
        - groupsValue
        uid: uidValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/authentication.k8s.io.v1.TokenReview.json

        "authenticated": true,
        "user": {
          "username": "usernameValue",
          "uid": "uidValue",
          "groups": [
            "groupsValue"
          ],
          "extra": {
            "extraKey": [
              "extraValue"
            ]
          }
        },
        "audiences": [
          "audiencesValue"
        ],
        "error": "errorValue"
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/audit/request.go

    		ev.SourceIPs[i] = ips[i].String()
    	}
    
    	if user := attribs.GetUser(); user != nil {
    		ev.User.Username = user.GetName()
    		ev.User.Extra = map[string]authnv1.ExtraValue{}
    		for k, v := range user.GetExtra() {
    			ev.User.Extra[k] = authnv1.ExtraValue(v)
    		}
    		ev.User.Groups = user.GetGroups()
    		ev.User.UID = user.GetUID()
    	}
    
    	if attribs.IsResourceRequest() {
    		ev.ObjectRef = &auditinternal.ObjectReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authentication/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authentication/v1beta1";
    
    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message ExtraValue {
      // items, if empty, will result in an empty slice
    
      repeated string items = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/request/admissionreview.go

    		Extra:    make(map[string]authenticationv1.ExtraValue),
    		Groups:   aUserInfo.GetGroups(),
    		UID:      aUserInfo.GetUID(),
    		Username: aUserInfo.GetName(),
    	}
    	dryRun := attr.IsDryRun()
    
    	// Convert the extra information in the user object
    	for key, val := range aUserInfo.GetExtra() {
    		userInfo.Extra[key] = authenticationv1.ExtraValue(val)
    	}
    
    	return &admissionv1.AdmissionReview{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top