- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 532 for store1 (0.09 sec)
-
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
dataMap.put("title", "Test Document"); // Execute indexUpdateCallback.store(paramMap, dataMap); // Verify assertEquals(1, indexUpdateCallback.getDocumentSize()); // Check if fields were added (they should be added by the store method) assertNotNull("ID should be set", dataMap.get("id"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
if (url != null) { return url; } return id; } } /** * Statistics data object that stores timestamped events and maintains reference counting. * Extends LinkedHashMap to store event names mapped to their timestamps. * Includes reference counting for multi-threaded access tracking. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
// Add some info to map crawlingInfoHelper.putToInfoMap("url_count", "100"); crawlingInfoHelper.putToInfoMap("error_count", "5"); // Store with create=true crawlingInfoHelper.store(sessionId, true); // Verify infoMap is cleared assertNull(crawlingInfoHelper.infoMap); } public void test_store_existing() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
if (this.stores[_i] == null) { this.stores[_i] = new DfsStorageInfo(); } this.stores[_i].decode(_src); } } } } /** * Array structure for DFS enumeration containing level 3 information */ public static class DfsEnumArray3 extends NdrObject {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
mockwebserver-junit5/src/main/kotlin/mockwebserver3/junit5/internal/StartStopExtension.kt
val server = field.get(null) as? MockWebServer ?: continue // Put the instance in the store, so JUnit closes it for us in afterAll. store.put(field, server) server.start() } } override fun beforeEach(context: ExtensionContext) { val testInstance = context.testInstance.get() val store = context.getStore(Namespace.create(StartStop::class.java)) val instanceFields =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jun 19 11:44:16 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/SLinkedList.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/PropertiesUtilTest.java
PropertiesUtil.store(outProperties, outputStream, "comments"); CloseableUtil.close(outputStream); final Properties properties = new Properties(); PropertiesUtil.load(properties, file); assertThat(properties.getProperty("a"), is("A")); } /** * Test method for * {@link org.codelibs.core.io.PropertiesUtil#store(Properties, java.io.Writer, String)} * .
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 9.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumResponseTest.java
void testReadDataWireFormatMultipleShares() throws Exception { int numShares = 3; String[] shareNames = { "SHARE1", "ADMIN$", "IPC$" }; int[] shareTypes = { 0, 0x8000, 3 }; // Disk, Hidden flag (stored in 2 bytes), IPC String[] remarks = { "First share", "Admin share", "IPC share" }; // Set converter and number of entries setConverter(response, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/WebApiUtil.java
} /** * Validates the current request by checking for stored web API exceptions. * Throws any stored WebApiException if found. * * @throws WebApiException If a web API exception was previously stored */ public static void validate() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStore.java
*/ public interface DataStore { /** * Store the data. * @param config The data configuration. * @param callback The callback. * @param initParamMap The initial parameters. */ void store(DataConfig config, IndexUpdateCallback callback, DataStoreParams initParamMap); /** * Stop the data store. */ void stop();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0)