Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setCommandDestroyTimeout (0.17 sec)

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

            assertTrue(true);
    
            // Test destroy timeout
            generator.setCommandDestroyTimeout(0L);
            assertTrue(true);
    
            generator.setCommandDestroyTimeout(-1L);
            assertTrue(true);
    
            generator.setCommandDestroyTimeout(Long.MAX_VALUE);
            assertTrue(true);
        }
    
        // Test special characters in paths
    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

            this.baseDir = baseDir;
        }
    
        /**
         * Sets the timeout for destroying processes.
         * @param commandDestroyTimeout The destroy timeout in milliseconds.
         */
        public void setCommandDestroyTimeout(final long commandDestroyTimeout) {
            this.commandDestroyTimeout = commandDestroyTimeout;
        }
    
    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