- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for lomma (0.01 sec)
-
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);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K 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/mylasta/direction/FessConfigTest.java
assertTrue(pattern.contains("token")); assertTrue(pattern.contains("secret")); } // Test array field parsing public void test_arrayFieldParsing() { // Test parsing of comma-separated values String[] arrayFields = fessConfig.getIndexAdminArrayFields().split(","); assertNotNull(arrayFields); assertEquals(2, arrayFields.length);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.8K bytes - Viewed (0) -
src/main/resources/fess_config.properties
cookie.default.expire = 3600 # Session tracking modes session.tracking.modes=cookie # Comma-separated list of request parameter keys to store in cookies before SSO login. cookie.search.parameter.keys=q,num,sort # Comma-separated list of required parameter keys that must be present to store in cookies. cookie.search.parameter.required_keys=q
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
*/ String getSessionTrackingModes(); /** * Get the value for the key 'cookie.search.parameter.keys'. <br> * The value is, e.g. q,num,sort <br> * comment: Comma-separated list of request parameter keys to store in cookies before SSO login. * @return The value of found property. (NotNull: if not found, exception but basically no way) */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)