Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 22 for my (0.01 seconds)

  1. 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)
  2. 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)
  3. src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java

            assertTrue(goAction.isFileSystemPath("storage://my-storage/"));
        }
    
        @Test
        public void test_isFileSystemPath_s3_protocol() {
            assertTrue(goAction.isFileSystemPath("s3://bucket/path/to/file.txt"));
            assertTrue(goAction.isFileSystemPath("s3://my-bucket/folder/document.pdf"));
            assertTrue(goAction.isFileSystemPath("s3://bucket/"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  4. src/main/webapp/css/admin/bootstrap.min.css

    t}.vh-100{height:100vh!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!impo...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 158.5K bytes
    - Click Count (0)
  5. 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)
  6. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

        }
    
        @Test
        public void test_buildHtml_titleContentLangNotInMeta() {
            final Map<String, Object> source = new LinkedHashMap<>();
            source.put("title", "My Title");
            source.put("content", "My Content");
            source.put("lang", "ja");
            source.put("url", "https://example.com/");
    
            final String html = new HtmlIndexExportFormatter().format(source, Collections.emptySet());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  7. 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)
  8. src/main/webapp/css/bootstrap.min.css

    mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 227.5K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java

        }
    
        @Test
        public void test_constructorWithString_specialCharacters() {
            // Test with message containing special characters
            String message = "Job not found: \"My Job\" with params: {id=123, type='test'}";
    
            JobNotFoundException exception = new JobNotFoundException(message);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

        }
    
        @Test
        public void test_regenerateQuery_userInputIsWrapped() {
            client.setChatResponse("{\"query\": \"result\", \"reasoning\": \"test\"}");
    
            client.regenerateQuery("my question", "my query", "no_results", Collections.emptyList());
    
            final LlmChatRequest capturedRequest = client.getLastChatRequest();
            final List<LlmMessage> messages = capturedRequest.getMessages();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
Back to Top