Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getCrawlingConfig (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                        Node value = getXPathAPI().selectSingleNode(document, entry.getValue());
                        if (value != null && isPruned != null && isPruned.booleanValue()) {
                            value = pruneNode(value, getCrawlingConfig(responseData));
                        }
                        putResultDataBody(dataMap, entry.getKey(), value != null ? value.getTextContent() : null);
                        break;
                    }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 55.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            crawlingConfigHelper.refresh();
            assertNull(crawlingConfigHelper.getCrawlingConfig(null));
            assertNull(crawlingConfigHelper.getCrawlingConfig(""));
            assertNull(crawlingConfigHelper.getCrawlingConfig("XXX"));
            final CrawlingConfig webConfig = crawlingConfigHelper.getCrawlingConfig("W01");
            assertEquals("01", webConfig.getId());
            assertTrue(webConfig instanceof WebConfig);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 35.3K bytes
    - Click Count (0)
Back to Top