Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ProcessDestroyer (0.37 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

                assertNotNull("ProcessDestroyer class should exist", destroyerClass);
                assertTrue("ProcessDestroyer should extend TimerTask", java.util.TimerTask.class.isAssignableFrom(destroyerClass));
            } catch (final ClassNotFoundException e) {
                fail("ProcessDestroyer inner class should exist");
            }
        }
    
        // Test exception handling scenarios
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

            private final long timeout;
    
            /**
             * Constructor for ProcessDestroyer.
             * @param p The process to monitor.
             * @param ist The input stream thread.
             * @param timeout The destruction timeout.
             */
            public ProcessDestroyer(final Process p, final InputStreamThread ist, final long timeout) {
                this.p = p;
                this.ist = ist;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
Back to top