- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for updateParams (0.87 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
* @param dayForCleanup number of days until cleanup (sets expiration if >= 0) * @throws FessSystemException if unable to store the updated crawling session */ public void updateParams(final String sessionId, final String name, final int dayForCleanup) { final CrawlingInfo crawlingInfo = getCrawlingInfoService().getLast(sessionId); if (crawlingInfo == null) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
} } } else { dayForCleanup = ComponentUtil.getFessConfig().getDayForCleanup(); } crawlingInfoHelper.updateParams(options.sessionId, options.name, dayForCleanup); } catch (final Exception e) { logger.warn("Failed to store crawling information: sessionId={}", options.sessionId, e); } try {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 31.4K bytes - Viewed (0)