Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 288 for delete (0.04 sec)

  1. RoleService.java

    ComponentUtil.getLdapManager().insert(role); L69: L70: roleBhv.insertOrUpdate(role, op -> { L71: op.setRefreshPolicy(Constants.TRUE); L72: }); L73: L74: } L75: L76: public void delete(final Role role) { L77: ComponentUtil.getLdapManager().delete(role); L78: L79: roleBhv.delete(role, op -> { L80: op.setRefreshPolicy(Constants.TRUE); L81: }); L82: L83: userBhv.selectCursor(cb -> cb.query().setRoles_Equal(role.getId()), entity -> { L84: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.4K bytes
  2. ApiAdminSuggestAction.java

    ult.Status.OK).result()); L39: } L40: L41: // DELETE /api/admin/suggest/all L42: @Execute L43: public JsonResponse<ApiResult> delete$all() { L44: if (!suggestHelper.deleteAllWords()) { L45: throwValidationErrorApi(messages -> messages.addErrorsFailedToDeleteDocInAdmin(GLOBAL)); L46: } L47: return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result()); L48: } L49: L50: // DELETE /api/admin/suggest/document L51: @Execute L52: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.6K bytes
  3. CharMappingFile.java

    L296: if (isCommit) { L297: try { L298: dictionaryManager.store(CharMappingFile.this, newFile); L299: } finally { L300: newFile.delete(); L301: } L302: } else { L303: newFile.delete(); L304: } L305: } L306: } L307: L308:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      10.2K bytes
  4. plugin.xml

    value="https://oss.sonatype.org/content/repositories/snapshots" /> L8: <property name="maven.release.repo.url" value="https://oss.sonatype.org/content/repositories/releases" /> L9: L10: <target name="install.plugins"> L11: <mkdir dir="${target.dir}" /> L12: <delete dir="${plugins.dir}" /> L13: <mkdir dir="${plugins.dir}" /> L14: <!-- analysis-extension --> L15: <antcall target="install.plugin"> L16: <param name="repo.url" value="${maven.release.repo.url}" /> L17: <param name="plugin.groupId" value="o...
    github.com/codelibs/fess/plugin.xml
    Fri Oct 25 23:33:43 UTC 2024
      3.5K bytes
  5. ApiAdminUserAction.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/user/setting/{id} L108: @Execute L109: public JsonResponse<ApiResult> delete$setting(final String id) { L110: final User entity = userService.getUser(id).orElseGet(() -> { L111: throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.8K bytes
  6. admin_searchlist.jsp

    rmation"/> L206: </p> L207: <p> L208: <strong id="delete-doc-title"></strong><br/> <span L209: id="delete-doc-url"></span> L210: </p> L211: </div> L212: <div class="modal-footer...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Sep 24 13:09:22 UTC 2020
      20K bytes
  7. ApiAdminRelatedqueryAction.java

    ApiUpdateResponse().id(relatedQuery.getId()).created(false).status(Status.OK).result()); L117: } L118: L119: // DELETE /api/admin/relatedquery/setting/{id} L120: @Execute L121: public JsonResponse<ApiResult> delete$setting(final String id) { L122: relatedQueryService.getRelatedQuery(id).ifPresent(entity -> { L123: try { L124: relatedQueryService.delete(entity); L125: saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); L126: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.6K bytes
  8. AdminEsreqAction.java

    response.getContentAsStream()) { L100: CopyUtil.copy(in, tempFile); L101: } catch (final Exception e1) { L102: if (tempFile != null && tempFile.exists() && !tempFile.delete()) { L103: logger.warn("Failed to delete {}", tempFile.getAbsolutePath()); L104: } L105: throw e1; L106: } L107: return asStream("es_" + ComponentUtil.getSystemHelper().getCurrentTimeAsLong()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.2K bytes
  9. login.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/log...
    Wed Sep 12 06:47:49 UTC 2018
      1.3K bytes
  10. ApiAdminDictProtwordsAction.java

    lueOf(entity.getId())).created(false).status(ApiResult.Status.OK).result()); L104: } L105: L106: // DELETE /api/admin/dict/protwords/setting/{dictId}/{id} L107: @Execute L108: public JsonResponse<ApiResult> delete$setting(final String dictId, final long id) { L109: protwordsService.getProtwordsItem(dictId, id).ifPresent(entity -> { L110: protwordsService.delete(dictId, entity); L111: saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); L112:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.2K bytes
Back to top