- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 320 for ruleId (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RuleManagerImpl.java
* * @see * org.codelibs.fess.crawler.rule.RuleManager#addRule(org.codelibs.fess.crawler.rule.Rule) */ /** * Adds a rule to the end of the rule list. * @param rule the rule to add */ @Override public void addRule(final Rule rule) { ruleList.add(rule); } /** * Adds a rule at the specified position in the rule list. * @param index the position to insert the rule
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
docs/bucket/lifecycle/README.md
This JSON rule is equivalent to the following MinIO Client command: ``` mc ilm rule add --noncurrent-expire-days 30 --noncurrent-expire-newer 5 --prefix "user-uploads/" myminio/mydata ``` #### 3.2.a Automatic removal of noncurrent versions keeping only most recent ones immediately (MinIO only extension)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java
* hostnames or URLs to be treated as equivalent for crawling and indexing purposes. * It maintains a list of DuplicateHost rules and applies them to URLs. * */ public class DuplicateHostHelper { private static final Logger logger = LogManager.getLogger(DuplicateHostHelper.class); /** List of duplicate host rules for URL conversion */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
/** * Gets a boost document rule by its ID. * @param id The boost document rule ID. * @return Optional entity containing the boost document rule if found. */ public OptionalEntity<BoostDocumentRule> getBoostDocumentRule(final String id) { return boostDocumentRuleBhv.selectByPK(id); } /** * Stores (inserts or updates) a boost document rule.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt
val rule = findMatchingRule(domainLabels) if (domainLabels.size == rule.size && rule[0][0] != EXCEPTION_MARKER) { return null // The domain is a public suffix. } val firstLabelOffset = if (rule[0][0] == EXCEPTION_MARKER) { // Exception rules hold the effective TLD plus one. domainLabels.size - rule.size } else {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 8.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/UrlConvertHelper.java
/** * Helper class for converting URLs based on a set of predefined rules. * * <p>This class provides functionality to convert URLs by replacing parts of the URL * based on a map of target strings and their corresponding replacements. It allows * adding new conversion rules, setting the entire conversion map, and converting * URLs using these rules.</p> *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/RuleManager.java
*/ /** * Adds a rule to the specified index. * * @param index the position at which the rule should be added * @param rule the rule to be added */ void addRule(int index, Rule rule); /** * Removes the specified rule from the rule manager. * * @param rule the rule to be removed * @return true if the rule was successfully removed, false otherwise
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt
while (!source.exhausted()) { var rule: ByteString = source.readUtf8LineStrict().toRule() ?: continue if (rule.startsWith(EXCEPTION_RULE_MARKER)) { rule = rule.substring(1) // We use '\n' for end of value. totalExceptionRuleBytes += rule.size + 1 sortedExceptionRules.add(rule) } else { totalRuleBytes += rule.size + 1 // We use '\n' for end of value.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Aug 06 05:33:11 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java
assertTrue(rule.isTarget(12, 30, 3)); // 12:30 on Tuesday assertTrue(rule.isTarget(12, 30, 5)); // 12:30 on Thursday // Within time range but not matching day assertFalse(rule.isTarget(12, 30, 2)); // 12:30 on Monday assertFalse(rule.isTarget(12, 30, 4)); // 12:30 on Wednesday assertFalse(rule.isTarget(12, 30, 6)); // 12:30 on Friday assertFalse(rule.isTarget(12, 30, 7)); // 12:30 on Saturday
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanMapTest.java
import org.codelibs.core.exception.IllegalKeyOfBeanMapException; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; /** * @author higa */ public class BeanMapTest { /** * @see org.junit.rules.ExpectedException */ @Rule public ExpectedException exception = ExpectedException.none(); /** * @throws Exception
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.7K bytes - Viewed (0)