- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 149 for session_id (0.04 sec)
-
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")); } public void test_replaceUrl() { final String sessionId = "test"; final List<PathMapping> pathMappingList = new ArrayList<PathMapping>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 14.9K 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java
cachedExcludeSet.clear(); if (sessionId != null) { getUrlFilterService().delete(sessionId); } } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.filter.UrlFilter#init(java.lang.String) */ @Override public void init(final String sessionId) { this.sessionId = sessionId; if (!cachedIncludeSet.isEmpty()) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
return crawlerContext.sessionId; } /** * Sets the session ID. * If the new session ID is different from the current one, it updates the session ID in the URL queue service. * @param sessionId The new session ID. */ public void setSessionId(final String sessionId) { if (StringUtil.isNotBlank(sessionId) && !sessionId.equals(crawlerContext.sessionId)) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
} } } /** * Removes the path mapping list for a session. * * @param sessionId the session ID */ public void removePathMappingList(final String sessionId) { pathMappingMap.remove(sessionId); } /** * Gets the path mapping list for a session. * * @param sessionId the session ID
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImpl.java
* java.lang.String) */ @Override public void add(final String sessionId, final String url) { final Queue<UrlQueueImpl<Long>> urlQueueList = dataHelper.getUrlQueueList(sessionId); synchronized (urlQueueList) { final UrlQueueImpl<Long> urlQueue = new UrlQueueImpl<>(); urlQueue.setSessionId(sessionId); urlQueue.setMethod(Constants.GET_METHOD); urlQueue.setUrl(url);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
* * @param sessionId the session ID * @return the count of access results */ @Override public int getCount(final String sessionId) { return dataHelper.getAccessResultMap(sessionId).size(); } /** * Deletes all access results for the specified session. * * @param sessionId the session ID */ @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.8K bytes - Viewed (0) -
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)