- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for writeThreadDump (0.19 sec)
-
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
// writeThreadDump(String) java.lang.reflect.Method writeMethod = ThreadDumpUtil.class.getMethod("writeThreadDump", String.class); assertTrue("writeThreadDump should be static", java.lang.reflect.Modifier.isStatic(writeMethod.getModifiers())); assertTrue("writeThreadDump should be public", java.lang.reflect.Modifier.isPublic(writeMethod.getModifiers()));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java
} /** * Writes thread dump information to the specified file. * * @param file the file path to write the thread dump to */ public static void writeThreadDump(final String file) { try (final Writer writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), Constants.CHARSET_UTF_8))) { processThreadDump(s -> { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.3K bytes - Viewed (0)