- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 382 for stor (0.4 sec)
-
src/main/resources/fess_message_pl.properties
errors.failed_to_upload_protwords_file = Nie można przesłać pliku Protwords. errors.failed_to_download_stopwords_file = Nie można pobrać pliku stop-słów. errors.failed_to_upload_stopwords_file = Nie można przesłać pliku stop-słów. errors.failed_to_download_elevate_file = Nie można pobrać pliku słów podniesionych. errors.failed_to_upload_elevate_file = Nie można przesłać pliku słów podniesionych.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
* Stores (inserts or updates) a related content entity. * After storing, updates the related content helper to refresh the cache. * * @param relatedContent the RelatedContent entity to store */ public void store(final RelatedContent relatedContent) { relatedContentBhv.insertOrUpdate(relatedContent, op -> op.setRefreshPolicy(Constants.TRUE)); ComponentUtil.getRelatedContentHelper().update(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/zh-cn/stopwords.txt
》 — - , 。 、 : ; ! · ? “ ” ) ( 【 】 [ ] ● # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese) # English Stop Words
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 17 08:00:22 UTC 2017 - 310 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
return new ThreadPoolExecutor(nThreads, nThreads, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue<>(nThreads), new ThreadPoolExecutor.CallerRunsPolicy()); } @Override public void store(final DataStoreParams paramMap, final Map<String, Object> dataMap) { final CrawlerStatsHelper crawlerStatsHelper = ComponentUtil.getCrawlerStatsHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
*/ public OptionalEntity<KeyMatch> getKeyMatch(final String id) { return keyMatchBhv.selectByPK(id); } /** * Store a key match. * * @param keyMatch The key match to store. */ public void store(final KeyMatch keyMatch) { keyMatchBhv.insertOrUpdate(keyMatch, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
* Stores a group by inserting or updating it in both LDAP and the database. * Uses refresh policy to ensure immediate availability of the stored data. * * @param group the group entity to store */ public void store(final Group group) { ComponentUtil.getLdapManager().insert(group); groupBhv.insertOrUpdate(group, op -> { op.setRefreshPolicy(Constants.TRUE); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/SearchBody.java
*/ package org.codelibs.fess.app.web.api.admin.dict.stopwords; import org.codelibs.fess.app.web.api.admin.dict.BaseSearchDictBody; /** * Search request body for stop words dictionary administration. * Extends BaseSearchDictBody with stop words dictionary-specific search parameters. */ public class SearchBody extends BaseSearchDictBody { /** * Default constructor for SearchBody. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
* If data appending is enabled and the key already exists, values are combined into arrays. * * @param dataMap the data map to modify * @param key the key to store the value under * @param value the value to store */ default void putResultDataBody(final Map<String, Object> dataMap, final String key, final Object value) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/resources/mail/crawler.dfmail
Exec Time: /*pmb.webFsIndexExecTime:orElse('-')*/ ms Num of Doc: /*pmb.webFsIndexSize:orElse('-')*/ docs --- Data Store Crawler --- Start Time: /*pmb.dataCrawlStartTime:orElse('-')*/ End Time: /*pmb.dataCrawlEndTime:orElse('-')*/ Exec Time: /*pmb.dataCrawlExecTime:orElse('-')*/ ms --- Data Store Indexer --- Exec Time: /*pmb.dataIndexExecTime:orElse('-')*/ ms Num of Doc: /*pmb.dataIndexSize:orElse('-')*/ docs
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Jan 15 22:05:20 UTC 2020 - 1K bytes - Viewed (0)