- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for updateParams (0.07 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
infoMap = Collections.synchronizedMap(new LinkedHashMap<>()); } logger.debug("infoMap: {}={} => {}", key, value, infoMap); infoMap.put(key, value); } public void updateParams(final String sessionId, final String name, final int dayForCleanup) { final CrawlingInfo crawlingInfo = getCrawlingInfoService().getLast(sessionId); if (crawlingInfo == null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
} catch (final NumberFormatException e) {} } else { dayForCleanup = ComponentUtil.getFessConfig().getDayForCleanup(); } crawlingInfoHelper.updateParams(options.sessionId, options.name, dayForCleanup); } catch (final Exception e) { logger.warn("Failed to store crawling information.", e); } try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 24K bytes - Viewed (0)