Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getMinScore (0.04 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                        .responseFields(params.getResponseFields())
                        .searchRequestType(params.getType())
                        .trackTotalHits(params.getTrackTotalHits())
                        .minScore(params.getMinScore())
                        .build();
            };
        }
    
        /**
         * Parses a search hit from OpenSearch and converts it to a document map.
         *
         * @param fessConfig the Fess configuration
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

        public void test_getTrackTotalHits() {
            assertNull(searchRequestParams.getTrackTotalHits());
        }
    
        // Test for getMinScore method
        public void test_getMinScore() {
            assertNull(searchRequestParams.getMinScore());
        }
    
        // Test for getResponseFields method
        public void test_getResponseFields() {
            // Setup mock QueryFieldConfig
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java

                }
    
                @Override
                public String getTrackTotalHits() {
                    return null;
                }
    
                @Override
                public Float getMinScore() {
                    return null;
                }
    
                @Override
                public String[] getResponseFields() {
                    return new String[0];
                }
            };
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

         */
        public String getTrackTotalHits() {
            return null;
        }
    
        /**
         * Returns the min score.
         *
         * @return The min score.
         */
        public Float getMinScore() {
            return null;
        }
    
        /**
         * Returns true if the request has a condition query, otherwise false.
         *
         * @return True if the request has a condition query, otherwise false.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            }
    
            @Override
            public String getTrackTotalHits() {
                return parent.getTrackTotalHits();
            }
    
            @Override
            public Float getMinScore() {
                return parent.getMinScore();
            }
    
            @Override
            public boolean hasConditionQuery() {
                return parent.hasConditionQuery();
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
Back to top