Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for rbracket (0.05 seconds)

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

  1. src/main/webapp/js/jquery-3.7.1.min.map

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 131.6K bytes
    - Click Count (0)
  2. src/main/webapp/js/admin/jquery-3.7.1.min.map

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 131.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java

        @Test
        public void testFormatForUrl() {
            // IPv6 addresses - should add brackets
            assertEquals("[::1]", IpAddressUtil.formatForUrl("::1"));
            assertEquals("[2001:db8::1]", IpAddressUtil.formatForUrl("2001:db8::1"));
            assertEquals("[fe80::1]", IpAddressUtil.formatForUrl("fe80::1"));
    
            // IPv6 addresses already with brackets - should not double-wrap
            assertEquals("[::1]", IpAddressUtil.formatForUrl("[::1]"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/util/IpAddressUtil.java

            }
        }
    
        /**
         * Formats an IP address string for use in a URL.
         * IPv6 addresses are wrapped in brackets, IPv4 addresses are returned as-is.
         *
         * @param address the IP address string to format
         * @return the formatted address (IPv6 with brackets, IPv4 unchanged)
         */
        public static String formatForUrl(final String address) {
            if (address == null) {
                return null;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java

                    .forEach(file -> {
                        try {
                            // The regex `^\\s*\\[\\[(.*)\\]\\]` looks for lines starting with '[[...]]'
                            // and captures the content within the brackets.
                            Files.readAllLines(file).forEach(line -> {
                                if (line.matches("^\\s*\\[\\[(.*)\\]\\].*")) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Aug 21 15:38:58 GMT 2025
    - 8.5K bytes
    - Click Count (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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