- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for my (0.01 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java
assertEquals("s3://my-bucket/folder/file.txt", wizardAction.convertCrawlingPath("s3://my-bucket/folder/file.txt")); assertEquals("s3://bucket/", wizardAction.convertCrawlingPath("s3://bucket/")); assertEquals("s3://my-bucket-name/deep/nested/path/file.txt", wizardAction.convertCrawlingPath("s3://my-bucket-name/deep/nested/path/file.txt")); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
exp = "サーバー"; assertEquals(exp, transformer.getHostOnFile(url)); url = "s3://my-bucket/path/to/file"; exp = "my-bucket"; assertEquals(exp, transformer.getHostOnFile(url)); url = "gcs://my-bucket/path/to/file"; exp = "my-bucket"; assertEquals(exp, transformer.getHostOnFile(url)); url = "s3://bucket-with-dashes/file";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
} @Test public void test_addSearchLog_accessType_customLlmName() { final SearchLog searchLog = callCreateSearchLogAndGetResult("my-custom-llm"); assertEquals("my-custom-llm", searchLog.getAccessType()); } @Test public void test_addSearchLog_accessType_blankStringDefaultsToWeb() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 16.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
assertTrue(protocolHelper.isValidFileProtocol("gcs://bucket/path/to/file")); assertTrue(protocolHelper.isValidFileProtocol("s3://my-bucket/")); assertTrue(protocolHelper.isValidFileProtocol("gcs://my-bucket/folder/document.pdf")); assertFalse(protocolHelper.isValidWebProtocol("s3://bucket/path")); assertFalse(protocolHelper.isValidWebProtocol("gcs://bucket/path"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 35.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
// Test setId tag.setId("unique-id"); assertTrue(tag.toString().contains("id=unique-id")); // Test setCss tag.setCss("my-class"); assertTrue(tag.toString().contains("css=my-class")); // Test setAttr tag.setAttr("data-role", "button"); assertTrue(tag.toString().contains("attrName=data-role"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java
} @Test public void test_componentNameWithSpecialCharacters() { // Test component name with special characters String componentName = "my-component_v2.0@service"; ContainerNotAvailableException exception = new ContainerNotAvailableException(componentName, new RuntimeException());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/chat/ChatClientTest.java
final ChatMessage msg = createAssistantWithSources("A".repeat(1000), "My Doc"); final String result = chatClient.testBuildAssistantHistoryContent(msg, "source_titles", 500, 500); assertTrue(result.contains("... [truncated]")); assertTrue(result.contains("[Referenced documents: My Doc]")); } @Test public void test_sourceTitles_budgetEnforcesMaxChars() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 40.6K bytes - Click Count (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
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 12:40:11 GMT 2025 - 23.2K bytes - Click Count (0)