- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for argv (0.03 sec)
-
FessMessages.java
property name for the message. (NotNull) L2022: * @param arg0 The parameter arg0 for message. (NotNull) L2023: * @param arg1 The parameter arg1 for message. (NotNull) L2024: * @return this. (NotNull) L2025: */ L2026: public FessMessages addErrorsFailedToReindex(String property, String arg0, String arg1) { L2027: assertPropertyNotNull(property); L2028: add(property, new UserMessage(ERRORS_failed_to_reindex, arg0, arg1)); L2029: return this; L2030: } L2031: L2032:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 119.9K bytes -
PythonJob.java
new ArrayList<>(); L47: L48: public PythonJob filename(final String filename) { L49: this.filename = filename; L50: return this; L51: } L52: L53: public PythonJob arg(final String value) { L54: argList.add(value); L55: return this; L56: } L57: L58: public PythonJob args(final String... values) { L59: stream(values).of(stream -> stream.forEach(argList::add)); L60: return this; L61: } L62: L63: @Override L64: public String execute()...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5.9K bytes -
esclient.xml
name="addConfigFile"> L38: <arg>"fess"</arg> L39: <arg>"ckb-iq/protwords.txt"</arg> L40: </postConstruct> L41: <postConstruct name="addConfigFile"> L42: <arg>"fess"</arg> L43: <arg>"cs/protwords.txt"</arg> L44: </postConstruct> L45: <postConstruct name="addConfigFile"> L46: <arg>"fess"</arg> L47: <arg>"da/protwords.txt"</arg> L48: </postConstruct> L49: <postConstruct name="addConfigFile"> L50: <arg>"fess"</arg> L51: <arg>"de/protwords.txt"</arg> L52: </postConstruct> L53: ...github.com/codelibs/fess/src/main/resources/esc...Mon Oct 21 12:20:52 UTC 2024 16K bytes -
JvmUtilTest.java
System.setProperty("java.version", "1.8.0_171"); L54: String[] values = JvmUtil.filterJvmOptions(args); L55: assertEquals("-X111", values[0]); L56: assertEquals("-X222", values[1]); L57: assertEquals("-X555", values[2]); L58: assertEquals("-X999", values[3]); L59: L60: System.setProperty("java.version", "11.0.1"); L61: values = JvmUtil.filterJvmOptions(args); L62: assertEquals("-X111", values[0]); L63: assertEquals("-X444", values[1]); L64:...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.6K bytes -
AdminStorageAction.java
L204: } L205: try { L206: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L207: final SetObjectTagsArgs args = L208: SetObjectTagsArgs.builder().bucket(fessConfig.getStorageBucket()).object(objectName).tags(tags).build(); L209: createClient(fessConfig).setObjectTags(args); L210: } catch (final Exception e) { L211: throw new StorageException("Failed to update tags for " + objectName, e); L212: } L213:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 19.9K bytes -
fess.xml
> L79: <arg>"advance"</arg> L80: <arg>"advance.jsp"</arg> L81: </postConstruct> L82: <postConstruct name="addDesignJspFileName"> L83: <arg>"help"</arg> L84: <arg>"help.jsp"</arg> L85: </postConstruct> L86: <postConstruct name="addDesignJspFileName"> L87: <arg>"error"</arg> L88: <arg>"error/error.jsp"</arg> L89: </postConstruct> L90: <postConstruct name="addDesignJspFileName"> L91: <arg>"errorNotFound"</arg> L92: <arg>"error/notFound.jsp"</arg> L93: </postConstruct> L94: <postConstruct...github.com/codelibs/fess/src/main/resources/fes...Sun Jul 28 09:03:48 UTC 2024 5.2K bytes -
FessBoot.java
============= L78: // main L79: // ============ L80: L81: public static void main(final String[] args) { L82: // update java.io.tmpdir L83: final String tempPath = System.getProperty(FESS_TEMP_PATH); L84: if (tempPath != null) { L85: System.setProperty(JAVA_IO_TMPDIR, tempPath); L86: } L87: L88: final TomcatBoot...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 8K bytes -
SuggestCreator.java
ProcessProbe.getInstance(); L80: OsProbe.getInstance(); L81: JvmInfo.jvmInfo(); L82: } L83: L84: public static void main(final String[] args) { L85: final Options options = new Options(); L86: final CmdLineParser parser = new CmdLineParser(options); L87: try { L88: parser.parseArgument(args); L89: } catch (final CmdLineException e) { L90: System.err.println(e.getMessage()); L91: System.err.println("java " + SuggestC...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 10K bytes -
app.xml
"/tmp/test.txt", L82: "$USERNAME" L83: ]</property> L84: <property name="targetUsers">[ L85: "admin" L86: ]</property> L87: </component> L88: </arg> L89: </postConstruct> L90: --> L91: <postConstruct name="addChain"> L92: <arg> L93: <component class="org.codelibs.fess.auth.chain.LdapChain"> L94: </component> L95: </arg> L96: </postConstruct> L97: </component> L98: <component name="osddHelper" class="org.codelibs.fess.helper.OsddHelper"> L99: <property name="osddPath">"...github.com/codelibs/fess/src/main/resources/app...Sun Nov 19 02:22:47 UTC 2023 3.8K bytes -
ThumbnailGenerator.java
ProcessProbe.getInstance(); L87: OsProbe.getInstance(); L88: JvmInfo.jvmInfo(); L89: } L90: L91: public static void main(final String[] args) { L92: final Options options = new Options(); L93: L94: final CmdLineParser parser = new CmdLineParser(options); L95: try { L96: parser.parseArgument(args); L97: } catch (final CmdLineException e) { L98: System.err.println(e.getMessage()); L99: System.err.println("java " + Thumb...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 8.2K bytes