Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for bucket_with_underscores (0.64 seconds)

  1. src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java

            url = "s3://bucket-with-dashes/file";
            exp = "bucket-with-dashes";
            assertEquals(exp, transformer.getHostOnFile(url));
    
            url = "gcs://bucket_with_underscores/file";
            exp = "bucket_with_underscores";
            assertEquals(exp, transformer.getHostOnFile(url));
    
        }
    
        @Test
        public void test_getHost_unexpected() {
            String url, exp;
    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)
  2. src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java

            assertEquals("gcs://bucket-with-dashes/path", wizardAction.convertCrawlingPath("gcs://bucket-with-dashes/path"));
            assertEquals("gcs://bucket_with_underscores/path", wizardAction.convertCrawlingPath("gcs://bucket_with_underscores/path"));
        }
    
        @Test
        public void test_convertCrawlingPath_s3_with_special_characters() {
            // S3 paths with special characters in object keys
    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)
  3. src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java

            assertTrue(goAction.isFileSystemPath("gcs://bucket/"));
            assertTrue(goAction.isFileSystemPath("gcs://my-bucket-name/deep/nested/path/file.txt"));
            assertTrue(goAction.isFileSystemPath("gcs://bucket_with_underscores/file"));
        }
    
        @Test
        public void test_isFileSystemPath_http_protocol_not_file_system() {
            assertFalse(goAction.isFileSystemPath("http://example.com/path/file.txt"));
    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/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java

            assertTrue(protocolHelper.isValidFileProtocol("gcs://bucket-with-dashes/path"));
            assertTrue(protocolHelper.isValidFileProtocol("gcs://bucket_with_underscores/path"));
            assertTrue(protocolHelper.isValidFileProtocol("gcs://bucket/path/to/deep/nested/file.txt"));
            assertTrue(protocolHelper.isValidFileProtocol("gcs://bucket/path/ファイル.txt"));
    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)
Back to Top