- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for MaxDepth (0.07 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
* @return The maximum depth. */ public int getMaxDepth() { return maxDepth; } /** * Sets the maximum depth. * @param maxDepth The maximum depth. */ public void setMaxDepth(final int maxDepth) { this.maxDepth = maxDepth; } /** * Returns the maximum access count. * @return The maximum access count.Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
crawlerContext.maxThreadCheckCount = maxThreadCheckCount; } /** * Sets the maximum depth. * @param maxDepth The maximum depth. */ public void setMaxDepth(final int maxDepth) { crawlerContext.maxDepth = maxDepth; } /** * Sets the maximum access count. * @param maxAccessCount The maximum access count. */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
crawlerContext.setMaxThreadCheckCount(Integer.MAX_VALUE); assertEquals(Integer.MAX_VALUE, crawlerContext.getMaxThreadCheckCount()); } /** * Test maxDepth getter and setter */ public void test_maxDepth() { assertEquals(-1, crawlerContext.getMaxDepth()); crawlerContext.setMaxDepth(5); assertEquals(5, crawlerContext.getMaxDepth());Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0)