- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 15 for cmdline (0.05 seconds)
-
architecture/standards/0010-gradle-properties-naming.md
They can always be passed via `-D` on the command line. Examples of properties that follow the naming rules: * `org.gradle.internal.operations.trace` * `org.gradle.internal.cmdline.max.length` * … ### Properties of pre-incubation features Properties of pre-incubation features MUST start with `org.gradle.experimental.` They can all be called **experimental properties**.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 06 09:25:54 GMT 2026 - 8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
List<String> cmdList = Arrays.asList("echo", "hello"); Consumer<ProcessBuilder> pbCall = pb -> { pb.redirectErrorStream(true); }; try { // Start multiple processes processHelper.startProcess(sessionId1, cmdList, pbCall); processHelper.startProcess(sessionId2, cmdList, pbCall);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 16K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
} cmdList.add(buf.toString()); } else if (defaultValue != null) { cmdList.add("-D" + name + "=" + defaultValue); } } /** * Adds all Fess configuration properties to the command list. * Properties starting with the Fess config prefix are included. * * @param cmdList the command list to add properties to */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) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
jvmOptions.stream().filter(StringUtil::isNotBlank).forEach(cmdList::add); } cmdList.add(ThumbnailGenerator.class.getCanonicalName()); cmdList.add("--sessionId"); cmdList.add(sessionId); cmdList.add("--numOfThreads"); cmdList.add(Integer.toString(numOfThreads)); if (cleanup) { cmdList.add("--cleanup"); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 11.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
} cmdList.add(SuggestCreator.class.getCanonicalName()); cmdList.add("--sessionId"); cmdList.add(sessionId); final File propFile = ComponentUtil.getSystemHelper().createTempFile(getExecuteType() + "_", ".properties"); try { cmdList.add("-p"); cmdList.add(propFile.getAbsolutePath());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
final String tempPath = tempFile.getAbsolutePath(); final String outputPath = outputFile.getAbsolutePath(); final List<String> cmdList = new ArrayList<>(); for (final String value : commandList) { cmdList.add(expandPath(value.replace("${url}", tempPath) .replace("${outputFile}", outputPath)
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) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertTrue(cmdList.contains("-Dcustom.prop.one=value1")); assertTrue(cmdList.contains("-Dcustom.prop.two=value2")); // Test with null regex cmdList.clear(); execJob.testAddFessCustomSystemProperties(cmdList, null); assertEquals(0, cmdList.size()); // Test with empty regex cmdList.clear(); execJob.testAddFessCustomSystemProperties(cmdList, "");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
} finally { System.clearProperty("os.name"); } List<String> cmdList = mockProcessHelper.getLastCommandList(); if (cmdList != null && cmdList.size() > 0) { assertTrue(cmdList.contains("-cp") || cmdList.contains("-classpath")); } } // Test executeSuggestCreator with Unix environment @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 31.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
* @param cmdList list of command and arguments to execute * @param pbCall callback to configure the ProcessBuilder * @return JobProcess representing the started process */ public JobProcess startProcess(final String sessionId, final List<String> cmdList, final Consumer<ProcessBuilder> pbCall) { return startProcess(sessionId, cmdList, pbCall, InputStreamThread.MAX_BUFFER_SIZE, null); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 06:54:47 GMT 2025 - 10.9K bytes - Click Count (0)