Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for bucket_with_underscores (0.27 seconds)

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

  1. 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)
  2. 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)
  3. 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