Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 684 for noarch (0.03 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsFailureUrlCA.java

    import org.opensearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 46.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

        /**
         * Attempts to redirect to the search page with preserved search parameters.
         *
         * This method checks if there are saved search parameters from a previous
         * session and redirects the user to the search page with those parameters
         * restored. This provides a seamless user experience after authentication.
         *
         * @return Optional HtmlResponse containing the redirect to search page with parameters,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java

                public long updateByQuery(String index,
                        java.util.function.Function<org.opensearch.action.search.SearchRequestBuilder, org.opensearch.action.search.SearchRequestBuilder> builder,
                        java.util.function.BiFunction<org.opensearch.action.update.UpdateRequestBuilder, org.opensearch.search.SearchHit, org.opensearch.action.update.UpdateRequestBuilder> processor) {
                    // Return a fixed count for testing
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

         * This method performs a database query with pagination and updates the pager with result information.
         *
         * @param relatedQueryPager the pager containing pagination parameters and search conditions
         * @return a list of RelatedQuery entities matching the search criteria
         */
        public List<RelatedQuery> getRelatedQueryList(final RelatedQueryPager relatedQueryPager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

         *
         * @param searchers array of searchers to use for concurrent searching
         * @param query the search query string
         * @param params search request parameters including pagination and filters
         * @param userBean optional user information for personalized search
         * @return list of search result documents with fused ranking scores
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (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) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/searchlog/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * The edit form for Search Log.
     * This form handles the editing of search log entries in the administration interface.
     */
    public class EditForm {
    
        /** CRUD operation mode indicator */
        @ValidateTypeFailure
        public int crudMode;
    
        /** Type of the search log entry */
        @Required
        @Size(max = 10)
        public String logType;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/BadWordPager.java

        private int currentPageNumber;
    
        /** Bad word ID for search filtering. */
        public String id;
    
        /** Suggest word for search filtering. */
        public String suggestWord;
    
        /** Creator username for search filtering. */
        public String createdBy;
    
        /** Creation time for search filtering. */
        public String createdTime;
    
        /** Version number for search filtering. */
        public String versionNo;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog_details.jsp

                                                        <td><la:link
                                                                href="/admin/searchlog/search?logType=search&amp;queryId=${f:u(info.value)}&amp;userSessionId=&amp;requestedTimeRange=&amp;accessType=">${f:h(info.value)}</la:link></td>
                                                    </c:when>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 9.9K bytes
    - Viewed (0)
Back to top