Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for command1 (0.1 sec)

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

        public void test_multiple_commands_configuration() throws Exception {
            // Test setting multiple commands without triggering execution
            final List<String> commands =
                    Arrays.asList("command1 ${url} ${outputFile}", "command2 ${url} ${outputFile}", "command3 ${url} ${outputFile}");
    
            generator.setCommandList(commands);
            assertTrue("Multiple commands should be settable", 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/auth/chain/CommandChain.java

        }
    
        /**
         * Executes an external command with the given parameters.
         * @param commands The command array to execute.
         * @param username The username parameter for the command.
         * @param password The password parameter for the command.
         * @return The exit code of the executed command.
         */
        protected int executeCommand(final String[] commands, final String username, final String password) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * Command-based thumbnail generator that executes external commands to create thumbnails.
     * Uses external tools through command execution to generate thumbnail images from documents.
     */
    public class CommandGenerator extends BaseThumbnailGenerator {
        private static final Logger logger = LogManager.getLogger(CommandGenerator.class);
    
        /** List of command strings to execute for thumbnail generation. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java

                assertNotNull(jobProcess2);
                // Since echo command completes quickly, processes might already be finished
                // So we just verify that processes were created without errors
    
                Set<String> sessionIds = processHelper.getRunningSessionIdSet();
                // Since echo commands complete quickly, we may not catch them running
                // Just verify no exceptions occurred
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java

      private Throwable thrownByExecutionThread;
      private final Executor exceptionCatchingExecutor =
          new Executor() {
            @Override
            public void execute(Runnable command) {
              executionThread = new Thread(command);
              executionThread.setUncaughtExceptionHandler(
                  new UncaughtExceptionHandler() {
                    @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

        protected void setUpChild() throws Exception {
            // Get the queryProcessor that was registered in parent class
            queryProcessor = ComponentUtil.getComponent("queryProcessor");
    
            // Register all query commands needed for testing
            new TermQueryCommand().register();
            new MatchAllQueryCommand().register();
            new PhraseQueryCommand().register();
            new BooleanQueryCommand().register();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17K bytes
    - Viewed (0)
  7. maven-tests/mvnw

          fi
        fi
      else
        JAVACMD="$(
          'set' +e
          'unset' -f command 2>/dev/null
          'command' -v java
        )" || :
        JAVACCMD="$(
          'set' +e
          'unset' -f command 2>/dev/null
          'command' -v javac
        )" || :
    
        if [ ! -x "${JAVACMD-}" ] || [ ! -x "${JAVACCMD-}" ]; then
          echo "The java/javac command does not exist in PATH nor is JAVA_HOME set, so mvnw cannot run." >&2
          return 1
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.2.md

    * Add support for running clusters on GCI ([#24893](https://github.com/kubernetes/kubernetes/pull/24893), [@andyzheng0831](https://github.com/andyzheng0831))
    * Trusty: Add retry in curl commands ([#24749](https://github.com/kubernetes/kubernetes/pull/24749), [@andyzheng0831](https://github.com/andyzheng0831))
    
    
    
    # v1.2.3
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/ExecJob.java

            lastaEnv = env;
            return this;
        }
    
        /**
         * Adds a system property to the command list.
         * If the property exists in the system, it uses that value with optional append value.
         * Otherwise, it uses the default value if provided.
         *
         * @param cmdList the command list to add the property to
         * @param name the property name
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/WrappingExecutorServiceTest.java

          return inline.submit(task, result);
        }
    
        @Override
        public void execute(Runnable command) {
          lastMethodCalled = "execute";
          assertThat(command).isInstanceOf(WrappedRunnable.class);
          inline.execute(command);
        }
    
        private static <T> void assertTaskWrapped(Collection<? extends Callable<T>> tasks) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top