- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 219 for Rgroup1 (0.05 sec)
-
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
assertNotNull(groupNames); assertEquals(2, groupNames.length); assertEquals("group1", groupNames[0]); assertEquals("group2", groupNames[1]); } public void test_getGroupNames_empty() { // Test when no groups match the prefix ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
// Execute authenticator.parseJwtClaim(jwtClaim, attributes); // Verify assertEquals("1234567890", attributes.get("sub")); assertEquals("John Doe", attributes.get("name")); // Check groups array final String[] groups = DocumentUtil.getValue(attributes, "groups", String[].class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/exentity/Group.java
package org.codelibs.fess.opensearch.user.exentity; import java.util.HashMap; import java.util.Map; import org.codelibs.fess.opensearch.user.bsentity.BsGroup; /** * @author FreeGen */ public class Group extends BsGroup { private static final long serialVersionUID = 1L; private Map<String, String> attributes; public Long getVersionNo() { return asDocMeta().version(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
// Test with empty groups groups = new String[] {}; user = new TestFessUser("testuser", new String[] {}, groups, new String[] {}); assertArrayEquals(groups, user.getGroupNames()); // Test with null groups user = new TestFessUser("testuser", new String[] {}, null, new String[] {}); assertNull(user.getGroupNames()); // Test with groups containing spaces
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
}); } /** * Deletes a group from both LDAP and the database, and removes the group * association from all users that belong to this group. * * @param group the group entity to delete */ public void delete(final Group group) { ComponentUtil.getLdapManager().delete(group); groupBhv.delete(group, op -> { op.setRefreshPolicy(Constants.TRUE);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/RelationshipTester.java
groups.add(ImmutableList.copyOf(group)); return this; } public void test() { for (int groupNumber = 0; groupNumber < groups.size(); groupNumber++) { ImmutableList<T> group = groups.get(groupNumber); for (int itemNumber = 0; itemNumber < group.size(); itemNumber++) { // check related items in same group
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
// Test with multiple groups testUser.setGroupNames(new String[] { "developers", "testers", "managers" }); groups = fessUserBean.getGroups(); assertEquals(3, groups.length); assertEquals("developers", groups[0]); assertEquals("testers", groups[1]); assertEquals("managers", groups[2]); } public void test_isEditable() { // Test with non-editable user (default)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/RelationshipTester.java
groups.add(ImmutableList.copyOf(group)); return this; } public void test() { for (int groupNumber = 0; groupNumber < groups.size(); groupNumber++) { ImmutableList<T> group = groups.get(groupNumber); for (int itemNumber = 0; itemNumber < group.size(); itemNumber++) { // check related items in same group
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/SidResolver.java
* target server where keys are SIDs representing an account and each value * is an ArrayList of SIDs represents the local groups that the account is * a member of. * * This method is designed to assist with computing access control for a * given user when the target object's ACL has local groups. Local groups
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/EqualsTester.java
* groups and the items within equality groups are numbered starting from 1. When either a * constructor argument or an equal object is provided, that becomes group 1. * </ul> * * @author Jim McMaster * @author Jige Yu * @since 10.0 */ @GwtCompatible @NullMarked public final class EqualsTester { private static final int REPETITIONS = 3;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 6.1K bytes - Viewed (0)