- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 10 for COMMA (0.03 seconds)
-
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
String input; String escaped; String[] parsed; // Text with comma gets quoted, but parse preserves quotes input = "with,comma"; escaped = KuromojiCSVUtil.quoteEscape(input); // "with,comma" parsed = KuromojiCSVUtil.parse(escaped); assertEquals(1, parsed.length);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 18.9K bytes - Click Count (0) -
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml
<module name="NoWhitespaceAfter"/> <module name="ParenPad"/> <module name="TypecastParenPad"/> <module name="WhitespaceAfter"> <property name="tokens" value="COMMA, SEMI"/> </module> <!--<module name="WhitespaceAround">--> <!-- everything except { and } -->
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Dec 11 10:24:25 GMT 2025 - 6.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
@Override public String toString() { return "PrunedTag [tag=" + tag + ", id=" + id + ", css=" + css + ", attrName=" + attrName + ", attrValue=" + attrValue + "]"; } /** * Parses a comma-separated string of pruned tag configurations into an array of PrunedTag objects. * Each tag configuration follows the pattern: tagname[attr=value].classname#id * * Examples:Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 24 04:23:08 GMT 2025 - 7.1K bytes - Click Count (0) -
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) -
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) -
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
return cal; } /** * Adds a new interval rule to the rule list. * * @param from the start time in HH:MM format * @param to the end time in HH:MM format * @param days comma-separated list of days (1=Sunday, 7=Saturday) * @param delay the delay in milliseconds to apply during this interval */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Nov 23 12:34:02 GMT 2025 - 10K bytes - Click Count (0) -
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) -
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) -
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) -
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)