Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getQueryBoostFuzzyContentTranspositions (0.35 sec)

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

                    return baseConfig.getQueryBoostFuzzyContentPrefixLengthAsInteger();
                }
    
                @Override
                public String getQueryBoostFuzzyContentTranspositions() {
                    return baseConfig.getQueryBoostFuzzyContentTranspositions();
                }
    
                @Override
                public String getQueryBoostFuzzyTitleFuzziness() {
    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 Integer getQueryBoostFuzzyContentPrefixLengthAsInteger() {
                    return 0;
                }
    
                @Override
                public String getQueryBoostFuzzyContentTranspositions() {
                    return "true";
                }
    
                @Override
                public String getQueryBoostFuzzyTitleFuzziness() {
                    return "AUTO";
                }
    
    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

                        .prefixLength(fessConfig.getQueryBoostFuzzyContentPrefixLengthAsInteger())
                        .transpositions(Constants.TRUE.equalsIgnoreCase(fessConfig.getQueryBoostFuzzyContentTranspositions()))
                        .boost(fessConfig.getQueryBoostFuzzyContentAsDecimal().floatValue())
                        .fuzziness(Fuzziness.build(fessConfig.getQueryBoostFuzzyContentFuzziness()))
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Whether to allow transpositions in fuzzy content queries.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getQueryBoostFuzzyContentTranspositions();
    
        /**
         * Is the property for the key 'query.boost.fuzzy.content.transpositions' true? <br>
         * The value is, e.g. true <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top