Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setBoostExpression (0.56 sec)

  1. src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java

                }
            }.register();
        }
    
        public void test_integer() {
            final DocBoostMatcher docBoostMatcher = new DocBoostMatcher();
            docBoostMatcher.setBoostExpression("10");
            docBoostMatcher.setMatchExpression("data1 > 10");
    
            final Map<String, Object> map = new HashMap<String, Object>();
    
            assertTrue(0.0f == docBoostMatcher.getValue(map));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

            return boostExpression;
        }
    
        /**
         * Sets the boost expression used to calculate boost values.
         *
         * @param expression the boost expression string
         */
        public void setBoostExpression(final String expression) {
            boostExpression = expression;
        }
    
        /**
         * Gets the current match expression.
         *
         * @return the match expression string
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.8K bytes
    - Viewed (0)
Back to top