Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 179 for Previous (0.03 sec)

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

        }
    
        /**
         * Checks if there is a previous page.
         * @return True if a previous page exists, false otherwise.
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets the existence of a previous page.
         * @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)
  2. src/main/java/org/codelibs/fess/app/pager/LabelTypePager.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.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractService.java

        monitor.enter();
        try {
          State previous = state();
          switch (previous) {
            case NEW:
            case TERMINATED:
              throw new IllegalStateException("Failed while in state:" + previous, cause);
            case RUNNING:
            case STARTING:
            case STOPPING:
              snapshot = new StateSnapshot(FAILED, false, cause);
              enqueueFailedEvent(previous, cause);
              break;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/RegularContiguousSet.java

          final C first = first();
    
          @Override
          protected @Nullable C computeNext(C previous) {
            return equalsOrThrow(previous, first) ? null : domain.previous(previous);
          }
        };
      }
    
      private static boolean equalsOrThrow(Comparable<?> left, @Nullable Comparable<?> right) {
        return right != null && Range.compareOrThrow(left, right) == 0;
      }
    
      @Override
      boolean isPartialView() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

        }
    
        /**
         * Checks if a previous page exists.
         *
         * @return true if previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets the flag indicating if a previous page exists.
         *
         * @param existPrePage true if 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)
  6. src/main/java/org/codelibs/fess/app/pager/SchedulerPager.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.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/UserPager.java

        }
    
        /**
         * Checks if there is a previous page available.
         *
         * @return true if previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether there is a previous page available.
         *
         * @param existPrePage true if 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.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java

        }
    
        /**
         * Checks if there is a previous page.
         * @return true if previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether a 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.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/DiscreteDomain.java

       *     minValue()}
       */
      public abstract @Nullable C previous(C value);
    
      /**
       * Returns a signed value indicating how many nested invocations of {@link #next} (if positive) or
       * {@link #previous} (if negative) are needed to reach {@code end} starting from {@code start}.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java

            this.allPageCount = allPageCount;
        }
    
        /**
         * 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)
Back to top