Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 657 for search1 (0.5 sec)

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

    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    
    import org.apache.lucene.search.TotalHits.Relation;
    import org.codelibs.fess.util.FacetResponse;
    
    /**
     * Represents the result of a search operation in the rank fusion system.
     *
     * This class encapsulates all the information returned from a search query,
     * including the list of matching documents, total record count, query execution
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlist/EditForm.java

    /**
     * The edit form for Search List.
     * This form extends CreateForm and adds fields necessary for editing existing search list entries.
     */
    public class EditForm extends CreateForm {
    
        /** Unique identifier for the search list entry */
        public String id;
    
        /** Sequence number for ordering search list entries */
        @ValidateTypeFailure
        public Long seqNo;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/QueryCommand.java

    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.search.sort.SortBuilder;
    import org.opensearch.search.sort.SortBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    /**
     * Abstract base class for query command implementations.
     * Provides common functionality for processing and executing search queries.
     */
    public abstract class QueryCommand {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/sereq/AdminSereqAction.java

        }
    
        /**
         * Displays the search request management index page.
         *
         * @return HTML response for the search request page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml(this::saveToken);
        }
    
        /**
         * Processes uploaded search request files and executes them against the search engine.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

         * Search criteria: number of threads.
         */
        public String numOfThread;
    
        /**
         * Search criteria: interval time.
         */
        public String intervalTime;
    
        /**
         * Search criteria: boost value.
         */
        public String boost;
    
        /**
         * Search criteria: availability status.
         */
        public String available;
    
        /**
         * Search criteria: sort order.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  6. MIGRATION.md

    ## Migration From Other Enterprise Search Systems
    
    ### Google Search Appliance (GSA) / Google Mini
    
    Fess provides a [Google Search Appliance](https://enterprise.google.com/search/products/gsa.html) (GSA) compatible API. To enable this API, set `web.api.gsa=true` to system.properties. This will enable an enpoint at `<Fess Server Name>:8080/gsa`. When a search query is sent to `<Fess Server Name>:8080/gsa/?q=QUERY`, a GSA compatible response will be returned
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 05 06:12:02 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/log/cbean/ca/bs/BsClickLogCA.java

    import org.opensearch.search.aggregations.bucket.range.IpRangeAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.range.RangeAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

    import org.codelibs.fess.app.pager.SearchLogPager;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * The search form for Search Log.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The log type field for filtering search logs.
         */
        public String logType;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SearchHelper.java

    /**
     * Helper class for handling search operations in Fess.
     *
     * This class provides comprehensive search functionality including document search,
     * scroll search, and bulk operations. It handles search request parameter processing,
     * query building, response formatting, and search log management.
     *
     * Key features:
     * - Document search with pagination and faceting
     * - Scroll search for large result sets
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/entity/SearchLogEvent.java

     */
    package org.codelibs.fess.entity;
    
    import java.util.Map;
    
    /**
     * Interface for search log events in the Fess search system.
     *
     * This interface defines the contract for search log event objects that can be
     * written to log files or stored in the search index. Implementations include
     * search logs, click logs, favorite logs, and user information logs.
     */
    public interface SearchLogEvent {
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top