Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for getOutputs (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

            stemmerOverrideService.getStemmerOverrideItem(form.dictId, form.id).ifPresent(entity -> {
                form.input = entity.getInput();
                form.output = entity.getOutput();
            }).orElse(() -> {
                throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.getDisplayId()),
                        () -> asListHtml(form.dictId));
            });
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

            charMappingService.getCharMappingItem(form.dictId, form.id).ifPresent(entity -> {
                form.inputs = entity.getInputsValue();
                form.output = entity.getOutput();
            }).orElse(() -> {
                throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.getDisplayId()),
                        () -> asListHtml(form.dictId));
            });
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java

            final EditBody body = new EditBody();
            body.id = entity.getId();
            body.dictId = dictId;
            body.input = entity.getInput();
            body.output = entity.getOutput();
            return body;
        }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java

            final EditBody body = new EditBody();
            body.id = entity.getId();
            body.dictId = dictId;
            body.inputs = entity.getInputsValue();
            body.output = entity.getOutput();
            return body;
        }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.5K bytes
    - Viewed (0)
Back to top