- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 388 for user1 (0.02 seconds)
-
src/test/java/org/codelibs/fess/app/service/UserServiceTest.java
final User user = new User(); user.setOriginalPassword("secretpassword"); assertEquals("secretpassword", user.getOriginalPassword()); user.clearOriginalPassword(); assertNull(user.getOriginalPassword()); } @Test public void test_user_getId() { final User user = new User(); assertNull(user.getId()); user.setId("user-123");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 12.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
final String jwtClaim = "{\"user\":{\"id\":123,\"roles\":[\"admin\",\"user\"],\"permissions\":{\"read\":true,\"write\":false}}}"; final Map<String, Object> attributes = new HashMap<>(); authenticator.parseJwtClaim(jwtClaim, attributes); assertTrue(attributes.containsKey("user")); @SuppressWarnings("unchecked") final Map<String, Object> user = (Map<String, Object>) attributes.get("user");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 11K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/user/admin_user.jsp
<div class="wrapper"> <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include> <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> <jsp:param name="menuCategoryType" value="user"/> <jsp:param name="menuType" value="user"/> </jsp:include> <main class="content-wrapper"> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2">
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 4.6K bytes - Click Count (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);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.2K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
/** The role identifier for user messages. */ public static final String ROLE_USER = "user"; /** The role identifier for assistant messages. */ public static final String ROLE_ASSISTANT = "assistant"; /** The unique identifier for this message. */ private String id; /** The role of the message sender (user or assistant). */ private String role;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0) -
.mailmap
Ryan <******@****.***> <******@****.***> Rodrigo B. de Oliveira <******@****.***> <******@****.***> Sebastian Schuberth <******@****.***> <sschuberth@users.noreply.github.com> Stefan Oehme <******@****.***> <******@****.***> Sterling Greene <******@****.***> <big-guy@users.noreply.github.com> Sterling Greene <******@****.***> <******@****.***> Szczepan Faber <******@****.***>
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Oct 03 06:34:28 GMT 2017 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/auth/AuthenticationManager.java
} /** * Deletes a user from all authentication chains. * @param user The user to delete. */ public void delete(final User user) { chains().of(stream -> stream.forEach(c -> c.delete(user))); } /** * Loads user information by processing through all authentication chains. * @param user The user template containing search criteria.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.1K bytes - Click Count (0) -
src/packaging/rpm/init.d/fess
export SEARCH_ENGINE_HTTP_URL export FESS_JAVA_OPTS export JAVA_HOME lockfile=/var/lock/subsys/$prog # backwards compatibility for old config sysconfig files, pre 0.90.1 if [ -n $USER ] && [ -z $FESS_USER ] ; then FESS_USER=$USER fi checkJava() { if [ -x "$JAVA_HOME/bin/java" ]; then JAVA="$JAVA_HOME/bin/java" else JAVA=`which java` fi if [ ! -x "$JAVA" ]; thenCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 15 06:32:15 GMT 2023 - 3.7K bytes - Click Count (0) -
src/main/resources/fess_config.properties
# Interval for system monitor in thumbnail processing. thumbnail.system.monitor.interval=60 # user # User code settings user.code.request.parameter=userCode # User code minimum length. user.code.min.length=20 # User code maximum length. user.code.max.length=100 # User code pattern for validation. user.code.pattern=[a-zA-Z0-9_]+ # ----------------------------------------------------------
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/UserAgentHelper.java
} /** The HTTP header name for User-Agent */ protected static final String USER_AGENT = "user-agent"; /** The request attribute key for storing cached user agent type */ protected static final String USER_AGENT_TYPE = "ViewHelper.UserAgent"; /** * Determines the user agent type from the current HTTP request. * The method analyzes the User-Agent header to categorize the browser typeCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.5K bytes - Click Count (0)