- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for COMMA (2 sec)
-
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapNews.java
* The title may be up to 110 characters. */ private String title; /** * A comma-separated list of keywords describing the topic of the article. * Keywords may be drawn from, but are not limited to, the list of existing Google News keywords. */ private String keywords; /** * A comma-separated list of properties characterizing the content of the article. */ private String stockTickers;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 4.8K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 04:23:08 UTC 2025 - 7.1K 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 */ @PluginFactoryRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractorTest.java
final String content = extractData.getContent(); assertTrue(content.contains("John Doe")); } public void test_delimiterDetection() { // The test.csv uses comma delimiter csvExtractor.setAutoDetectDelimiter(true); final InputStream in = ResourceUtil.getResourceAsStream("extractor/csv/test.csv"); final ExtractData extractData = csvExtractor.getText(in, null);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 5.3K bytes - Viewed (0)