- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 176 for store2 (0.04 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) -
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) -
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) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
crawlingConfigMap.remove(sessionCountId); } /** * Retrieves a stored crawling configuration from the session-based storage. * * @param sessionCountId the session count ID of the configuration to retrieve * @return the stored CrawlingConfig or null if not found */ public CrawlingConfig get(final String sessionCountId) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
} if (!docMap.containsKey(Constants.SCORE)) { final float score = hit.getScore(); if (Float.isFinite(score)) { docMap.put(Constants.SCORE, score); } } docMap.put(fessConfig.getIndexFieldId(), hit.getId());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
// Test store method DataStoreParams params = new DataStoreParams(); Map<String, Object> data = new HashMap<>(); data.put("key1", "value1"); callback.store(params, data); assertEquals(1L, callback.getDocumentSize()); assertEquals(100L, callback.getExecuteTime()); // Test multiple stores callback.store(params, data);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.crawling_info_DataCrawlExecTime=Crawl Execution Time (Data Store) labels.crawling_info_DataCrawlStartTime=Crawl Start Time (Data Store) labels.crawling_info_DataCrawlEndTime=Crawl End Time (Data Store) labels.crawling_info_DataIndexExecTime=Indexing Execution Time (Data Store) labels.crawling_info_DataIndexSize=Index Size (Data Store) labels.webauth_configuration=Web Authentication labels.webauth_list_hostname=Hostname
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
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/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/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)