Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 599 for search2 (0.04 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/webapp/WEB-INF/orig/view/search.jsp

    							<c:if test="${s.index < 3}">
    								<la:link
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    							<c:if test="${3 <= s.index}">
    								<la:link styleClass="d-none d-sm-inline-block"
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    						</c:forEach>
    					</p>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/search.jsp

    							<c:if test="${s.index < 3}">
    								<la:link
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    							<c:if test="${3 <= s.index}">
    								<la:link styleClass="d-none d-sm-inline-block"
    									href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    							</c:if>
    						</c:forEach>
    					</p>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:38:54 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  4. src/main/webapp/js/search.js

    Shinsuke Sugaya <******@****.***> 1750317241 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java

            }
            return name;
        }
    
        /**
         * Executes a search operation with the specified parameters.
         * This method must be implemented by concrete searcher classes.
         *
         * @param query the search query string
         * @param params the search request parameters including pagination, filters, etc.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top