- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 56 for SessionId (0.05 seconds)
-
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
try { processHelper.startProcess(sessionId, cmdList, pbCall); Set<String> sessionIds = processHelper.getRunningSessionIdSet(); assertTrue(sessionIds.contains(sessionId)); processHelper.destroyProcess(sessionId); sessionIds = processHelper.getRunningSessionIdSet(); assertFalse(sessionIds.contains(sessionId)); } catch (Exception e) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 16K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
assertNull(pathMappingHelper.getPathMappingList(sessionId + "1")); pathMappingHelper.removePathMappingList(sessionId); assertNull(pathMappingHelper.getPathMappingList(sessionId)); assertNull(pathMappingHelper.getPathMappingList(sessionId + "1")); } @Test public void test_replaceUrl() { final String sessionId = "test";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
// Test with blank name crawlingInfoHelper.updateParams(sessionId, "", -1); // Test with null name crawlingInfoHelper.updateParams(sessionId, null, -1); } @Test public void test_updateParams_noSession() { final String sessionId = "non-existent-session"; ComponentUtil.register(new CrawlingInfoService() { @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 28.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
if (options.sessionId != null) { options.sessionId = options.sessionId.replaceAll("-", "_"); } // Check that sessionId was sanitized (hyphens replaced with underscores) assertEquals("test_session_123", options.sessionId); } @Test public void test_process_withPropertiesPath() throws Exception {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 30.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
if (logger.isDebugEnabled()) { logger.debug("[RAG] Starting chat request. sessionId={}, userId={}, userMessage={}", sessionId, userId, userMessage); } final ChatSession session = chatSessionManager.getOrCreateSession(sessionId, userId); // Extract history snapshot before adding current user message to avoid duplication
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatSessionManager.java
final ChatSession session = sessionCache.get(sessionId); if (session == null) { if (logger.isDebugEnabled()) { logger.debug("Session not found. sessionId={}", sessionId); } return null; } if (isExpired(session)) { sessionCache.remove(sessionId); if (logger.isDebugEnabled()) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 13.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatSession.java
* * @return the session ID */ public String getSessionId() { return sessionId; } /** * Sets the session ID. * * @param sessionId the session ID */ public void setSessionId(final String sessionId) { this.sessionId = sessionId; } /** * Gets the user ID. * * @return the user ID */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 6.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/api/chat/ChatApiManagerTest.java
assertEquals("session-123", response.get("sessionId")); assertNull(response.get("content")); } @Test public void test_createSuccessResponse_emptySessionId() { final Map<String, Object> response = chatApiManager.createSuccessResponse("", "Content", null); assertEquals("ok", response.get("status")); assertEquals("", response.get("sessionId"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 14 01:39:16 GMT 2026 - 35K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
final String message = request.getParameter("message"); final String sessionId = request.getParameter("sessionId"); final String clearParam = request.getParameter("clear"); if (logger.isDebugEnabled()) { logger.debug("Processing chat request. sessionId={}, messageLength={}, clear={}", sessionId, message != null ? message.length() : 0, clearParam); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
*/ protected static class Options { /** * Session ID for filtering thumbnail generation. */ @Option(name = "-s", aliases = "--sessionId", metaVar = "sessionId", usage = "Session ID") protected String sessionId; /** * Name identifier for the thumbnail generation task. */ @Option(name = "-n", aliases = "--name", metaVar = "name", usage = "Name")Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.4K bytes - Click Count (0)