Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 278 for userinfo (0.13 sec)

  1. pkg/registry/authentication/tokenreview/storage.go

    		klog.Errorf("error validating audience. want=%q got=%q", auds, resp.Audiences)
    		return nil, badAuthenticatorAuds
    	}
    
    	if resp != nil && resp.User != nil {
    		tokenReview.Status.User = authentication.UserInfo{
    			Username: resp.User.GetName(),
    			UID:      resp.User.GetUID(),
    			Groups:   resp.User.GetGroups(),
    			Extra:    map[string]authentication.ExtraValue{},
    		}
    		for k, v := range resp.User.GetExtra() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                            <la:errors property="userInfo"/>
                                            <div class="form-check">
                                                <la:checkbox styleId="userInfo" styleClass="form-check-input" property="userInfo"/>
                                                <label for="userInfo" class="form-check-label">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 16 12:54:35 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  3. plugin/pkg/admission/gc/gc_admission.go

    		if !apiequality.Semantic.DeepEqual(oldOwners[i], newOwners[i]) {
    			return true
    		}
    	}
    
    	return false
    }
    
    func finalizeAnythingRecord(userInfo user.Info) authorizer.AttributesRecord {
    	return authorizer.AttributesRecord{
    		User:            userInfo,
    		Verb:            "update",
    		APIGroup:        "*",
    		APIVersion:      "*",
    		Resource:        "*",
    		Subresource:     "finalizers",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    		field("group", apiservercel.StringType, true),
    		field("version", apiservercel.StringType, true),
    		field("resource", apiservercel.StringType, true),
    	))
    	userInfoType := apiservercel.NewObjectType("kubernetes.UserInfo", fields(
    		field("username", apiservercel.StringType, false),
    		field("uid", apiservercel.StringType, false),
    		field("groups", apiservercel.NewListType(apiservercel.StringType, -1), false),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admission/v1/generated.pb.go

    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`Namespace:` + fmt.Sprintf("%v", this.Namespace) + `,`,
    		`Operation:` + fmt.Sprintf("%v", this.Operation) + `,`,
    		`UserInfo:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.UserInfo), "UserInfo", "v11.UserInfo", 1), `&`, ``, 1) + `,`,
    		`Object:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Object), "RawExtension", "runtime.RawExtension", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46K bytes
    - Viewed (0)
  6. security/pkg/server/ca/authenticate/kubeauth/kube_jwt_test.go

    					Token: tc.token,
    				},
    			}
    
    			tokenReview.Status.Audiences = []string{}
    			if tc.token != invlidToken {
    				tokenReview.Status.Authenticated = true
    			}
    			tokenReview.Status.User = k8sauth.UserInfo{
    				Username: "system:serviceaccount:default:example-pod-sa",
    				Groups:   []string{"system:serviceaccounts"},
    			}
    
    			client := fake.NewSimpleClientset()
    			if !tc.remoteCluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile.go

    		result := make(map[string]*apiservercel.DeclField, len(fields))
    		for _, f := range fields {
    			result[f.Name] = f
    		}
    		return result
    	}
    
    	return apiservercel.NewObjectType("kubernetes.UserInfo", fields(
    		field("username", apiservercel.StringType, false),
    		field("uid", apiservercel.StringType, false),
    		field("groups", apiservercel.NewListType(apiservercel.StringType, -1), false),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/net/http/clone.go

    // See go.dev/issue/67401.
    //
    //go:linkname cloneURL
    func cloneURL(u *url.URL) *url.URL {
    	if u == nil {
    		return nil
    	}
    	u2 := new(url.URL)
    	*u2 = *u
    	if u.User != nil {
    		u2.User = new(url.Userinfo)
    		*u2.User = *u.User
    	}
    	return u2
    }
    
    // cloneMultipartForm should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    	)
    	for dID, ss := range us {
    		if lastUpdate.IsZero() {
    			lastUpdate = ss.userInfo.UserInfo.UpdatedAt
    			latestID = dID
    			latestUserStat = ss
    		}
    		if !ss.userInfo.UserInfo.UpdatedAt.IsZero() && ss.userInfo.UserInfo.UpdatedAt.After(lastUpdate) {
    			lastUpdate = ss.userInfo.UserInfo.UpdatedAt
    			latestID = dID
    			latestUserStat = ss
    		}
    	}
    	if latestID != globalDeploymentID() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.authentication.v1.UserInfo": {
            "description": "UserInfo holds the information about the user needed to implement the user.Info interface.",
            "properties": {
              "extra": {
                "additionalProperties": {
                  "items": {
                    "default": "",
                    "type": "string"
                  },
                  "type": "array"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
Back to top