- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 253 for sessionId (0.06 sec)
-
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) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/PreauthIntegrityServiceTest.java
@Test @DisplayName("Test session finalization") public void testSessionFinalization() throws CIFSException { String sessionId = "test-session-4"; byte[] salt = preauthService.generatePreauthSalt(); preauthService.initializeSession(sessionId, salt, PreauthIntegrityService.HASH_ALGO_SHA512); assertNotNull(preauthService.getCurrentPreauthHash(sessionId));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
/** * Get the current version of a session key * * @param sessionId the session ID * @return the key version, or 0 if not versioned */ public int getKeyVersion(String sessionId) { return keyVersions.getOrDefault(sessionId, 0); } /** * Get key age in milliseconds * * @param sessionId the session ID * @return age in milliseconds, or -1 if unknown
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
crawler2.getCrawlerContext().setNumOfThread(numOfThread); final String sessionId1 = crawler1.execute(); final String sessionId2 = crawler2.execute(); assertNotSame(sessionId1, sessionId2); assertNotSame(crawler1.crawlerContext, crawler2.crawlerContext); // Wait for both crawlers to start with polling
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 19.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
} /** * Checks if the process with the given session ID is currently running. * * @param sessionId unique identifier for the process session * @return true if the process is running, false otherwise */ public boolean isProcessRunning(final String sessionId) { final JobProcess jobProcess = runningProcessMap.get(sessionId); return jobProcess != null && jobProcess.getProcess().isAlive();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.8K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
* * @param sessionId The session ID. */ @Override public void delete(final String sessionId) { deleteBySessionId(sessionId); } /** * Offers multiple URL queue entries for the specified session. * Only URLs that don't already exist will be added. * * @param sessionId The session ID.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
/** * Test multiple initializations with same session ID */ public void test_multipleInit_sameSessionId() { String sessionId = "test-session-017"; // First initialization urlFilter.init(sessionId); urlFilter.addInclude("https://first.com/.*"); // Second initialization with same session ID urlFilter.init(sessionId);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
* * @param sessionId the session ID to retrieve parameters for * @return a map containing all key-value parameter pairs for the session */ public Map<String, String> getInfoMap(final String sessionId) { final List<CrawlingInfoParam> crawlingInfoParamList = getCrawlingInfoService().getLastCrawlingInfoParamList(sessionId);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsCrawlingInfoCQ.java
TermQueryBuilder builder = regTermQ("sessionId", sessionId); if (opLambda != null) { opLambda.callback(builder); } } public void setSessionId_NotEqual(String sessionId) { setSessionId_NotTerm(sessionId, null); } public void setSessionId_NotTerm(String sessionId) { setSessionId_NotTerm(sessionId, null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 34.6K bytes - Viewed (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); } public void test_process_withPropertiesPath() throws Exception { // Test that properties path is properly handled
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0)