Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 657 for search2 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/webapp/WEB-INF/view/common/help.jsp

    		the end of the term you are searching.
    		<pre>Fess^100</pre>
    	</dd>
    	<dt>Fuzzy</dt>
    	<dd>
    		To do a fuzzy search use the "~" symbol at the end of a single word
    		term. For example to search for a term similar in spelling to "Fess"
    		use the fuzzy search:
    		<pre>Fess~0.5</pre>
    	</dd>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

        }
    
        /**
         * Sets up the search conditions for the related query list based on the pager parameters.
         * This method configures wildcard searches for term and queries fields, and sets up ordering.
         *
         * @param cb the condition bean for building the query
         * @param relatedQueryPager the pager containing search parameters
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

        }
    
        /**
         * Sets up the search conditions for listing related content entities.
         * Configures wildcard searches for term and content fields, and sets up ordering.
         *
         * @param cb the condition bean for building the query
         * @param relatedContentPager the pager containing search parameters
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Searches for users based on the provided search criteria.
         *
         * @param form the search form containing search criteria
         * @return HTML response with filtered user results
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

            });
        }
    
        /**
         * Searches for web authentication configurations based on the provided search criteria.
         *
         * @param form the search form containing search criteria
         * @return HTML response with filtered web authentication 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
    - 20.3K bytes
    - Viewed (0)
Back to top