- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for DocBoostMatcher (0.18 sec)
-
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
import org.codelibs.fess.util.ComponentUtil; public class DocBoostMatcher { private String boostExpression = "0"; private String matchExpression; private final String scriptType; public DocBoostMatcher() { scriptType = Constants.DEFAULT_SCRIPT; } public DocBoostMatcher(final BoostDocumentRule rule) { matchExpression = rule.getUrlExpr();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java
assertFalse(docBoostMatcher.match(map)); map.remove("data1"); assertFalse(docBoostMatcher.match(map)); map.put("data2", 5); assertFalse(docBoostMatcher.match(map)); } public void test_string() { final DocBoostMatcher docBoostMatcher = new DocBoostMatcher(); docBoostMatcher.setBoostExpression("10");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.6K bytes - Viewed (0)