Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for deleted_users (0.07 sec)

  1. src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java

            ldapChain.delete(user);
    
            assertEquals(user, testLdapManager.deletedUser);
            assertTrue(testLdapManager.deleteCalled);
        }
    
        public void test_delete_withNullUser() {
            // Test delete with null user
            ldapChain.delete(null);
    
            assertNull(testLdapManager.deletedUser);
            assertTrue(testLdapManager.deleteCalled);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. cmd/iam.go

    		// If user is set to "disabled", we will remove them
    		// subsequently.
    		if !u.Enabled {
    			expiredUsers = append(expiredUsers, parentUser)
    		}
    	}
    
    	// We ignore any errors
    	_ = sys.store.DeleteUsers(ctx, expiredUsers)
    }
    
    // purgeExpiredCredentialsForLDAP - validates if local credentials are still
    // valid by checking LDAP server if the relevant users are still present.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 75.3K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    	}
    
    	if revoked {
    		cache.updatedAt = time.Now()
    	}
    
    	return nil
    }
    
    // DeleteUsers - given a set of users or access keys, deletes them along with
    // any derived credentials (STS or service accounts) and any associated policy
    // mappings.
    func (store *IAMStoreSys) DeleteUsers(ctx context.Context, users []string) error {
    	cache := store.lock()
    	defer store.unlock()
    
    	var deleted bool
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 86.7K bytes
    - Viewed (0)
Back to top