Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 290 for stone (0.05 sec)

  1. docs/ko/docs/virtual-environments.md

    그리고 다시 `마법사의 돌(philosophers-stone)`을 실행하려고 하면, **작동하지** 않을 수 있습니다. 왜냐하면 이 프로그램은 `harry` `v1`버전을 필요로 하기 때문입니다.
    
    ```mermaid
    flowchart LR
        subgraph global[global env]
            harry-1[<strike>harry v1</strike>]
            style harry-1 fill:#ccc,stroke-dasharray: 5 5
            harry-3[harry v3]
        end
        subgraph stone-project[philosophers-stone project]
            stone(philosophers-stone) -.-x|⛔️| harry-1
        end
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:10:41 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  2. docs/ja/docs/virtual-environments.md

    flowchart LR
        subgraph global[global env]
            harry-1[<strike>harry v1</strike>]
            style harry-1 fill:#ccc,stroke-dasharray: 5 5
            harry-3[harry v3]
        end
        subgraph stone-project[philosophers-stone project]
            stone(philosophers-stone) -.-x|⛔️| harry-1
        end
        subgraph azkaban-project[prisoner-of-azkaban project]
            azkaban(prisoner-of-azkaban) --> |requires| harry-3
        end
    ```
    
    /// tip | 豆知識
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Mar 19 12:22:33 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. internal/stmt_store/stmt_store.go

    	if stmt.Stmt != nil {
    		return stmt.Stmt.Close()
    	}
    	return nil
    }
    
    // Store defines an interface for managing the caching operations of SQL statements (Stmt).
    // This interface provides methods for creating new statements, retrieving all cache keys,
    // getting cached statements, setting cached statements, and deleting cached statements.
    type Store interface {
    	// New creates a new Stmt object and caches it.
    	// Parameters:
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun Apr 27 06:05:16 UTC 2025
    - 6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top