- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 645 for usar (1.6 sec)
-
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
// Helper method to create test user private User createTestUser(String username, String password) { User user = new User(); user.setName(username); user.setPassword(password); user.setRoles(new String[] { "role1", "role2" }); user.setGroups(new String[] { "group1", "group2" }); return user; } // Test LdapManager implementation
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java
assertEquals("******@****.***", permissionHelper.encode("{user}user@domain.com")); assertEquals("2group/subgroup", permissionHelper.encode("{group}group/subgroup")); assertEquals("RAdministrators", permissionHelper.encode("{role}Administrators")); assertEquals("D1user with spaces", permissionHelper.encode("(deny){user}user with spaces"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt
if (pooled3 != null) return pooled3.connection connection.withLock { connectionPool.put(connection) user.acquireConnectionNoEvents(connection) } user.connectionAcquired(connection) user.connectionConnectionAcquired(connection) return connection } override fun trackFailure( call: RealCall, e: IOException?, ) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java
*/ ActionResponse getResponse(SsoResponseType responseType); /** * Performs logout for the specified user. * @param user The user to logout. * @return The logout URL or null if not applicable. */ String logout(FessUserBean user);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
} /** * Saves the login history for the given user. * This operation is performed asynchronously. * * @param user the user entity * @param userBean the user bean * @param option the login specified option */ @Override protected void saveLoginHistory(final FessUser user, final FessUserBean userBean, final LoginSpecifiedOption option) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
} /** * Adds user attributes to the LDAP entry for user creation. * * @param entry the BasicAttributes to add user attributes to * @param user the user object containing attribute values */ protected void addUserAttributes(final BasicAttributes entry, final User user) { entry.put(new BasicAttribute("cn", user.getName()));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
public void test_evaluate_withComplexObject() { String template = "User: ${user.name}, Age: ${user.age}"; Map<String, Object> paramMap = new HashMap<>(); TestUser user = new TestUser("John", 30); paramMap.put("user", user); Object result = scriptEngine.evaluate(template, paramMap); assertEquals("User: John, Age: 30", result); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java
return user.getRoleNames(); } public String[] getGroups() { return user.getGroupNames(); } public boolean isEditable() { return user.isEditable(); } public boolean hasRole(final String role) { return stream(user.getRoleNames()).get(stream -> stream.anyMatch(s -> s.equals(role))); } public boolean hasRoles(final String[] acceptedRoles) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* When enabled, user search queries are logged for analysis. */ @Size(max = 10) public String searchLog; /** * Enable or disable user information tracking. * When enabled, user information is stored and tracked. */ @Size(max = 10) public String userInfo; /** * Enable or disable user favorite functionality.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java
} /** * The unique identifier of the user being edited. * This is a required field for identifying which user to update. */ @Required @Size(max = 1000) public String id; /** * The version number of the user for optimistic locking. * This field is required to prevent concurrent modification conflicts * by ensuring the user hasn't been modified by another process. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)