Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 640 for searcher (0.04 seconds)

  1. src/main/java/org/codelibs/fess/chat/ChatClient.java

        /**
         * Creates ChatSource objects from search results and adds them to the assistant message.
         *
         * @param assistantMessage the message to add sources to
         * @param sourceList the search result documents
         * @param contextPath the application context path
         * @param queryId the query ID from the search
         * @param requestedTime the requested time from the search
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Searches file authentications 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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 18.7K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Searches job logs 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) {
            saveToken();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 10.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Searches elevate words based on form criteria.
         *
         * @param form search form containing search parameters
         * @return HTML response with filtered elevate word list
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

            });
        }
    
        /**
         * Searches for scheduled jobs based on the provided search criteria.
         *
         * @param form the search form containing search criteria
         * @return HTML response with filtered scheduled job results
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 21.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        }
    
        /**
         * Gets the path to configuration files, falling back to classpath resources if not found.
         * First attempts to find the file in the configuration directory, then searches the classpath.
         *
         * @param names the path components to append to the configuration directory
         * @return the Path object pointing to the configuration file, either in conf directory or classpath
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  7. 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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 19.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                if (logger.isDebugEnabled()) {
                    logger.debug("Failed to process a search request.", e);
                }
                writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, e);
            } catch (final Exception e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Failed to process a search request.", e);
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  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) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 06:18:24 GMT 2026
    - 21K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        }
    
        /**
         * Stores the document IDs associated with a search query for tracking purposes.
         * This method caches the document IDs returned for a specific query to enable click tracking and analytics.
         *
         * @param queryId the unique identifier for the search query
         * @param documentItems the list of document maps containing search results
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 14.9K bytes
    - Click Count (0)
Back to Top