- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for printThreadDump (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
try { // printThreadDump() java.lang.reflect.Method printMethod = ThreadDumpUtil.class.getMethod("printThreadDump"); assertTrue("printThreadDump should be static", java.lang.reflect.Modifier.isStatic(printMethod.getModifiers())); assertTrue("printThreadDump should be public", java.lang.reflect.Modifier.isPublic(printMethod.getModifiers()));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java
*/ protected ThreadDumpUtil() { // noop } /** * Prints thread dump information to the logger at INFO level. */ public static void printThreadDump() { processThreadDump(logger::info); } /** * Prints thread dump information to the logger at WARN level. */ public static void printThreadDumpAsWarn() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
finishCrawling = true; forceStop(); if (fessConfig.getIndexerThreadDumpEnabledAsBoolean()) { ThreadDumpUtil.printThreadDump(); } org.codelibs.fess.exec.Crawler.addError("QueueTimeout"); } if (!ComponentUtil.available()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 32.9K bytes - Click Count (0)