Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for my (1.1 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java

        public void test_urlParsing_hyphenatedBucket() throws Exception {
            URL url = new URL("gcs://my-bucket-name/object.txt");
            Handler handler = new Handler();
            URLConnection conn = handler.openConnection(url);
    
            Handler.GcsURLConnection gcsConn = (Handler.GcsURLConnection) conn;
    
            assertEquals("my-bucket-name", getField(gcsConn, "bucketName"));
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java

        public void test_urlParsing_hyphenatedBucket() throws Exception {
            URL url = new URL("storage://my-bucket-name/object.txt");
            Handler handler = new Handler();
            URLConnection conn = handler.openConnection(url);
    
            Handler.StorageURLConnection storageConn = (Handler.StorageURLConnection) conn;
    
            assertEquals("my-bucket-name", getField(storageConn, "bucketName"));
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/request/suggest/SuggestResponseTest.java

        }
    
        @Test
        public void test_getIndex() throws Exception {
            List<String> words = new ArrayList<>();
            SuggestResponse response = new SuggestResponse("my-index", 50, words, 5, new ArrayList<>());
    
            assertEquals("my-index", response.getIndex());
        }
    
        @Test
        public void test_getTookMs() throws Exception {
            List<String> words = new ArrayList<>();
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  4. CLAUDE.md

    - **Deferred/Promise**: Async operations
    
    ### Index Alias Strategy
    
    Zero-downtime index updates using dual aliases:
    
    ```
    Index Naming: {baseIndex}.{timestamp}
    Example:      my-suggest.20250123120000
    
    Aliases:
    ├── Search Alias: {baseIndex}          (read operations)
    └── Update Alias: {baseIndex}.update   (write operations)
    ```
    
    ### Text Processing Pipeline
    
    ```
    Input Text
        ↓
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top