Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getQueryBoostFuzzyTitleAsDecimal (0.1 sec)

  1. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

                    return baseConfig.getQueryBoostContentAsDecimal();
                }
    
                @Override
                public BigDecimal getQueryBoostFuzzyTitleAsDecimal() {
                    return baseConfig.getQueryBoostFuzzyTitleAsDecimal();
                }
    
                @Override
                public BigDecimal getQueryBoostFuzzyContentAsDecimal() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/query/QueryTestBase.java

                }
    
                @Override
                public String getQueryBoostFuzzyTitle() {
                    return "0.01";
                }
    
                @Override
                public BigDecimal getQueryBoostFuzzyTitleAsDecimal() {
                    return new BigDecimal("0.01");
                }
    
                @Override
                public String getQueryBoostFuzzyContent() {
                    return "0.005";
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

            if (fuzzyMinLength >= 0 && text.length() >= fuzzyMinLength) {
                defaultQuery.add(QueryBuilders.fuzzyQuery(fessConfig.getIndexFieldTitle(), text)
                        .boost(fessConfig.getQueryBoostFuzzyTitleAsDecimal().floatValue())
                        .prefixLength(fessConfig.getQueryBoostFuzzyTitlePrefixLengthAsInteger())
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top