Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,153 for Search (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Search for kuromoji items.
         * @param form The search form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
            validate(form, messages -> {}, this::asDictIndexHtml);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java

        //                                                                      Search Execute
        //                                                                      ==============
    
        /**
         * Retrieves a list of related query settings.
         *
         * @param body search parameters for filtering and pagination
         * @return JSON response containing related query configurations
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java

    /**
     * Form for uploading bad word files to the Fess search engine.
     * This form is used in the admin interface to upload bad word dictionary files
     * that contain words to be filtered from search results.
     */
    public class UploadForm {
    
        /**
         * The multipart file containing bad words to be uploaded.
         * This file should contain a list of words that will be filtered from search results.
         */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

         * Uses caching to improve performance for repeated requests.
         *
         * @param searchRequestType the type of search request
         * @param seed the seed value for popular word generation
         * @param tags array of tags to filter results
         * @param roles array of roles to filter results
         * @param fields array of fields to search in
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java

    import jakarta.annotation.Resource;
    
    /**
     * API action for admin related content management.
     * Provides RESTful API endpoints for managing related content settings in the Fess search engine.
     * Related content settings define content relationships and associations for search results.
     */
    public class ApiAdminRelatedcontentAction extends FessApiAdminAction {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/BaseSearchDictBody.java

    import org.lastaflute.web.validation.Required;
    
    /**
     * Base class for dictionary search request body objects in admin API.
     * Extends BaseSearchBody with dictionary-specific parameters.
     */
    public class BaseSearchDictBody extends BaseSearchBody {
        /** The dictionary ID for the search operation. */
        @Required
        public String dictId;
    
        /**
         * Default constructor for BaseSearchDictBody.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

    import jakarta.annotation.Resource;
    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * Action class for handling thumbnail image requests.
     * Serves thumbnail images for documents in the search results.
     */
    public class ThumbnailAction extends FessSearchAction {
    
        /**
         * Default constructor for ThumbnailAction.
         */
        public ThumbnailAction() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/QueryResponseList.java

         * Main constructor that creates a QueryResponseList with complete search metadata.
         *
         * @param documentList the list of documents returned by the search
         * @param allRecordCount the total number of records in the search result set
         * @param allRecordCountRelation the relation type for the total record count
         * @param queryTime the time taken to execute the search query in milliseconds
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/ApiAdminFileconfigAction.java

    import jakarta.annotation.Resource;
    
    /**
     * API action for admin file configuration management.
     * Provides RESTful API endpoints for managing file crawling configuration settings in the Fess search engine.
     * File configurations define settings for crawling file systems, FTP servers, and other file-based data sources.
     *
     */
    public class ApiAdminFileconfigAction extends FessApiAdminAction {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

        //                                                                      Search Execute
        //                                                                      ==============
        /**
         * The index page.
         * @param form The search form.
         * @return The HTML response.
         */
        @Execute
        public HtmlResponse index(final SearchForm form) {
            return search(form);
        }
    
        /**
         * The advance search page.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14K bytes
    - Viewed (0)
Back to top