Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for Pages (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages available for pagination.
         *
         * @return the total page count
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages available for pagination.
         *
         * @param allPageCount the total page count to set
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. deploy_website.sh

    source venv/bin/activate
    pip install mkdocs-material mkdocs-redirects
    mkdocs gh-deploy
    
    # Restore Javadocs from 1.x, 2.x, and 3.x.
    git checkout gh-pages
    git cherry-pick bb229b9dcc9a21a73edbf8d936bea88f52e0a3ff
    git cherry-pick c695732f1d4aea103b826876c077fbfea630e244
    git push --set-upstream origin gh-pages
    
    # Delete our temp folder
    cd ..
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Nov 20 15:26:12 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages available.
         *
         * @return the total page count
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages available.
         *
         * @param allPageCount the total page count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/UserPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         *
         * @return the total page count
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount the total page count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java

     */
    public class CharMappingPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /** Total number of records across all pages. */
        private int allRecordCount;
    
        /** Total number of pages available. */
        private int allPageCount;
    
        /** Flag indicating if a previous page exists. */
        private boolean existPrePage;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         * @return the total page count
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         * @param allPageCount the total page count
         */
        public void setAllPageCount(final int allPageCount) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         * @return The total page count.
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         * @param allPageCount The total page count.
         */
        public void setAllPageCount(final int allPageCount) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java

            this.allRecordCount = allRecordCount;
        }
    
        /**
         * Gets the total number of pages.
         *
         * @return The total page count
         */
        public int getAllPageCount() {
            return allPageCount;
        }
    
        /**
         * Sets the total number of pages.
         *
         * @param allPageCount The total page count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/error/ErrorNotfoundAction.java

    import org.codelibs.fess.app.web.base.FessSearchAction;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.HtmlResponse;
    
    /**
     * Action class for handling HTTP 404 Not Found error pages.
     * This action displays error pages when the requested resource
     * cannot be found on the server.
     */
    public class ErrorNotfoundAction extends FessSearchAction {
    
        /**
         * Default constructor for ErrorNotfoundAction.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            /** The underlying list containing the actual data. */
            private final List<E> parent;
    
            /** The total number of pages available. */
            protected int allPageCount;
    
            /** The total number of records across all pages. */
            protected int allRecordCount;
    
            /** The number of records per page. */
            protected int pageSize;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top