- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 260 for stone (0.02 sec)
-
docs/en/docs/virtual-environments.md
```mermaid flowchart LR subgraph global[global env] harry-1[harry v1] end subgraph stone-project[philosophers-stone project] stone(philosophers-stone) -->|requires| harry-1 end ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 22.4K bytes - Viewed (0) -
docs/en/data/github_sponsors.yml
- login: olexkram avatarUrl: https://avatars.githubusercontent.com/u/148793576?v=4 url: https://github.com/olexkram - login: 0ne-stone avatarUrl: https://avatars.githubusercontent.com/u/62360849?u=746dd21c34e7e06eefb11b03e8bb01aaae3c2a4f&v=4 url: https://github.com/0ne-stone - login: nayasinghania avatarUrl: https://avatars.githubusercontent.com/u/74111380?u=752e99a5e139389fdc0a0677122adc08438eb076&v=4
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 08:58:22 UTC 2025 - 21.3K bytes - Viewed (0) -
docs/en/docs/deployment/docker.md
Then you could want to have **a single container** with a **process manager** starting **several worker processes** inside. --- The main point is, **none** of these are **rules written in stone** that you have to blindly follow. You can use these ideas to **evaluate your own use case** and decide what is the best approach for your system, checking out how to manage the concepts of: * Security - HTTPS * Running on startup
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 29.5K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
commitCount.incrementAndGet(); } }; // Store some documents DataStoreParams params = new DataStoreParams(); Map<String, Object> data = new HashMap<>(); callback.store(params, data); callback.store(params, data); callback.store(params, data); assertEquals(3L, callback.getDocumentSize());
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/test/java/org/codelibs/fess/ds/DataStoreTest.java
params.put("key1", "value1"); params.put("key2", "value2"); IndexUpdateCallback callback = new TestIndexUpdateCallback(); // Execute store method dataStore.store(config, callback, params); // Verify store was called assertTrue(storeCalled.get()); assertNotNull(capturedConfig.get()); assertEquals("test-config", capturedConfig.get().getName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K 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) -
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) -
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/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/core/io/PropertiesUtil.java
* @param comments * Comments. */ public static void store(final Properties props, final OutputStream out, final String comments) { assertArgumentNotNull("props", props); assertArgumentNotNull("out", out); try { props.store(out, comments); } catch (final IOException e) { throw new IORuntimeException(e); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 7.9K bytes - Viewed (0)