Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for navigator (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

         *
         * This method fetches stemmer override entries with pagination support, updating
         * the provided pager with the current page state and navigation information.
         *
         * @param dictId The ID of the stemmer override dictionary to query
         * @param stemmerOvberridePager The pager object for pagination control and state
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/TreeTraverser.java

    @Deprecated
    @Beta
    @GwtCompatible
    public abstract class TreeTraverser<T> {
      /** Constructor for use by subclasses. */
      public TreeTraverser() {}
    
      /**
       * Returns a tree traverser that uses the given function to navigate from a node to its children.
       * This is useful if the function instance already exists, or so that you can supply a lambda
       * expressions. If those circumstances don't apply, you probably don't need to use this; subclass
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/UserService.java

        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of users based on the provided pager criteria.
         * Updates the pager with pagination information including total count and page navigation.
         *
         * @param userPager the pager containing search criteria and pagination settings
         * @return a list of users matching the criteria
         */
        public List<User> getUserList(final UserPager userPager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/FacetResponse.java

    /**
     * Response object for faceted search results containing query counts and field facets.
     * This class processes OpenSearch aggregations to provide structured facet information
     * for search result filtering and navigation.
     */
    public class FacetResponse {
        /**
         * Map containing query facet counts, where keys are decoded query strings
         * and values are document counts for each query.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java

         */
        private boolean existPrePage;
    
        /**
         * Whether a next page exists.
         */
        private boolean existNextPage;
    
        /**
         * The list of page numbers for navigation.
         */
        private List<Integer> pageNumberList;
    
        /**
         * The number of records per page.
         */
        private int pageSize;
    
        /**
         * The current page number.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/RolePager.java

         */
        private boolean existPrePage;
    
        /**
         * Flag indicating whether a next page exists.
         */
        private boolean existNextPage;
    
        /**
         * List of page numbers for pagination navigation.
         */
        private List<Integer> pageNumberList;
    
        /**
         * Number of records per page.
         */
        private int pageSize;
    
        /**
         * Current page number in pagination.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/orig/view/index.jsp

    					<div class="navbar-brand"></div>
    					<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar"
    							aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
    						<span class="navbar-toggler-icon"></span>
    					</button>
    					<div class="collapse navbar-collapse" id="navbar">
    						<div class="me-auto"></div>
    						<ul class="nav navbar-nav">
    							<c:if test="${eoled}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 7K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/util/QueryResponseList.java

     * This class wraps search results with pagination information, facet responses, and query statistics.
     * It implements the List interface to provide standard list operations while adding search-specific
     * functionality such as page navigation, record counts, and query execution times.
     */
    public class QueryResponseList implements List<Map<String, Object>> {
    
        /** The underlying list that contains the actual search result documents. */
    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/webapp/WEB-INF/view/admin/labeltype/admin_labeltype.jsp

                                                        arg2="${f:h(labelTypePager.allRecordCount)}"/>
                                        </div>
                                            <%-- Paging Navigation --%>
                                        <div class="col-sm-10">
                                            <ul class="pagination pagination-sm m-0 float-right">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 10.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

         */
        private boolean existPrePage;
    
        /**
         * Flag indicating whether a next page exists.
         */
        private boolean existNextPage;
    
        /**
         * List of page numbers for pagination navigation.
         */
        private List<Integer> pageNumberList;
    
        /**
         * Number of records per page.
         */
        private int pageSize;
    
        /**
         * Current page number in pagination.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
Back to top