- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for XPathAPI (0.03 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlXpathExtractor.java
protected String targetNodePath = "//HTML/BODY | //@alt | //@title"; /** Cache for XPathAPI instances to improve performance. */ protected LoadingCache<String, XPathAPI> xpathAPICache; /** Cache duration in minutes for XPathAPI instances. */ protected long cacheDuration = 10; // min /** * Creates a new HtmlXpathExtractor instance. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
@Override public XPathAPI load(final String key) { if (logger.isDebugEnabled()) { logger.debug("created XPathAPI by {}", key); } return new XPathAPI(); } }); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
* Gets the XPath API instance for this thread. * * @return the XPath API instance */ protected XPathAPI getXPathAPI() { XPathAPI cachedXPathAPI = xpathAPI.get(); if (cachedXPathAPI == null) { cachedXPathAPI = new XPathAPI(); xpathAPI.set(cachedXPathAPI); } return cachedXPathAPI; } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 28.5K bytes - Viewed (0)