- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 141 for SessionId (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/DataService.java
* Returns the count of access results for the given session ID. * * @param sessionId the session ID * @return the count of access results */ int getCount(String sessionId); /** * Deletes access results for the given session ID. * * @param sessionId the session ID */ void delete(String sessionId); /** * Deletes all access results. */ void deleteAll();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java
*/ public long getSessionId() { return this.sessionId; } /** * Sets the session ID for this encrypted message * * @param sessionId * the session ID to set */ public void setSessionId(final long sessionId) { this.sessionId = sessionId; } @Override public int size() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
* * @param sessionId the session ID to process * @return the canonical session ID (portion before first hyphen, or original if no hyphen) */ public String getCanonicalSessionId(final String sessionId) { final int idx = sessionId.indexOf('-'); if (idx >= 0) { return sessionId.substring(0, idx); } return 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlQueueService.java
/** * Offers all URL queues. * * @param sessionId The session ID. * @param newUrlQueueList The list of new URL queues. */ void offerAll(String sessionId, List<QUEUE> newUrlQueueList); /** * Polls a URL queue. * * @param sessionId The session ID. * @return The URL queue. */ QUEUE poll(String sessionId); /** * Saves the session. *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingInfo.java
private static final long serialVersionUID = 1L; private List<CrawlingInfoParam> crawlingInfoParamList; public CrawlingInfo() { } public CrawlingInfo(final String sessionId) { setSessionId(sessionId); } public String getId() { return asDocMeta().id(); } public void setId(final String id) { asDocMeta().id(id); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.9K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueServiceTest.java
urlQueue.setDepth(1); urlQueue.setMethod("GET"); urlQueue.setSessionId("sessionId"); urlQueue.setUrl("http://www.example.com/"); urlQueueService.insert(urlQueue); assertTrue(fesenClient.prepareSearch("fess_crawler.queue") .setQuery(QueryBuilders.termQuery("sessionId", "sessionId")) .setSize(0) .execute() .actionGet()
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
crawlingInfoHelper.store(sessionId, true); // Verify infoMap is cleared assertNull(crawlingInfoHelper.infoMap); } public void test_store_existing() { final String sessionId = "existing-session"; final CrawlingInfo existingInfo = new CrawlingInfo(); existingInfo.setId("info-123"); existingInfo.setSessionId(sessionId); // Mock CrawlingInfoService
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/service/FessUrlQueueService.java
* Supports sequential (default) and random ordering based on crawling configuration. * * @param sessionId the crawling session identifier * @return list of URL queue entries for processing */ @Override protected List<OpenSearchUrlQueue> fetchUrlQueueList(final String sessionId) { final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4K bytes - Viewed (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
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
* * @param sessionId the session identifier to find the latest crawling parameters for * @return a list of CrawlingInfoParam entities from the latest session, or empty list if none found */ public List<CrawlingInfoParam> getLastCrawlingInfoParamList(final String sessionId) { final CrawlingInfo crawlingInfo = getLast(sessionId); if (crawlingInfo == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0)