Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 738 for failed (0.05 sec)

  1. SynonymFile.java

    IOException e) { L321: throw new DictionaryException("Failed to write: " + oldItem + " -> " + item, e); L322: } L323: } L324: L325: public void write(final String line) { L326: try { L327: writer.write(line); L328: writer.write(Constants.LINE_SEPARATOR); L329: } catch (final IOException e) { L330: throw new DictionaryException("Failed to write: " + line, e); L331: } L332: } L333:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      12.5K bytes
  2. ThemeHelper.java

    logger.debug("Deleting {}", f); L118: } L119: try { L120: Files.delete(f); L121: } catch (final IOException e) { L122: logger.warn("Failed to delete {}", f, e); L123: } L124: }); L125: Files.deleteIfExists(dir); L126: } catch (final IOException e) { L127: logger.warn("Failed to delete {}", dir, e); L128: } L129: } L130: L131: protected Path getJarFile(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.7K bytes
  3. BadWordService.java

    badWordBhv.update(badWord); L138: } L139: } catch (final Exception e) { L140: logger.warn("Failed to read a sugget elevate word: {}", list, e); L141: } L142: } L143: searchEngineClient.refresh("_all"); // TODO replace _all L144: } catch (final IOException e) { L145: logger.warn("Failed to read a sugget elevate word.", e); L146: } L147: } L148: L149: public void exportCsv(final Writer writer) { L150:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.3K bytes
  4. ApiAdminSchedulerAction.java

    JsonResponse<ApiResult> post$stop(final String id) { L79: scheduledJobService.getScheduledJob(id).ifPresent(entity -> { L80: try { L81: entity.stop(); L82: } catch (final Exception e) { L83: logger.warn("Failed to process a request.", e); L84: throwValidationErrorApi(messages -> { L85: messages.addErrorsFailedToStopJob(GLOBAL, entity.getName()); L86: }); L87: } L88: }).orElse(() -> { L89:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.6K bytes
  5. ApiAdminDuplicatehostAction.java

    CrudMode.CREATE; L83: final DuplicateHost duplicateHost = getDuplicateHost(body).map(entity -> { L84: try { L85: duplicateHostService.store(entity); L86: } catch (final Exception e) { L87: logger.warn("Failed to process a request.", e); L88: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L89: } L90: return entity; L91: }).orElseGet(() -> {...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.4K bytes
  6. ApiAdminDictProtwordsAction.java

    validateApi(body, messages -> {}); L141: return protwordsService.getProtwordsFile(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: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.2K bytes
  7. ApiAdminKeymatchAction.java

    body.crudMode = CrudMode.CREATE; L83: final KeyMatch keyMatch = getKeyMatch(body).map(entity -> { L84: try { L85: keyMatchService.store(entity); L86: } catch (final Exception e) { L87: logger.warn("Failed to process a request.", e); L88: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L89: } L90: return entity; L91: }).orElseGet(() -> {...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.2K bytes
  8. ApiAdminRoleAction.java

    messages.addErrorsCrudFailedToCreateInstance(GLOBAL); L72: }); L73: return null; L74: }); L75: try { L76: roleService.store(entity); L77: } catch (final Exception e) { L78: logger.warn("Failed to process a request.", e); L79: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L80: } L81: return asJson(new ApiResult.ApiUpdateResponse().id(entity....
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.2K bytes
  9. WebFsIndexHelper.java

    urlFilterService.delete(sid); L489: } catch (final Exception e) { L490: logger.warn("Failed to delete UrlFilter for {}", sid, e); L491: } L492: L493: try { L494: // clear queue L495: urlQueueService.clearCache(); L496: urlQueueService.delete(sid); L497: } catch (final Exception e) { L498: logger.warn("Failed to delete UrlQueue for {}", sid, e); L499: } L500: L501: try { L502: // clear L503:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      22.6K bytes
  10. AdminEsreqAction.java

    if (tempFile.exists() && !tempFile.delete()) { L113: logger.warn("Failed to delete {}", tempFile.getAbsolutePath()); L114: } L115: } L116: }); L117: } catch (final Exception e) { L118: logger.warn("Failed to process request file: {}", form.requestFile.getFileName(), e); L119: throwValidationError(messages -> messages.addErrorsI...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.2K bytes
Back to top