- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 89 for SessionId (0.06 seconds)
-
src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo_details.jsp
href="${fe:url('/admin/searchlist/search')}?q=segment:${f:u(sessionId)}" </c:if> >${f:h(sessionId)}</a> <la:hidden property="sessionId"/></td> </tr> <c:forEach var="info" items="${crawlingInfoParamItems}">Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 10.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/SearchBody.java
* Extends BaseSearchBody with crawling information-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The crawling session ID to search for. */ public String sessionId; /** * Default constructor for SearchBody. */ public SearchBody() { super(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
assertNull(options.sessionId); assertNull(options.name); assertNull(options.propertiesPath); } // Test Options class with null values @Test public void test_Options_nullValues() { SuggestCreator.Options options = new SuggestCreator.Options(); options.sessionId = null; options.propertiesPath = null;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/chat/ChatForm.java
* The user's message/question. */ @Size(max = 4000) public String message; /** * The session ID for conversation continuity. */ @Size(max = 100) public String sessionId; /** * Flag to clear the conversation history. */ public boolean clearHistory;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 1.2K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.crawling_info/crawling_info.json
{ "properties": { "sessionId": { "type": "keyword" }, "name": { "type": "keyword" }, "expiredTime": { "type": "long" }, "createdTime": { "type": "long" } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 246 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
+ ".webConfigIds([\"%s\"] as String[])" + ".jobExecutor(executor).execute();", webCofigId, webCofigId); } protected static String buildFileConfigJobScript(final String fileConfigId) { return String.format("return container.getComponent(\"crawlJob\")" + ".logLevel(\"info\")" + ".sessionId(\"%s\")"
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
public void test_execute_withCustomSessionId() { thumbnailJob.sessionId = "custom-session-456"; thumbnailJob.cleanup(); testProcessHelper.exitValue = 0; String result = thumbnailJob.execute(); assertTrue(result.contains("Session Id: custom-session-456")); assertEquals("custom-session-456", thumbnailJob.sessionId); } // Test execute with process failure @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
String result = pythonJob.execute(); assertNotNull(result); assertTrue(result.contains("Session Id:")); assertNotNull(pythonJob.sessionId); assertTrue(pythonJob.sessionId.length() >= 10); // The test doesn't actually call the real process since ServletContext.getRealPath returns null in test // and causes an exception which is caught and added to resultCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 22.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/chat/ChatAction.java
*/ @Execute public HtmlResponse clear(final ChatForm form) { if (form.sessionId != null) { if (logger.isDebugEnabled()) { logger.debug("Clearing chat session. sessionId={}", form.sessionId); } chatSessionManager.clearSession(form.sessionId, getUserId()); } return redirect(getClass()); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Mar 10 14:54:51 GMT 2026 - 4.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/service/CrawlingInfoServiceTest.java
assertNull(pager.id); assertNull(pager.sessionId); assertEquals(1, pager.getCurrentPageNumber()); } @Test public void test_crawlingInfoPager_setSessionId() { final CrawlingInfoPager pager = new CrawlingInfoPager(); pager.sessionId = "test-session-123"; assertEquals("test-session-123", pager.sessionId); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 6.1K bytes - Click Count (0)