- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getValueFromMap (0.05 sec)
-
src/main/java/org/codelibs/fess/exec/Crawler.java
postcard.setDataCrawlStartTime(getValueFromMap(dataMap, "dataCrawlStartTime", StringUtil.EMPTY)); postcard.setDataIndexSize(getValueFromMap(dataMap, "dataIndexSize", "0")); postcard.setDataIndexExecTime(getValueFromMap(dataMap, "dataIndexExecTime", "0"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
fail("Should not throw exception with empty map: " + e.getMessage()); } } // Test getValueFromMap private method via reflection public void test_getValueFromMap() throws Exception { Method method = Crawler.class.getDeclaredMethod("getValueFromMap", Map.class, String.class, String.class); method.setAccessible(true); Map<String, String> dataMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0)