Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeThreadDump (1.3 sec)

  1. 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)
  2. 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)
Back to top