- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 200 for Previous (4.19 sec)
-
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) -
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) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
} /** * Checks whether a previous page exists in the pagination. * * @return true if a previous page exists, false otherwise */ public boolean isExistPrePage() { return existPrePage; } /** * Sets the flag indicating 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) -
src/main/java/org/codelibs/fess/app/pager/FileAuthPager.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) -
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) -
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) -
src/main/java/org/codelibs/fess/app/pager/CharMappingPager.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 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/PathMapPager.java
this.allPageCount = allPageCount; } /** * 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) -
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) -
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)