- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for rcomma (0.11 sec)
-
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
// Text with commas input = "text,with,commas"; result = KuromojiCSVUtil.quoteEscape(input); assertEquals("\"text,with,commas\"", result); // Text with both quotes and commas input = "text \"with\" quotes, and commas"; result = KuromojiCSVUtil.quoteEscape(input); assertEquals("\"text \"\"with\"\" quotes, and commas\"", result); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Headers.kt
* * This class tracks header values line-by-line. A field with multiple comma- separated values on * the same line will be treated as a field with a single value by this class. It is the caller's * responsibility to detect and split on commas if their field permits multiple values. This * simplifies use of single-valued fields whose values routinely contain commas, such as cookies or * dates. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:51:25 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java
import java.util.regex.Pattern; /** * Utility class for parsing CSV text */ public final class KuromojiCSVUtil { private static final char QUOTE = '"'; private static final char COMMA = ','; private static final Pattern QUOTE_REPLACE_PATTERN = Pattern.compile("^\"([^\"]+)\"$"); private static final String ESCAPED_QUOTE = "\"\""; private KuromojiCSVUtil() { } // no instance!!!
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.9K bytes - Viewed (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)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (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:
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java
/** Dictionary identifier */ @Required public String dictId; /** CRUD operation mode (CREATE, EDIT, etc.) */ @ValidateTypeFailure public Integer crudMode; /** Input terms (comma-separated) that will be mapped to the output term */ @Required @Size(max = 1000) public String inputs; /** Output term that input terms will be mapped to */ @Size(min = 1, max = 1000)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (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()); } public void test_immutability() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java
} } return event; } /** * Factory method to create an ErrorToWarnRewritePolicy instance. * * @param loggerNamePrefix comma-separated list of logger name prefixes * @return a new ErrorToWarnRewritePolicy instance */ @PluginFactory
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
// Test whitespace only tags = PrunedTag.parse(" "); assertEquals(0, tags.length); // Test commas only tags = PrunedTag.parse(",,,"); assertEquals(0, tags.length); // Test mixed whitespace and commas tags = PrunedTag.parse(" , , , "); assertEquals(0, tags.length); } public void test_parse_invalidFormats() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 21K bytes - Viewed (0)