Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for rbracket (0.1 seconds)

  1. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            final Path result =
                    indexExportJob.buildFilePath(tempDir.toString(), "file:///data/[logs]/access.log", new HtmlIndexExportFormatter());
            assertNotNull(result);
            // Brackets are invalid in URI syntax, so this should fall back to _invalid/hash path
            assertTrue(result.toString().startsWith(tempDir.toString() + "/_invalid/"));
            assertTrue(result.toString().endsWith(".html"));
        }
    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)
  2. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

        }
    
        @Test
        public void test_normalizeCanonicalUrl_withBrackets() throws Exception {
            final FessXpathTransformer transformer = new FessXpathTransformer();
            // topic/2732: java.net.URL accepts brackets in paths unlike java.net.URI
            final String value = transformer.normalizeCanonicalUrl("http://example.com/", "/path/[id]/page");
            assertEquals("http://example.com/path/[id]/page", value);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  3. src/main/resources/fess_config.properties

    domain.title = Fess
    
    # Search Engine
    
    # The type of search engine backend (e.g., default, opensearch).
    search_engine.type=default
    # The URL of the search engine HTTP endpoint.
    # For IPv6 environments, use brackets around the IPv6 address (e.g., http://[::1]:9201)
    search_engine.http.url=http://localhost:9201
    # Path to SSL certificate authorities for secure HTTP connections.
    search_engine.http.ssl.certificate_authorities=
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. http://localhost:9201 <br>
         * comment: <br>
         * The URL of the search engine HTTP endpoint.<br>
         * For IPv6 environments, use brackets around the IPv6 address (e.g., http://[::1]:9201)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getSearchEngineHttpUrl();
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top