Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for lomma (0.02 seconds)

  1. src/main/java/org/codelibs/fess/exec/Crawler.java

     *   -n, --name name               : Name for the crawling session
     *   -w, --webConfigIds ids        : Comma-separated web config IDs
     *   -f, --fileConfigIds ids       : Comma-separated file config IDs
     *   -d, --dataConfigIds ids       : Comma-separated data config IDs
     *   -p, --properties path         : Properties file path
     *   -e, --expires days            : Expires for documents (in days)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 32.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/RequestParameterTest.java

            // Test toString with special characters
            String name = "special[]param";
            String[] values = { "[value]", ",comma,", "quote\"test" };
            RequestParameter param = new RequestParameter(name, values);
    
            String expected = "[special[]param, [[value], ,comma,, quote\"test]]";
            assertEquals(expected, param.toString());
        }
    
        @Test
        public void test_immutability() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  3. src/main/resources/fess_config.properties

    rate.limit.block.duration.ms=300000
    # Retry-After header value in seconds.
    rate.limit.retry.after.seconds=60
    # Comma-separated list of whitelisted IPs (e.g., 127.0.0.1,::1).
    rate.limit.whitelist.ips=127.0.0.1,::1
    # Comma-separated list of blocked IPs.
    rate.limit.blocked.ips=
    # Comma-separated list of trusted proxy IPs. Only trust X-Forwarded-For/X-Real-IP from these IPs.
    rate.limit.trusted.proxies=127.0.0.1,::1
    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/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            assertTrue(pattern.contains("secret"));
        }
    
        // Test array field parsing
        @Test
        public void test_arrayFieldParsing() {
            // Test parsing of comma-separated values
            String[] arrayFields = fessConfig.getIndexAdminArrayFields().split(",");
            assertNotNull(arrayFields);
            assertEquals(2, arrayFields.length);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.6K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            source.put("title", "Only");
    
            final String json = new JsonIndexExportFormatter().format(source, Collections.emptySet());
    
            assertTrue(json.contains("\"title\": \"Only\""));
            // No comma should appear with single field
            assertFalse(json.contains(","));
        }
    
        @Test
        public void test_jsonFormatter_booleanFalse() {
            final Map<String, Object> source = new LinkedHashMap<>();
    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)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Comma-separated list of whitelisted IPs (e.g., 127.0.0.1,::1).
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getRateLimitWhitelistIps();
    
        /**
         * Get the value for the key 'rate.limit.blocked.ips'. <br>
         * The value is, e.g.  <br>
         * comment: Comma-separated list of blocked IPs.
    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