Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 738 for failed (0.04 sec)

  1. CrawlJob.java

    "WEB-INF" + File.separator + "lib" + File.separator); L243: // WEB-INF/env/crawler/lib L244: appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/env/" + getExecuteType() + "/lib")), L245: "WEB-INF" + File.separator + "env" + File.separator + getExecuteType() + File.separator + "lib" + File.separator); L246: // WEB-INF/plugin L247: appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/plugin")), L248:...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Jun 23 04:13:47 UTC 2024
      15.1K bytes
  2. ApiAdminDocumentsAction.java

    = new HashMap<>(); L149: itemMap.put("result", item.status().name()); L150: if (item.isFailed()) { L151: itemMap.put("message", item.getFailureMessage()); L152: } else { L153: itemMap.put("id", item.getId()); L154: } L155: return itemMap; L156: }).toList()).status(response.hasFailures() ? Status.FAILED : Status.OK).result()); L157: L158: } L159: L160:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jul 25 01:48:41 UTC 2024
      7.5K bytes
  3. DataIndexHelper.java

    dataConfig.getHandlerName()); L215: } else { L216: try { L217: dataStore.store(dataConfig, indexUpdateCallback, initParamMap); L218: } catch (final Throwable e) { L219: logger.error("Failed to process a data crawling: {}", dataConfig.getName(), e); L220: ComponentUtil.getComponent(FailureUrlService.class).store(dataConfig, e.getClass().getCanonicalName(), L221: dataConfig.getConfigId() +...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      12K bytes
  4. ApiResult.java

    ApiResult(this); L260: } L261: } L262: L263: public static class ApiLogFilesResponse extends ApiResponse { L264: protected List<Map<String, Object>> files; L265: protected long total = 0; L266: L267: public ApiLogFilesResponse files(final List<Map<String, Object>> files) { L268: this.files = files; L269: return this; L270: } L271: L272: public ApiLogFilesResponse total(final long total) { L273: this.total = total; L274: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      12.5K bytes
  5. AdminWizardAction.java

    fConfig.setExcludedDocPaths(getDefaultString("default.config.file.excludedDocPaths", StringUtil.EMPTY)); L199: fConfig.setExcludedPaths(getDefaultString("default.config.file.excludedPaths", StringUtil.EMPTY)); L200: fConfig.setIncludedDocPaths(getDefaultString("default.config.file.includedDocPaths", StringUtil.EMPTY)); L201: fConfig.setIncludedPaths(getDefaultString("default.config.file.includedPaths", StringUtil.EMPTY)); L202: fConfi...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12.7K bytes
  6. fess_label_en.properties

    L110:labels.startTime=Start Time L111:labels.target=Target L112:labels.token=Token L113:labels.synonymFile=Synonym File L114:labels.stopwordsFile=Stopwords File L115:labels.stemmerOverrideFile=Stemmer Override File L116:labels.mappingFile=Mapping File L117:labels.protwordsFile=Protwords File L118:labels.kuromojiFile=Kuromoji File L119:labels.elevateWordFile=Additional Word File L120:labels.badWordFile=Bad Word File L121:labels.urlExpr=Condition L122:labels.boostExpr=Boost Expr L123:labels.confirmPassword=Confirm...
    github.com/codelibs/fess/src/main/resources/fes...
    Fri Mar 22 11:58:34 UTC 2024
      40.7K bytes
  7. AdminGeneralAction.java

    messages.addSuccessSendTestmail(GLOBAL)); L112: updateProperty(Constants.NOTIFICATION_TO_PROPERTY, form.notificationTo); L113: systemProperties.store(); L114: } catch (final Exception e) { L115: logger.warn("Failed to send a test mail.", e); L116: saveError(messages -> messages.addErrorsFailedToSendTestmail(GLOBAL)); L117: } L118: L119: return redirectByParam(AdminGeneralAction.class, "notificationTo", form.notificationTo); L120: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12.8K bytes
  8. ApiAdminDictStopwordsAction.java

    validateApi(body, messages -> {}); L141: return stopwordsService.getStopwordsFile(body.dictId) L142: .map(file -> asStream(new File(file.getPath()).getName()).contentTypeOctetStream().stream(out -> { L143: file.writeOut(out); L144: })).orElseGet(() -> { L145: throwValidationErrorApi(messages -> messages.addErrorsFailedToDownloadStopwordsFile(GLOBAL)); L146: return null; L147: }); L148: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.2K bytes
  9. AdminCrawlinginfoAction.java

    processHelper.sendCommand(entity.getSessionId(), Constants.CRAWLER_PROCESS_COMMAND_THREAD_DUMP); L164: saveInfo(messages -> messages.addSuccessPrintThreadDump(GLOBAL)); L165: } catch (final Exception e) { L166: logger.warn("Failed to print a thread dump.", e); L167: throwValidationError(messages -> messages.addErrorsFailedToPrintThreadDump(GLOBAL), this::asListHtml); L168: } L169: }).orElse(() -> { L170: throwValidationError(messages...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      10K bytes
  10. ApiAdminDictSynonymAction.java

    validateApi(body, messages -> {}); L141: return synonymService.getSynonymFile(body.dictId) L142: .map(file -> asStream(new File(file.getPath()).getName()).contentTypeOctetStream().stream(out -> { L143: file.writeOut(out); L144: })).orElseGet(() -> { L145: throwValidationErrorApi(messages -> messages.addErrorsFailedToDownloadProtwordsFile(GLOBAL)); L146: return null; L147: }); L148: } L149:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.1K bytes
Back to top