- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for updatesum (0.03 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/DataService.java
* * @param accessResult the access result to store */ void store(RESULT accessResult); /** * Updates the given access result. * * @param accessResult the access result to update */ void update(RESULT accessResult); /** * Updates the given list of access results. * * @param accessResult the list of access results to update */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
for (final Map.Entry<String, AccessResultImpl<Long>> entry : arMap.entrySet()) { accessResultCallback.iterate(entry.getValue()); } } /** * Updates an access result in the data store. * * @param accessResult the access result to update * @throws CrawlerSystemException if the access result is not found */ @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/UrlQueueService.java
* Provides methods for adding, retrieving, and managing URLs within a crawling session. * * @param <QUEUE> the type of URL queue */ public interface UrlQueueService<QUEUE extends UrlQueue<?>> { /** * Updates the session ID. * * @param oldSessionId The old session ID. * @param newSessionId The new session ID. */ void updateSessionId(String oldSessionId, String newSessionId); /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.6K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchDataService.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
*/ public String getSessionId() { 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) {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
} })); } /** * Clears the cache. */ public void clearCache() { sessionCache.clear(); } /** * Updates the session ID for all URL queue entries. * * @param oldSessionId The old session ID. * @param newSessionId The new session ID. */ @OverrideRegistered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 26.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
throw e; } catch (final Exception e) { throw new CrawlerSystemException("Could not store data.", e); } } /** * Updates the character set of the response data by detecting it from the content. * * @param responseData the response data to update */ protected void updateCharset(final ResponseData responseData) {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
try { client.disconnect(); } catch (final IOException e) { logger.warn("Failed to close FTPClient", e); } } /** * Updates the response data based on the FTP file information. * This method handles different file types (files, directories, symbolic links) * and populates the response data accordingly. *Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 39.5K bytes - Viewed (0)