Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setCommandList (0.05 sec)

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

            generator.setCommandList(commands);
            assertTrue(true);
        }
    
        public void test_setCommandList_null() throws Exception {
            generator.setCommandList(null);
            assertTrue(true);
        }
    
        public void test_setCommandList_empty() throws Exception {
            final List<String> commands = new ArrayList<>();
            generator.setCommandList(commands);
            assertTrue(true);
        }
    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

                return executed.get();
            }
        }
    
        /**
         * Sets the list of commands to execute for thumbnail generation.
         * @param commandList The command list.
         */
        public void setCommandList(final List<String> commandList) {
            this.commandList = commandList;
        }
    
        /**
         * Sets the command execution timeout.
         * @param commandTimeout The timeout in milliseconds.
         */
    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