- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 141 for SessionId (0.06 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoDbm.java
0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnSessionId = cci("sessionId", "sessionId", null, null, String.class, "sessionId", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); public ColumnInfo columnCreatedTime() { return _columnCreatedTime;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
crawler.getCrawlerContext().setNumOfThread(numOfThread); crawler.urlFilter.addInclude(url + ".*"); final String sessionId = crawler.execute(); assertEquals(maxCount, dataService.getCount(sessionId)); dataService.delete(sessionId); } finally { server.stop(); } } public void test_execute_2instanceTx() throws Exception {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 7.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
} public void test_sessionCountId() { final String sessionId = "12345"; final String sessionCountId = sessionId + "-1"; assertNull(crawlingConfigHelper.get(sessionCountId)); crawlingConfigHelper.store(sessionId, crawlingConfigHelper.getCrawlingConfig("W1")); assertEquals("1", crawlingConfigHelper.get(sessionCountId).getId());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 34.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
*/ public String getSessionId() { return sessionId; } /** * Sets the session ID associated with this crawling session. * * @param sessionId the session ID to set */ public void setSessionId(final String sessionId) { this.sessionId = sessionId; } /** * Gets the execution time for processing this response.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockTest.java
@DisplayName("Test setSessionId method") void testSetSessionId() { // Given long sessionId = 987654321L; doNothing().when(messageBlock).setSessionId(sessionId); // When messageBlock.setSessionId(sessionId); // Then verify(messageBlock).setSessionId(sessionId); } @Test @DisplayName("Test setSessionId with boundary values")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
public void test_crawl_withNullParameters() { try { webFsIndexHelper.crawl("sessionId", null, null); assertTrue(true); } catch (Exception e) { assertTrue(true); } } public void test_crawl_withEmptyLists() { try { webFsIndexHelper.crawl("sessionId", Collections.emptyList(), Collections.emptyList()); assertTrue(true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
if (Constants.FALSE.equals(initParamMap.getAsString(DELETE_OLD_DOCS))) { return; } final String sessionId = initParamMap.getAsString(Constants.SESSION_ID); if (StringUtil.isBlank(sessionId)) { logger.warn("Invalid sessionId at {}", dataConfig); return; } final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
if (sessionId == null) { // create session id sessionId = RandomStringUtils.randomAlphabetic(15); } resultBuf.append("Session Id: ").append(sessionId).append("\n"); if (jobExecutor != null) { jobExecutor.addShutdownListener(() -> ComponentUtil.getProcessHelper().destroyProcess(sessionId)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java
ThumbnailGenerator.Options options = new ThumbnailGenerator.Options(); options.sessionId = "test-session"; options.name = "test-name"; options.propertiesPath = "/path/to/props"; options.numOfThreads = 5; String expected = "Options [sessionId=test-session, name=test-name, propertiesPath=/path/to/props, numOfThreads=5]"; assertEquals(expected, options.toString());
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/job/GenerateThumbnailJob.java
if (sessionId == null) { // create session id sessionId = RandomStringUtils.randomAlphabetic(15); } resultBuf.append("Session Id: ").append(sessionId).append("\n"); if (jobExecutor != null) { jobExecutor.addShutdownListener(() -> ComponentUtil.getProcessHelper().destroyProcess(sessionId)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0)