Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 215 for search2 (0.07 sec)

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

        public void test_getSearchFields() {
            String[] fields = { "search1", "search2", "search3" };
            queryFieldConfig.setSearchFields(fields);
    
            String[] result = queryFieldConfig.getSearchFields();
            assertSame(fields, result);
        }
    
        public void test_setSearchFields() {
            String[] fields = { "search1", "search2", "search3" };
            queryFieldConfig.setSearchFields(fields);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

        }
    
        /**
         * Performs a search using only the main searcher without rank fusion.
         * This method is used when only one searcher is available or configured.
         *
         * @param searcher the main searcher to use for the search operation
         * @param query the search query string
         * @param params search request parameters including pagination and filters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/SortedLists.java

              @ParametricNullness E key,
              List<? extends E> list,
              int foundIndex) {
            // Of course, we have to use binary search to find the precise
            // breakpoint...
            int lower = 0;
            int upper = foundIndex;
            // Of course, we have to use binary search to find the precise breakpoint...
            // Everything between lower and upper inclusive compares at <= 0.
            while (lower < upper) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         */
        @Size(max = 1000)
        public String notificationTo;
    
        /**
         * Enable or disable search suggestions based on search logs.
         * When enabled, suggestions are generated from previous searches.
         */
        @Size(max = 10)
        public String suggestSearchLog;
    
        /**
         * Enable or disable search suggestions based on document content.
         * When enabled, suggestions are generated from indexed documents.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

    import org.lastaflute.web.util.LaRequestUtil;
    import org.opensearch.action.search.SearchRequestBuilder;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.common.document.DocumentField;
    import org.opensearch.search.SearchHit;
    import org.opensearch.search.SearchHits;
    import org.opensearch.search.aggregations.Aggregations;
    import org.opensearch.search.fetch.subphase.highlight.HighlightField;
    
    /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        /** Array of fields to be included in standard search response */
        protected String[] responseFields;
    
        /** Array of fields to be included in scroll search response */
        protected String[] scrollResponseFields;
    
        /** Array of fields to be included in cache search response */
        protected String[] cacheResponseFields;
    
        /** Array of fields that can be highlighted in search results */
        protected String[] highlightedFields;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/QueryHelper.java

    import org.opensearch.search.rescore.RescorerBuilder;
    import org.opensearch.search.sort.SortBuilder;
    import org.opensearch.search.sort.SortBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpSession;
    
    /**
     * QueryHelper is responsible for building and managing OpenSearch queries for Fess search functionality.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java

    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.FacetResponse;
    import org.opensearch.search.aggregations.Aggregations;
    import org.opensearch.search.aggregations.InternalAggregations;
    import org.dbflute.optional.OptionalThing;
    
    public class RankFusionSearcherTest extends UnitFessTestCase {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

            });
        }
    
        /**
         * Searches for search log entries based on the provided search criteria.
         *
         * @param form the search form containing search criteria
         * @return HTML response with filtered search log results
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
            saveToken();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Searches key matches based on the form criteria.
         *
         * @param form the search form
         * @return HTML response for the search results
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.7K bytes
    - Viewed (0)
Back to top