- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for getOutputs (0.48 sec)
-
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
/** * Gets the original output synonyms. * Returns a defensive copy to prevent external modification. * * @return The original output synonyms (defensive copy). */ public String[] getOutputs() { return outputs == null ? null : outputs.clone(); } /** * Gets the output synonyms as a newline-separated string. * * @return The output synonyms as a string. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
final int exitValue = currentProcess.exitValue(); if (logger.isInfoEnabled()) { logger.info("SuggestCreator: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput()); } if (exitValue != 0) { final StringBuilder out = new StringBuilder(); if (processTimeout) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
final int exitValue = currentProcess.exitValue(); if (logger.isInfoEnabled()) { logger.info("ThumbnailGenerator: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput()); } if (exitValue != 0) { final StringBuilder out = new StringBuilder(); if (processTimeout) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
logger.info("Command execution completed for user: username={}, exitCode={}", username, exitValue); } if (logger.isDebugEnabled()) { logger.debug("Process output:\n{}", it.getOutput()); } if (exitValue == 143 && mt.isTeminated()) { if (logger.isDebugEnabled()) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
final int exitValue = currentProcess.exitValue(); if (logger.isInfoEnabled()) { logger.info("Crawler: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput()); } if (exitValue != 0) { final StringBuilder out = new StringBuilder(); if (processTimeout) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
if (standardOutput) { logger.info("Exit Code: {}", exitValue); } else { logger.info("Exit Code: {} - Process Output:\n{}", exitValue, it.getOutput()); } } if (exitValue == 143 && mt.isTeminated()) { throw new ExecutionTimeoutException("The command execution is timeout: " + cmdList); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
return String.join("\n", inputs); } /** * Returns the output character sequence that inputs are mapped to. * * @return the output sequence */ public String getOutput() { return output; } /** * Checks whether this mapping item has pending updates. * * @return true if both newInputs and newOutput are not null, indicating pending updates
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 7.9K bytes - Viewed (0)