Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 684 for Search (0.04 sec)

  1. src/main/webapp/js/search.js

                i;
            if (data.record_count > 0) {
              docIds = data.data;
              for (i = 0; i < docIds.length; i++) {
                docIds[i] = "#" + docIds[i].doc_id;
              }
              $favorites.each(function(index) {
                var $favorite = $(this),
                    url = $favorite.attr("href"),
                    found = false,
                    $favorited,
                    i;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. 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();
            searchLogPager.clear();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            return null; // ignore
        }
    
        /**
         * Executes a search based on the provided search criteria.
         *
         * @param form the list form containing search criteria
         * @return HTML response with search results
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final ListForm form) {
            saveToken();
            return doSearch(form);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        protected boolean partialResults;
    
        /** The actual search query executed against the search engine. */
        protected String searchQuery;
    
        /** Time taken to execute the search query in milliseconds. */
        protected long queryTime;
    
        /** Timestamp when the search request was made. */
        protected long requestedTime;
    
        /** Unique identifier for this search query session. */
        protected String queryId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/sereq/UploadForm.java

    /**
     * Form for uploading search request files to the Fess search engine.
     * This form is used in the admin interface to upload search request configuration files
     * that define search behaviors and request handling.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing the search request configurations to be uploaded.
         * This file should contain search request definitions and configurations.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        /**
         * Default label value to use when no specific label is selected.
         * This affects which documents are included in search results by default.
         */
        @Size(max = 1000)
        public String defaultLabelValue;
    
        /**
         * Default sort order for search results.
         * Defines how search results are ordered when no specific sort is requested.
         */
        @Size(max = 1000)
        public String defaultSortValue;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java

    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Base class for search request body objects in admin API.
     * Provides common pagination parameters for search operations.
     */
    public class BaseSearchBody {
    
        /** The page size for search results. */
        public Integer size = ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
    
        /** The page number for search results. */
        public Integer page = Constants.DEFAULT_ADMIN_PAGE_NUMBER;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
Back to top