- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 80 for store (0.04 sec)
-
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.mdSat Oct 12 07:19:47 UTC 2024 7.3K bytes -
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 -
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 -
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 -
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 -
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 -
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 -
DataStore.java
org.codelibs.fess.ds; L17: L18:import org.codelibs.fess.ds.callback.IndexUpdateCallback; L19:import org.codelibs.fess.entity.DataStoreParams; L20:import org.codelibs.fess.es.config.exentity.DataConfig; L21: L22:public interface DataStore { L23: L24: void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap); L25: L26: void stop(); L27: L28:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 962 bytes -
ApiAdminPathmapAction.java
{ L72: throwValidationErrorApi(messages -> { L73: messages.addErrorsCrudFailedToCreateInstance(GLOBAL); L74: }); L75: return null; L76: }); L77: try { L78: pathMappingService.store(entity); L79: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L80: } catch (final Exception e) { L81: logger.warn("Failed to process a request.", e); L82: throwValidationErrorApi(messages...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5.6K bytes -
ApiAdminRelatedcontentAction.java
{ L79: validateApi(body, messages -> {}); L80: body.crudMode = CrudMode.CREATE; L81: final RelatedContent relatedContent = getRelatedContent(body).map(entity -> { L82: try { L83: relatedContentService.store(entity); L84: } catch (final Exception e) { L85: logger.warn("Failed to process a request.", e); L86: 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.4K bytes