- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for removePathMappingList (0.09 seconds)
-
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
List<org.codelibs.fess.opensearch.config.exentity.PathMapping> pathMappingList) { // Mock implementation } @Override public void removePathMappingList(String sessionId) { // Mock implementation } }; ComponentUtil.register(pathMappingHelper, "pathMappingHelper");
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/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
assertNotNull(pathMappingHelper.getPathMappingList(sessionId)); assertNull(pathMappingHelper.getPathMappingList(sessionId + "1")); pathMappingHelper.removePathMappingList(sessionId); assertNull(pathMappingHelper.getPathMappingList(sessionId)); assertNull(pathMappingHelper.getPathMappingList(sessionId + "1")); } @Test public void test_replaceUrl() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
} catch (final Throwable t) { logger.warn("Crawl task failed with an exception.", t); return Constants.EXIT_FAIL; } finally { pathMappingHelper.removePathMappingList(options.sessionId); crawlingInfoHelper.putToInfoMap(Constants.CRAWLER_STATUS, errors.isEmpty() ? Constants.T.toString() : Constants.F.toString()); if (!errors.isEmpty()) {
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)