- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 407 for store2 (0.03 sec)
-
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
ingestFactory = ComponentUtil.getIngestFactory(); } } /** * Stores a document in the index after processing and validation. * Handles document transformation, field addition, and batched indexing. * * @param paramMap the data store parameters * @param dataMap the document data to store * @throws DataStoreException if required fields are missing or other errors occur */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
} /** * Stores a file configuration in the database. * This method encrypts the configuration parameters before saving and * performs an insert or update operation based on whether the configuration exists. * * @param fileConfig the file configuration to be stored */ public void store(final FileConfig fileConfig) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
*/ public OptionalEntity<Role> getRole(final String id) { return roleBhv.selectByPK(id); } /** * Stores a role. * @param role The role to store. */ public void store(final Role role) { ComponentUtil.getLdapManager().insert(role); roleBhv.insertOrUpdate(role, op -> { op.setRefreshPolicy(Constants.TRUE);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
return relatedQueryBhv.selectByPK(id); } /** * Stores (inserts or updates) a related query in the database. * After storing, the related query helper is updated to refresh the cache. * * @param relatedQuery the RelatedQuery entity to store */ public void store(final RelatedQuery relatedQuery) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
return relatedContentBhv.selectByPK(id); } /** * 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) {
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/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java
return this; } /** * Gets the name of the feature store. * * @return The store name. */ public String storeName() { return storeName; } /** * Sets the name of the feature store. * * @param storeName The store name. * @return This query builder. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
updateUserSessionId(userCode); } return userCode; }).orElse(null); } /** * Extracts the user code from the user bean stored in the session. * This method retrieves the authenticated user information and creates an encrypted user code. * * @param request the HTTP servlet request
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractListMultimap.java
return (List<V>) super.replaceValues(key, values); } /** * Stores a key-value pair in the multimap. * * @param key key to store in the multimap * @param value value to store in the multimap * @return {@code true} always */ @CanIgnoreReturnValue @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Apr 12 15:07:59 UTC 2025 - 4.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/LinkedListMultimap.java
public boolean containsValue(@Nullable Object value) { return values().contains(value); } // Modification Operations /** * Stores a key-value pair in the multimap. * * @param key key to store in the multimap * @param value value to store in the multimap * @return {@code true} always */ @CanIgnoreReturnValue @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
return boostDocumentRuleBhv.selectByPK(id); } /** * Stores (inserts or updates) a boost document rule. * @param boostDocumentRule The boost document rule to store. */ public void store(final BoostDocumentRule boostDocumentRule) { boostDocumentRuleBhv.insertOrUpdate(boostDocumentRule, op -> op.setRefreshPolicy(Constants.TRUE));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0)