Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 738 for failed (0.04 sec)

  1. PurgeThumbnailJob.java

    1000L; L26: L27: public String execute() { L28: try { L29: final long count = ComponentUtil.getThumbnailManager().purge(getExpiry()); L30: return "Deleted " + count + " thumbnail files."; L31: } catch (final Exception e) { L32: logger.error("Failed to purge thumbnails.", e); L33: return e.getMessage(); L34: } L35: } L36: L37: public long getExpiry() { L38: return expiry; L39: } L40: L41: public PurgeThumbnailJob expiry(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.5K bytes
  2. AdminRoleAction.java

    -> { L169: try { L170: roleService.store(entity); L171: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L172: } catch (final Exception e) { L173: logger.warn("Failed to add {}", entity, e); L174: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L175: this::asEditHtml); L176: } L177: }).orElse(()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      10.8K bytes
  3. SystemHelper.java

    nstants.FESS_LOG_LEVEL, Level.WARN.toString()); L592: } L593: L594: public File createTempFile(final String prefix, final String suffix) { L595: try { L596: final File file = File.createTempFile(prefix, suffix); L597: if (logger.isDebugEnabled()) { L598: logger.debug("Create {} as a temp file.", file.getAbsolutePath()); L599: } L600: return file; L601: } catch (final IOException e) { L602: throw new IORuntimeException(e);...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 17 12:10:08 UTC 2024
      27.2K bytes
  4. AdminDictSynonymAction.java

    {}, () -> downloadpage(form.dictId)); L228: verifyTokenKeep(() -> downloadpage(form.dictId)); L229: return synonymService.getSynonymFile(form.dictId) L230: .map(file -> asStream(new File(file.getPath()).getName()).contentTypeOctetStream().stream(out -> { L231: file.writeOut(out); L232: })).orElseGet(() -> { L233: throwValidationError(messages -> messages.addErrorsFailedToDownloadSynonymFile(GLOBAL), L234: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      19.5K bytes
  5. ScoreUpdater.java

    try { L33: final long count = b.process(); L34: resultBuf.append(b.getClass().getSimpleName()).append(" : ").append(count).append('\n'); L35: } catch (final Exception e) { L36: logger.warn("Failed to update scores.", e); L37: resultBuf.append(e.getMessage()).append('\n'); L38: } L39: }); L40: return resultBuf.toString(); L41: } L42: L43: protected void addScoreBooster(final ScoreBooster scoreBooster)...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.7K bytes
  6. SearchLogService.java

    cb.query().setRequestedAt_LessEqual(LocalDateTime.parse(values[1], formatter)); L388: } L389: } catch (final Exception e) { L390: if (logger.isDebugEnabled()) { L391: logger.debug("Failed to parse {}", pager.requestedTimeRange, e); L392: } L393: } L394: } L395: } L396: L397: private void createFavoriteLogCondition(final SearchLogPager pager, final FavoriteLogCB cb) { L398: if (StringUt...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      28.4K bytes
  7. AdminAccesstokenAction.java

    L208: try { L209: accessTokenService.store(entity); L210: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L211: } catch (final Exception e) { L212: logger.warn("Failed to process a request.", e); L213: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L214: this::asEditHtml); L215: } L216: }).orElse(()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.7K bytes
  8. AdminLabeltypeAction.java

    L214: try { L215: labelTypeService.store(entity); L216: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L217: } catch (final Exception e) { L218: logger.warn("Failed to process a request.", e); L219: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L220: this::asEditHtml); L221: } L222: }).orElse(()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.1K bytes
  9. GenerateThumbnailJob.java

    "WEB-INF" + File.separator + "lib" + File.separator); L133: // WEB-INF/env/thumbnail/lib L134: appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/env/" + getExecuteType() + "/lib")), L135: "WEB-INF" + File.separator + "env" + File.separator + getExecuteType() + File.separator + "lib" + File.separator); L136: // WEB-INF/plugin L137: appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/plugin")), L138:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      10.6K bytes
  10. SuggestJob.java

    "WEB-INF" + File.separator + "lib" + File.separator); L120: // WEB-INF/env/suggest/lib L121: appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/env/" + getExecuteType() + "/lib")), L122: "WEB-INF" + File.separator + "env" + File.separator + getExecuteType() + File.separator + "lib" + File.separator); L123: // WEB-INF/plugin L124: appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/plugin")), L125:...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Jun 23 04:13:47 UTC 2024
      10K bytes
Back to top