Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 288 for delete (0.04 sec)

  1. BsRelatedContentBhv.java

    entity.asDocMeta().indexOption(opLambda); L209: doInsertOrUpdate(entity, null, null); L210: } L211: L212: public void delete(RelatedContent entity) { L213: doDelete(entity, null); L214: } L215: L216: public void delete(RelatedContent entity, RequestOptionCall<DeleteRequestBuilder> opLambda) { L217: entity.asDocMeta().deleteOption(opLambda); L218: doDelete(entity, null); L219: } L220: L221: public int queryDelete(CBCall<RelatedContentCB> cbLambda) { L222: return...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  2. ProtwordsFile.java

    L280: if (isCommit) { L281: try { L282: dictionaryManager.store(ProtwordsFile.this, newFile); L283: } finally { L284: newFile.delete(); L285: } L286: } else { L287: newFile.delete(); L288: } L289: } L290: } L291:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      9.6K bytes
  3. StopwordsFile.java

    L280: if (isCommit) { L281: try { L282: dictionaryManager.store(StopwordsFile.this, newFile); L283: } finally { L284: newFile.delete(); L285: } L286: } else { L287: newFile.delete(); L288: } L289: } L290: } L291:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      9.6K bytes
  4. AdminBackupAction.java

    out); L141: asyncImport(fileName, tempFile); L142: } catch (final IOException e) { L143: logger.warn("Failed to create a temp file.", e); L144: if (tempFile.exists() && !tempFile.delete()) { L145: logger.warn("Failed to delete {}.", tempFile.getAbsolutePath()); L146: } L147: throwValidationError(messages -> messages.addErrorsFileIsNotSupported(GLOBAL, fileName), this::asListHtml); L148: } L149: saveInfo(messages...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      28.5K bytes
  5. BsWebAuthenticationBhv.java

    entity.asDocMeta().indexOption(opLambda); L213: doInsertOrUpdate(entity, null, null); L214: } L215: L216: public void delete(WebAuthentication entity) { L217: doDelete(entity, null); L218: } L219: L220: public void delete(WebAuthentication entity, RequestOptionCall<DeleteRequestBuilder> opLambda) { L221: entity.asDocMeta().deleteOption(opLambda); L222: doDelete(entity, null); L223: } L224: L225: public int queryDelete(CBCall<WebAuthenticationCB> cbLambda) { L226: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.4K bytes
  6. StemmerOverrideFile.java

    if (isCommit) { L294: try { L295: dictionaryManager.store(StemmerOverrideFile.this, newFile); L296: } finally { L297: newFile.delete(); L298: } L299: } else { L300: newFile.delete(); L301: } L302: } L303: } L304: L305:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      10.6K bytes
  7. profile.js

    button = $(event.relatedTarget), L40: docId = button.data("docid"), L41: title = button.data("title"), L42: url = button.data("url"); L43: L44: $(this) L45: .find(".modal-body #delete-doc-title") L46: .text(title); L47: $(this) L48: .find(".modal-body #delete-doc-url") L49: .text(url); L50: $(this) L51: .find(".modal-footer input#docId") L52: .val(docId); L53: }); L54:});...
    github.com/codelibs/fess/src/main/webapp/js/pro...
    Wed Sep 12 06:47:49 UTC 2018
      1.3K bytes
  8. module.xml

    L94: L95: <target name="remove.jars" if="with.fess"> L96: <delete> L97: <fileset dir="${modules.dir}"> L98: <include name="lang-expression/asm-*" /> L99: <include name="lang-painless/asm-*" /> L100: <include name="reindex/commons-codec-*" /> L101: <include name="reindex/commons-logging-*" /> L102: <include name="reindex/httpclient-*" /> L103: <include name="reindex/httpcore-4*" /> L104: </fileset> L105: </delete> L106: </target> L107:</project>...
    github.com/codelibs/fess/module.xml
    Fri Oct 25 12:43:59 UTC 2024
      4.5K bytes
  9. ApiAdminPathmapAction.java

    buildThrowableMessage(e))); L103: } L104: return asJson(new ApiResult.ApiUpdateResponse().id(entity.getId()).created(false).status(ApiResult.Status.OK).result()); L105: } L106: L107: // DELETE /api/admin/pathmap/setting/{id} L108: @Execute L109: public JsonResponse<ApiResult> delete$setting(final String id) { L110: final PathMapping entity = pathMappingService.getPathMapping(id).orElseGet(() -> { L111: throwValidationErrorApi(messages -> messages.addErrorsCrud...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.6K bytes
  10. ApiAdminRelatedcontentAction.java

    ApiUpdateResponse().id(relatedContent.getId()).created(false).status(Status.OK).result()); L115: } L116: L117: // DELETE /api/admin/relatedcontent/setting/{id} L118: @Execute L119: public JsonResponse<ApiResult> delete$setting(final String id) { L120: relatedContentService.getRelatedContent(id).ifPresent(entity -> { L121: try { L122: relatedContentService.delete(entity); L123: saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); L124:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.4K bytes
Back to top