Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 288 for delete (0.04 sec)

  1. log4j2.xml

    <SizeBasedTriggeringPolicy size="100 MB" /> L26: </Policies> L27: <DefaultRolloverStrategy fileIndex="max" min="1" L28: max="${backup.max.history}" compressionLevel="9"> L29: <Delete basePath="${log.file.basedir}"> L30: <IfFileName glob="${domain.name}*.log.gz" /> L31: <IfLastModified age="P${backup.max.age}D" /> L32: </Delete> L33: </DefaultRolloverStrategy> L34: </RollingFile> L35: <RollingFile name="AuditFile" fileName="${log.file.basedir}/audit.log" L36: filePattern="${log.file.base...
    github.com/codelibs/fess/src/main/resources/log...
    Mon Feb 20 13:17:33 UTC 2023
      3.7K bytes
  2. fess_label_ru.properties

    ton_finish=Skip L506:labels.search_list_configuration=Search L507:labels.search_list_button_delete=Удалить L508:labels.search_list_delete_confirmation=Do you really want to delete? L509:labels.search_list_button_delete_all=Delete all with this query L510:labels.search_list_delete_all_confirmation=Do you really want to delete all with this query? L511:labels.search_list_button_cancel=Cancel L512:labels.failure_url_configuration=Failure URL L513:labels.failure_url_search_url=URL L514:labels.failur...
    github.com/codelibs/fess/src/main/resources/fes...
    Fri Mar 22 11:58:34 UTC 2024
      45.6K bytes
  3. PathMappingService.java

    pathMappingBhv.insertOrUpdate(pathMapping, op -> { L66: op.setRefreshPolicy(Constants.TRUE); L67: }); L68: L69: ComponentUtil.getPathMappingHelper().init(); L70: } L71: L72: public void delete(final PathMapping pathMapping) { L73: L74: pathMappingBhv.delete(pathMapping, op -> { L75: op.setRefreshPolicy(Constants.TRUE); L76: }); L77: L78: ComponentUtil.getPathMappingHelper().init(); L79: } L80: L81: public List<PathMapping> getPathMappingList(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.7K bytes
  4. AuthenticationManager.java

    boolean changePassword(final String username, final String password) { L34: return chains().get(stream -> stream.allMatch(c -> c.changePassword(username, password))); L35: } L36: L37: public void delete(final User user) { L38: chains().of(stream -> stream.forEach(c -> c.delete(user))); L39: } L40: L41: public User load(final User user) { L42: User u = user; L43: for (final AuthenticationChain chain : chains) { L44: u = chain.load(u); L45: } L46:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.8K bytes
  5. fess_message_ru.properties

    pdate_crud_table=Failed to update the data. ({0}) L140:errors.crud_failed_to_delete_crud_table=Failed to delete the data. ({0}) L141:errors.crud_could_not_find_crud_table=Could not find the data({0}). L142: L143:success.update_crawler_params=Updated parameters. L144:success.delete_doc_from_index=Started a process to delete the document from index. L145:success.crawling_info_delete_all=Deleted session data. L146:success.start_crawl_process=Started a crawl process. L147:success.upload_design_file=Uploaded...
    github.com/codelibs/fess/src/main/resources/fes...
    Fri May 20 12:12:28 UTC 2022
      10.2K bytes
  6. AdminDictStopwordsAction.java

    L304: @Execute L305: @Secured({ ROLE }) L306: public HtmlResponse delete(final EditForm form) { L307: verifyCrudMode(form.crudMode, CrudMode.DETAILS, form.dictId); L308: validate(form, messages -> {}, this::asDetailsHtml); L309: verifyToken(this::asDetailsHtml); L310: stopwordsService.getStopwordsItem(form.dictId, form.id).ifPresent(entity -> { L311: stopwordsService.delete(form.dictId, entity); L312: saveInfo(messages -> messages.addSuc...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      16.7K bytes
  7. AdminGroupAction.java

    @Execute L231: @Secured({ ROLE }) L232: public HtmlResponse delete(final EditForm form) { L233: verifyCrudMode(form.crudMode, CrudMode.DETAILS); L234: validate(form, messages -> {}, this::asDetailsHtml); L235: verifyToken(this::asDetailsHtml); L236: final String id = form.id; L237: groupService.getGroup(id).ifPresent(entity -> { L238: try { L239: groupService.delete(entity); L240: saveInfo(messages -> messages.addSu...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13.2K bytes
  8. ApiAdminSearchlistAction.java

    L185: return asJson( L186: new ApiUpdateResponse().id(doc.get(fessConfig.getIndexFieldDocId()).toString()).created(false).status(Status.OK).result()); L187: } L188: L189: // DELETE /api/admin/searchlist/doc/{doc_id} L190: @Execute L191: public JsonResponse<ApiResult> delete$doc(final String id) { L192: try { L193: final QueryBuilder query = QueryBuilders.termQuery(fessConfig.getIndexFieldDocId(), id); L194: searchEngineClient.deleteByQuer...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Jul 24 09:03:45 UTC 2024
      10.2K bytes
  9. fess_label.properties

    =Start Crawling L569:labels.wizard_button_finish=Skip L570:labels.search_list_configuration=Search L571:labels.search_list_button_delete=Delete L572:labels.search_list_delete_confirmation=Do you really want to delete? L573:labels.search_list_button_delete_all=Delete all with this query L574:labels.search_list_delete_all_confirmation=Do you really want to delete all with this query? L575:labels.search_list_button_cancel=Cancel L576:labels.failure_url_configuration=Failure URL L577:labels.failure_url_search_url=URL...
    github.com/codelibs/fess/src/main/resources/fes...
    Fri Mar 22 11:58:34 UTC 2024
      40.7K bytes
  10. ApiAdminCrawlinginfoAction.java

    e(GLOBAL, id)); L72: return null; L73: })).status(Status.OK).result()); L74: } L75: L76: // DELETE /api/admin/crawlinginfo/log/{id} L77: @Execute L78: public JsonResponse<ApiResult> delete$log(final String id) { L79: crawlingInfoService.getCrawlingInfo(id).ifPresent(entity -> { L80: try { L81: crawlingInfoService.delete(entity); L82: saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL)); L83: }...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.9K bytes
Back to top