- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 52 for command3 (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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) -
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) -
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) -
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) -
.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) -
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) -
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 nameCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.2K bytes - Click Count (0) -
docs/fr/README.md
### Créer un Package Exécutez la commande `package` et le fichier de release sera créé dans target/releases. $ mvn package $ mvn rpm:rpm # package .rpm $ mvn jdeb:jdeb # package .deb ### Générer le Code Source $ mvn dbflute:download # (commande unique) $ mvn dbflute:freegen $ mvn license:format ### Tests d'IntégrationCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Nov 11 22:42:32 GMT 2025 - 7.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
// Scenario 1: Command not found CommandExecutionException cmdNotFound = new CommandExecutionException("Command 'xyz' not found"); assertTrue(cmdNotFound.getMessage().contains("not found")); // Scenario 2: Command timeout CommandExecutionException timeout =Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.4K bytes - Click Count (0) -
src/test/resources/thumbnail/test_generate_thumbnail.sh
echo "--- Basic argument tests ---" # Test: No arguments run_test "no arguments" 1 "${GENERATE_THUMBNAIL}" # Test: Empty command type run_test "empty command type" 1 "${GENERATE_THUMBNAIL}" "" "file:/tmp/test" "/tmp/out.png" # Test: Unsupported command type run_test "unsupported command type" 1 "${GENERATE_THUMBNAIL}" "unsupported" "file:/tmp/test" "/tmp/out.png" echo "" echo "--- get_imagemagick_cmd function tests ---"
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 04 08:02:36 GMT 2025 - 7.9K bytes - Click Count (0)