Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 58 for command1 (0.04 seconds)

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

        @Test
        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);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/query/QueryProcessor.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * Query processor component that handles query filters and commands.
     * This class provides a pipeline for processing Lucene queries by applying
     * a chain of filters and executing registered query commands.
     *
     * <p>The processor maintains a map of query commands indexed by query class names
     * and a list of filters that are applied in order during query processing.</p>
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  4. 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. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  5. CLAUDE.md

    | Search Engine | OpenSearch |
    | App Server | Embedded Tomcat |
    | Crawler | fess-crawler library |
    | Scheduler | Lasta Job |
    | Logging | Log4j2 |
    | Testing | JUnit 4/5, UTFlute, REST Assured |
    
    ## Development Commands
    
    ### Setup
    ```bash
    mvn antrun:run          # Download OpenSearch plugins (required before first build)
    mvn dbflute:download    # One-time setup for DBFlute
    mvn dbflute:freegen     # Generate DBFlute source code
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  6. README.md

    ### Download and Install/Run
    
    Fess 15.5 is now available and can be downloaded on the [Releases page](https://github.com/codelibs/fess/releases "download"). Downloads come in 3 flavors: deb, rpm, zip.
    
    The following commands show how to use the zip download:
    
        $ unzip fess-15.5.x.zip
        $ cd fess-15.5.x
        $ ./bin/fess
    
    For more details, see the [Installation Guide](https://fess.codelibs.org/15.5/install/index.html).
    
    ### Docker
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 14 03:19:23 GMT 2026
    - 7.8K bytes
    - Click Count (2)
  7. 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
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 16K bytes
    - Click Count (0)
  8. .teamcity/scripts/CheckBadMerge.java

            }
        }
    
        private static ExecResult exec(String[] command) throws IOException, InterruptedException, ExecutionException {
            Objects.requireNonNull(command, "command");
            if (command.length == 0) {
                throw new IllegalArgumentException("command must not be empty");
            }
    
            ProcessBuilder pb = new ProcessBuilder(command);
            Process process = pb.start();
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
  9. 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();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17K bytes
    - Click Count (0)
  10. 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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.2K bytes
    - Click Count (0)
Back to Top