Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 305 for existed (0.03 sec)

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

        }
    
        /**
         * Check if the previous page exists.
         * @return true if the previous page exists.
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Set if the previous page exists.
         * @param existPrePage true if the previous page exists.
         */
        public void setExistPrePage(final boolean existPrePage) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/PathMapPager.java

        }
    
        /**
         * Checks if previous page exists.
         *
         * @return true if previous page exists
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether previous page exists.
         *
         * @param existPrePage true if previous page exists
         */
        public void setExistPrePage(final boolean existPrePage) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/RolePager.java

        }
    
        /**
         * Checks if a previous page exists.
         * @return true if a previous page exists, false otherwise.
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether a previous page exists.
         * @param existPrePage true if a previous page exists, false otherwise.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        }
    
        /**
         * Checks if a previous page exists.
         *
         * @return true if a previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether a previous page exists.
         *
         * @param existPrePage true if a previous page exists, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

        /**
         * Checks if a previous page exists before the current page.
         *
         * @return true if a previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether a previous page exists before the current page.
         *
         * @param existPrePage true if a previous page exists, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

        }
    
        /**
         * Checks if a previous page exists.
         *
         * @return true if a previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether a previous page exists.
         *
         * @param existPrePage true if a previous page exists, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java

        }
    
        /**
         * Checks if a previous page exists.
         *
         * @return true if a previous page exists, false otherwise.
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets the flag for the existence of a previous page.
         *
         * @param existPrePage true if a previous page exists.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/FileTypeHelperTest.java

            assertEquals("pdf", fileTypeHelper.get("application/pdf"));
            assertEquals("text", fileTypeHelper.get("text/plain"));
    
            // Test non-existent mimetype returns default value
            assertEquals("others", fileTypeHelper.get("non/existent"));
        }
    
        public void test_get_withNullMimetype() {
            assertEquals("others", fileTypeHelper.get(null));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java

        private int allRecordCount;
    
        /** Total number of pages available. */
        private int allPageCount;
    
        /** Flag indicating if a previous page exists. */
        private boolean existPrePage;
    
        /** Flag indicating if a next page exists. */
        private boolean existNextPage;
    
        /** List of page numbers for pagination navigation. */
        private List<Integer> pageNumberList;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

        }
    
        /**
         * Returns true if a previous page exists.
         *
         * @return True if a previous page exists.
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether a previous page exists.
         *
         * @param existPrePage True if a previous page exists.
         */
        public void setExistPrePage(final boolean existPrePage) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
Back to top