- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 407 for store1 (0.08 sec)
-
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
} // Test multiple data store registration public void test_multipleDataStores() { TestDataStore dataStore1 = new TestDataStore("Store1"); TestDataStore2 dataStore2 = new TestDataStore2("Store2"); dataStoreFactory.add("store1", dataStore1); dataStoreFactory.add("store2", dataStore2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0) -
okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/Story.kt
* limitations under the License. */ package okhttp3.internal.http2.hpackjson /** * Representation of one story, a set of request headers to encode or decode. This class is used * reflectively with Moshi to parse stories from files. */ data class Story( val description: String? = null, val cases: List<Case>, val fileName: String? = null, ) { // Used as the test name.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java
* This interface provides methods for storing documents, tracking processing metrics, * and committing changes to the search index. */ public interface IndexUpdateCallback { /** * Stores a document in the search index with the specified parameters and data. * * @param paramMap the data store parameters containing configuration and metadata
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
public OptionalEntity<FailureUrl> getFailureUrl(final String id) { return failureUrlBhv.selectByPK(id); } /** * Stores or updates a failure URL entity in the data store. * * @param failureUrl the FailureUrl entity to store or update */ public void store(final FailureUrl failureUrl) { failureUrlBhv.insertOrUpdate(failureUrl, op -> { op.setRefreshPolicy(Constants.TRUE);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/DataStoreParams.java
*/ package org.codelibs.fess.entity; import java.util.HashMap; import java.util.Map; /** * Parameter container class for data store configurations and runtime parameters. * This class provides a convenient wrapper around a Map to store and retrieve * data store specific parameters with type-safe access methods. * * <p>The class uses a ParamMap internally which provides case format conversion
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/helper/CrawlingInfoHelper.java
return sessionId.substring(0, idx); } return sessionId; } /** * Stores crawling information and parameters for the specified session. * Creates a new crawling info record if none exists or if create flag is true. * Also stores any accumulated information parameters and clears the info map. * * @param sessionId the session ID for the crawling information
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
return g; }); } /** * 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);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt
* bytes in length. * * The cache stores its data in a directory on the filesystem. This directory must be exclusive to * the cache; the cache may delete or overwrite files from its directory. It is an error for * multiple processes to use the same cache directory at the same time. * * This cache limits the number of bytes that it will store on the filesystem. When the number of
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 34.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractSetMultimap.java
* values. */ @Override public Map<K, Collection<V>> asMap() { return super.asMap(); } /** * 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} if the method increased the size of the multimap, or {@code false} if the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 20 13:05:10 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* This factory maintains a registry of data store implementations and provides methods * to register, retrieve, and discover available data stores. * * <p>Data stores are registered by name and class name, allowing flexible lookup. * The factory also supports dynamic discovery of data store plugins by scanning * JAR files for data store configurations.</p> *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0)