Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for store (0.02 sec)

  1. fess_label_en.properties

    ndexSize=Index size (Web/File system) L479:labels.crawling_info_DataCrawlExecTime=Crawl exec time (Data store) L480:labels.crawling_info_DataCrawlStartTime=Crawl start time (Data store) L481:labels.crawling_info_DataCrawlEndTime=Crawl end time (Data store) L482:labels.crawling_info_DataIndexExecTime=Indexing exec time (Data store) L483:labels.crawling_info_DataIndexSize=Index size (Data store) L484:labels.webauth_configuration=Web Authentication L485:labels.webauth_list_hostname=Hostname L486:la...
    github.com/codelibs/fess/src/main/resources/fes...
    Fri Mar 22 11:58:34 UTC 2024
      40.7K bytes
  2. CrawlingInfoHelper.java

    } L70: return sessionId; L71: } L72: L73: public synchronized void store(final String sessionId, final boolean create) { L74: CrawlingInfo crawlingInfo = create ? null : getCrawlingInfoService().getLast(sessionId); L75: if (crawlingInfo == null) { L76: crawlingInfo = new CrawlingInfo(sessionId); L77: try { L78: getCrawlingInfoService().store(crawlingInfo); L79: } catch (final Exception e) { L80: throw...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.6K bytes
  3. README.md

    /fess_admin_dashboard.png) L52: L53:You can register crawling targets in the Admin UI on the (Web, File, Data Store) crawler configuration pages, and then start the Crawler manually on the [Scheduler page](https://fess.codelibs.org/14.17/admin/scheduler-guide.html). L54: L55:## Migration from another search provider L56: L57:Please see [MIGRATION.md](MIGRATION.md). L58: L59:## Data Store L60: L61:Currently, Fess supports crawling the following [storage locations and APIs](https://fess.codelibs.o...
    github.com/codelibs/fess/README.md
    Sat Oct 12 07:19:47 UTC 2024
      7.3K bytes
  4. ScriptExecutorJob.java

    logger.debug("Job {} is running.", id); L84: } L85: return; L86: } L87: L88: TimeoutTask task = null; L89: try { L90: if (scheduledJob.isLoggingEnabled()) { L91: jobHelper.store(jobLog); L92: task = jobHelper.startMonitorTask(jobLog); L93: } L94: L95: if (logger.isDebugEnabled()) { L96: logger.debug("Starting Job {}. scriptType: {}, script: {}", id, scriptType, script); L97:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.3K bytes
  5. FailureUrlService.java

    }).createPageNumberList()); L64: L65: return failureUrlList; L66: } L67: L68: public OptionalEntity<FailureUrl> getFailureUrl(final String id) { L69: return failureUrlBhv.selectByPK(id); L70: } L71: L72: public void store(final FailureUrl failureUrl) { L73: L74: failureUrlBhv.insertOrUpdate(failureUrl, op -> { L75: op.setRefreshPolicy(Constants.TRUE); L76: }); L77: L78: } L79: L80: public void delete(final FailureUrl failureUrl) { L81:...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jun 24 01:20:42 UTC 2024
      6.3K bytes
  6. ApiAdminUserAction.java

    () -> { L71: throwValidationErrorApi(messages -> { L72: messages.addErrorsCrudFailedToCreateInstance(GLOBAL); L73: }); L74: return null; L75: }); L76: try { L77: userService.store(entity); L78: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L79: } catch (final Exception e) { L80: logger.warn("Failed to process a request.", e); L81: throwValidationErrorApi(messages...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.8K bytes
  7. ApiAdminRelatedqueryAction.java

    CreateBody body) { L81: validateApi(body, messages -> {}); L82: body.crudMode = CrudMode.CREATE; L83: final RelatedQuery relatedQuery = getRelatedQuery(body).map(entity -> { L84: try { L85: relatedQueryService.store(entity); L86: } catch (final Exception e) { L87: logger.warn("Failed to process a request.", e); L88: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)));...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.6K bytes
  8. ApiAdminDictProtwordsAction.java

    )); L78: return null; L79: }).orElseGet(() -> { L80: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateInstance(GLOBAL)); L81: return null; L82: }); L83: protwordsService.store(body.dictId, entity); L84: return asJson( L85: new ApiResult.ApiUpdateResponse().id(String.valueOf(entity.getId())).created(true).status(ApiResult.Status.OK).result()); L86: } L87: L88: // POST /api/admin/dict/protwords/setting/{dictId}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.2K bytes
  9. ApiAdminDictKuromojiAction.java

    L)); L78: return null; L79: }).orElseGet(() -> { L80: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateInstance(GLOBAL)); L81: return null; L82: }); L83: kuromojiService.store(body.dictId, entity); L84: return asJson( L85: new ApiResult.ApiUpdateResponse().id(String.valueOf(entity.getId())).created(true).status(ApiResult.Status.OK).result()); L86: } L87: L88: // POST /api/admin/dict/kuromoji/setting/{dictId}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      7.3K bytes
  10. AdminDuplicatehostAction.java

    CrudMode.CREATE); L185: validate(form, messages -> {}, this::asEditHtml); L186: verifyToken(this::asEditHtml); L187: getDuplicateHost(form).ifPresent(entity -> { L188: try { L189: duplicateHostService.store(entity); L190: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L191: } catch (final Exception e) { L192: logger.warn("Failed to process a request.", e); L193: throwValidationError(messages...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13.3K bytes
Back to top