Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getMinScore (0.05 seconds)

  1. 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.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

        @Test
        public void test_getTrackTotalHits() {
            assertNull(searchRequestParams.getTrackTotalHits());
        }
    
        // Test for getMinScore method
        @Test
        public void test_getMinScore() {
            assertNull(searchRequestParams.getMinScore());
        }
    
        // Test for getResponseFields method
        @Test
        public void test_getResponseFields() {
            // Setup mock QueryFieldConfig
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 26.5K bytes
    - Click Count (0)
  3. 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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 25 02:13:14 GMT 2025
    - 28K bytes
    - Click Count (0)
  4. 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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 09:24:04 GMT 2025
    - 12.6K bytes
    - Click Count (0)
Back to Top