Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for bucket_with_underscores (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  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/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