- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for my (1.94 sec)
-
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) -
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) -
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) -
src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponseTest.java
} @Test public void test_getIndex() throws Exception { List<String> words = new ArrayList<>(); PopularWordsResponse response = new PopularWordsResponse("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: Thu Nov 13 00:40:54 UTC 2025 - 5.6K bytes - Viewed (0) -
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) -
MIGRATION.md
#### Document Migration **Step 1: Export from Source** Export documents from your existing Elasticsearch/OpenSearch cluster: ```bash # Using elasticdump elasticdump \ --input=http://old-es-server:9200/my-index \ --output=documents.json \ --type=data ``` **Step 2: Convert to Fess Format** Transform documents to include Fess required fields. Example transformation script: ```python import json
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 12:40:11 UTC 2025 - 23.2K bytes - Viewed (0)