Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for realuser (0.04 sec)

  1. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

            // Should not affect IP limiting
            rateLimiter.recordFailure(null, "192.168.1.8");
            assertTrue(rateLimiter.checkAttempt("realuser", "192.168.1.8"), "Should still track IP");
        }
    
        @Test
        public void testNullIp() throws Exception {
            // Null IP should be handled gracefully
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    		// load polices mapped to users
    		if err := store.loadMappedPolicies(ctx, regUser, false, newCache.iamUserPolicyMap); err != nil {
    			return err
    		}
    
    		bootstrapTraceMsgFirstTime("loading group policy mapping")
    		// load policies mapped to groups
    		if err := store.loadMappedPolicies(ctx, regUser, true, newCache.iamGroupPolicyMap); err != nil {
    			return err
    		}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 86.7K bytes
    - Viewed (0)
  3. cmd/iam-object-store.go

    		regUsersLoadStartTime := UTCNow()
    		regUsersList := listedConfigItems[usersListKey]
    
    		for {
    			if len(regUsersList) < count {
    				users, err := iamOS.loadUserConcurrent(ctx, regUser, regUsersList...)
    				if err != nil {
    					return err
    				}
    				for index := range regUsersList {
    					if users[index].Credentials.AccessKey != "" {
    						userName := path.Dir(regUsersList[index])
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  4. cmd/iam.go

    	updatedAt, addedOrRemoved, effectivePolicies, err = sys.store.PolicyDBUpdate(ctx, userOrGroup, isGroup,
    		regUser, r.Policies, isAttach)
    	if err != nil {
    		return
    	}
    
    	// Notify all other MinIO peers to reload policy
    	if !sys.HasWatcher() {
    		for _, nerr := range globalNotificationSys.LoadPolicyMapping(ctx, userOrGroup, regUser, isGroup) {
    			if nerr.Err != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 75.3K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    		Groups:   true,
    	})
    	if err != nil {
    		return err
    	}
    	for policy := range info.PolicyStats {
    		c.healPolicies(ctx, objAPI, policy, info)
    	}
    	for user := range info.UserStats {
    		c.healUsers(ctx, objAPI, user, info)
    	}
    	for group := range info.GroupStats {
    		c.healGroups(ctx, objAPI, group, info)
    	}
    	for user := range info.UserStats {
    		c.healUserPolicies(ctx, objAPI, user, info)
    	}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 184.7K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    		}
    	} else {
    		_, err := globalIAMSys.GetGroupDescription(entityName)
    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    	}
    
    	userType := regUser
    	if globalIAMSys.GetUsersSysType() == LDAPUsersSysType {
    		userType = stsUser
    
    		// Validate that the user or group exists in LDAP and use the normalized
    		// form of the entityName (which will be an LDAP DN).
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 90.6K bytes
    - Viewed (0)
Back to top