- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getInfoMap (0.05 seconds)
-
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
@Override public void putToInfoMap(String key, String value) { infoMap.put(key, value); } @Override public Map<String, String> getInfoMap(String sessionId) { return new HashMap<>(infoMap); } }; ComponentUtil.register(crawlingInfoHelper, "crawlingInfoHelper"); systemHelper = new SystemHelper() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 30.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
* * @param sessionId the session ID to retrieve parameters for * @return a map containing all key-value parameter pairs for the session */ public Map<String, String> getInfoMap(final String sessionId) { final List<CrawlingInfoParam> crawlingInfoParamList = getCrawlingInfoService().getLastCrawlingInfoParamList(sessionId); final Map<String, String> map = new HashMap<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 15.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
public void storeInfo(List<CrawlingInfoParam> crawlingInfoParamList) { } }, CrawlingInfoService.class.getCanonicalName()); Map<String, String> result = crawlingInfoHelper.getInfoMap(sessionId); assertEquals(2, result.size()); assertEquals("1500", result.get("total_docs")); assertEquals("3", result.get("error_count")); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 28.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
logger.warn("Failed to store crawling information: sessionId={}", options.sessionId, e); } final Map<String, String> infoMap = crawlingInfoHelper.getInfoMap(options.sessionId); final StringBuilder buf = new StringBuilder(500); for (final Map.Entry<String, String> entry : infoMap.entrySet()) { if (buf.length() != 0) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0)