Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 1,288 for Search (0.41 sec)

  1. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

            assertTrue(emptyResult.isEmpty());
        }
    
        // Test getEventType method
        public void test_getEventType() {
            // Test search event type
            TestSearchLogEvent searchEvent = new TestSearchLogEvent("id", 1L, "search");
            assertEquals("search", searchEvent.getEventType());
    
            // Test click event type
            TestSearchLogEvent clickEvent = new TestSearchLogEvent("id", 1L, "click");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Config.java

        /**
         * Retrieve an <code>int</code>. If the key does not exist or
         * cannot be converted to an <code>int</code>, the provided default
         * argument will be returned.
         *
         * @param props the properties to search in
         * @param key the property key to look up
         * @param def the default value to return if key is not found or cannot be parsed
         * @return the integer value of the property or the default value
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Gets a paginated list of web authentications based on the provided pager.
         *
         * @param webAuthenticationPager The pager containing pagination and search criteria
         * @return List of web authentication configurations
         */
        public List<WebAuthentication> getWebAuthenticationList(final WebAuthPager webAuthenticationPager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

            });
        }
    
        /**
         * Perform a search operation for stemmer override items.
         * Updates the pager with search criteria and displays filtered results.
         *
         * @param form The search form containing search criteria
         * @return HTML response showing 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 Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Search for boost document rules.
         * @param form The search form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
            copyBeanToBean(form, boostDocPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java

     */
    package org.codelibs.fess.opensearch.client;
    
    import org.codelibs.fess.exception.FessSystemException;
    
    /**
     * Exception thrown when search engine client operations fail.
     * This exception wraps underlying search engine errors and provides
     * meaningful error messages for troubleshooting.
     */
    public class SearchEngineClientException extends FessSystemException {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

            });
        }
    
        /**
         * Sets up the list condition for querying web configurations.
         * Applies search filters based on pager criteria such as name, URLs, and description.
         *
         * @param cb The condition bean for the query
         * @param webConfigPager The pager containing search criteria
         */
        protected void setupListCondition(final WebConfigCB cb, final WebConfigPager webConfigPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java

        @Required
        @Size(max = 1000)
        public String notificationTo;
    
        /** The suggest search log setting. */
        public String suggestSearchLog;
    
        /** The suggest documents setting. */
        public String suggestDocuments;
    
        /** The purge suggest search log day setting. */
        public String purgeSuggestSearchLogDay;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
Back to top