- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 407 for store1 (0.03 sec)
-
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
*/ public OptionalEntity<PathMapping> getPathMapping(final String id) { return pathMappingBhv.selectByPK(id); } /** * Stores a path mapping. * * @param pathMapping the path mapping to store */ public void store(final PathMapping pathMapping) { pathMappingBhv.insertOrUpdate(pathMapping, 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.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
return webAuthenticationBhv.selectByPK(id); } /** * Stores a web authentication configuration. * Parameters are encrypted before storage. * * @param webAuthentication The web authentication configuration to store */ public void store(final WebAuthentication webAuthentication) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java
return requestHeaderBhv.selectByPK(id); } /** * Stores a request header configuration to the database. * This method performs either insert or update based on whether the request header already exists. * * @param requestHeader the request header configuration to store */ public void store(final RequestHeader requestHeader) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
} /** * Stores (inserts or updates) a duplicate host configuration. * * <p>This method immediately refreshes the index to ensure the change is visible. * If the configuration already exists (based on ID), it will be updated; * otherwise, a new configuration will be created.</p> * * @param duplicateHost the duplicate host configuration to store
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/core/misc/DynamicProperties.java
return getProperties().size(); } @Override public void store(final OutputStream out, final String comments) throws IOException { getProperties().store(out, comments); } @Override public void store(final Writer writer, final String comments) throws IOException { getProperties().store(writer, comments); } @Override
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
} } /** * Inner thread class for executing data store crawling operations. * Each thread handles crawling for a single data configuration, * processing documents and updating the search index. * * <p>The thread manages:</p> * <ul> * <li>Data store initialization and document processing</li> * <li>Index update operations through callbacks</li>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
return getProtwordsFile(dictId).map(file -> file.get(id).get()); } /** * Stores a protected words item (insert or update). * @param dictId the dictionary ID * @param protwordsItem the item to store */ public void store(final String dictId, final ProtwordsItem protwordsItem) { getProtwordsFile(dictId).ifPresent(file -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleTypeService.java
*/ public OptionalEntity<RoleType> getRoleType(final String id) { return roleTypeBhv.selectByPK(id); } /** * Stores a role type. * @param roleType The role type to store. */ public void store(final RoleType roleType) { roleTypeBhv.insertOrUpdate(roleType, 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.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
} /** * Stores a character mapping item in the specified dictionary. * <p> * This method performs either an insert operation (for new items with ID 0) * or an update operation (for existing items with non-zero ID) depending on * the item's current state. * </p> * * @param dictId the dictionary ID to store the character mapping item in
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CacheControl.kt
import okhttp3.internal.commonToString /** * A Cache-Control header with cache directives from a server or client. These directives set policy * on what responses can be stored, and which requests can be satisfied by those stored responses. * * See [RFC 7234, 5.2](https://tools.ietf.org/html/rfc7234#section-5.2). */ class CacheControl internal constructor( /**
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 10K bytes - Viewed (0)