Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for userInfo (0.15 sec)

  1. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    var xxx_messageInfo_TokenReviewStatus proto.InternalMessageInfo
    
    func (m *UserInfo) Reset()      { *m = UserInfo{} }
    func (*UserInfo) ProtoMessage() {}
    func (*UserInfo) Descriptor() ([]byte, []int) {
    	return fileDescriptor_d1237cbf54dccd53, []int{10}
    }
    func (m *UserInfo) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *UserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    func (store *IAMStoreSys) GetUsers() map[string]madmin.UserInfo {
    	cache := store.rlock()
    	defer store.runlock()
    
    	result := map[string]madmin.UserInfo{}
    	for k, u := range cache.iamUsersMap {
    		v := u.Credentials
    
    		if v.IsTemp() || v.IsServiceAccount() {
    			continue
    		}
    		pl, _ := cache.iamUserPolicyMap.Load(k)
    		result[k] = madmin.UserInfo{
    			PolicyName: pl.Policies,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. cmd/iam.go

    	if !sys.Initialized() {
    		return nil, errServerNotInitialized
    	}
    
    	select {
    	case <-sys.configLoaded:
    		return sys.store.GetBucketUsers(bucket)
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    }
    
    // ListUsers - list all users.
    func (sys *IAMSys) ListUsers(ctx context.Context) (map[string]madmin.UserInfo, error) {
    	if !sys.Initialized() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    		`Verb:` + fmt.Sprintf("%v", this.Verb) + `,`,
    		`User:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.User), "UserInfo", "v1.UserInfo", 1), `&`, ``, 1) + `,`,
    		`ImpersonatedUser:` + strings.Replace(fmt.Sprintf("%v", this.ImpersonatedUser), "UserInfo", "v1.UserInfo", 1) + `,`,
    		`SourceIPs:` + fmt.Sprintf("%v", this.SourceIPs) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                            }
    
                            if (!favoriteLogService.addUrl(userCode, (userInfo, favoriteLog) -> {
                                favoriteLog.setUserInfoId(userInfo.getId());
                                favoriteLog.setUrl(favoriteUrl);
                                favoriteLog.setDocId(docId);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. src/net/url/url_test.go

    		},
    		"",
    	},
    	// leading // without scheme should create an authority
    	{
    		"//foo",
    		&URL{
    			Host: "foo",
    		},
    		"",
    	},
    	// leading // without scheme, with userinfo, path, and query
    	{
    		"//user@foo/path?a=b",
    		&URL{
    			User:     User("user"),
    			Host:     "foo",
    			Path:     "/path",
    			RawQuery: "a=b",
    		},
    		"",
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

     * to register the SMB protocol handler.
     * <p>
     * The userinfo component of the SMB URL (<tt>domain;user:pass</tt>) must
     * be URL encoded if it contains reserved characters. According to RFC 2396
     * these characters are non US-ASCII characters and most meta characters
     * however jCIFS will work correctly with anything but '@' which is used
     * to delimit the userinfo component from the server and '%' which is the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  8. cmd/admin-handlers-users.go

    	}) {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAccessDenied), r.URL)
    		return
    	}
    
    	userInfo, err := globalIAMSys.GetUserInfo(ctx, name)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	data, err := json.Marshal(userInfo)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. cmd/sts-handlers_test.go

    	if err != nil {
    		c.Fatalf("policy add error: %v", err)
    	}
    
    	cr := c.mustCreateIAMUser(ctx, userAdmClient)
    
    	userInfo := c.mustGetIAMUserInfo(ctx, userAdmClient, cr.AccessKey)
    	c.Assert(userInfo.Status, madmin.AccountEnabled)
    }
    
    func (s *TestSuiteIAM) TestOpenIDServiceAcc(c *check) {
    	ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	// "https", "socks5", and "socks5h" are supported. If the scheme is empty,
    	// "http" is assumed.
    	// "socks5" is treated the same as "socks5h".
    	//
    	// If the proxy URL contains a userinfo subcomponent,
    	// the proxy request will pass the username and password
    	// in a Proxy-Authorization header.
    	//
    	// If Proxy is nil or returns a nil *URL, no proxy is used.
    	Proxy func(*Request) (*url.URL, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top