- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for activeThreadCount (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
*/ public Integer getActiveThreadCount() { return activeThreadCount; } /** * Sets the active thread count. * @param activeThreadCount The active thread count. */ public void setActiveThreadCount(final Integer activeThreadCount) { this.activeThreadCount = activeThreadCount; } /** * Returns the 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/CrawlerThread.java
synchronized (crawlerContext.activeThreadCountLock) { crawlerContext.activeThreadCount++; } } /** * Decrements the active thread count. */ protected void finishCrawling() { synchronized (crawlerContext.activeThreadCountLock) { crawlerContext.activeThreadCount--; } } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
// Test with special characters crawlerContext.setSessionId("session-with-特殊文字-#123"); assertEquals("session-with-特殊文字-#123", crawlerContext.getSessionId()); } /** * Test activeThreadCount getter and setter */ public void test_activeThreadCount() { assertEquals(0, crawlerContext.getActiveThreadCount().intValue()); crawlerContext.setActiveThreadCount(5);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0)