- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 674 for nextUp (0.06 sec)
-
src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java
} /** * Checks if a next page exists for pagination. * * @return true if a next page exists, false otherwise */ public boolean isExistNextPage() { return existNextPage; } /** * Sets the flag indicating whether a next page exists. * * @param existNextPage true if a next page exists, false otherwise */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractSortedMultiset.java
Iterator<Entry<E>> entryIterator = entryIterator(); return entryIterator.hasNext() ? entryIterator.next() : null; } @Override public @Nullable Entry<E> lastEntry() { Iterator<Entry<E>> entryIterator = descendingEntryIterator(); return entryIterator.hasNext() ? entryIterator.next() : null; } @Override public @Nullable Entry<E> pollFirstEntry() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java
this.existPrePage = existPrePage; } /** * Check if the next page exists. * @return true if the next page exists. */ public boolean isExistNextPage() { return existNextPage; } /** * Set if the next page exists. * @param existNextPage true if the next page exists. */ public void setExistNextPage(final boolean existNextPage) {
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 next page. * @return True if a next page exists, false otherwise. */ public boolean isExistNextPage() { return existNextPage; } /** * Sets the existence of a next page. * @param existNextPage True if a next page exists. */ public void setExistNextPage(final boolean existNextPage) {
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.existPrePage = existPrePage; } /** * Checks if next page exists. * * @return true if next page exists */ public boolean isExistNextPage() { return existNextPage; } /** * Sets whether next page exists. * * @param existNextPage true if next page exists */ public void setExistNextPage(final boolean existNextPage) {
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
this.existPrePage = existPrePage; } /** * Checks if a next page exists. * @return true if a next page exists, false otherwise. */ public boolean isExistNextPage() { return existNextPage; } /** * Sets whether a next page exists. * @param existNextPage true if a next 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 next page exists. * * @return true if a next page exists, false otherwise. */ public boolean isExistNextPage() { return existNextPage; } /** * Sets the flag for the existence of a next page. * * @param existNextPage true if a next 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) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
@Override public DfsReferralDataImpl next() { return this.next; } /** * Append another referral to this referral chain * * @param dr the referral to append */ @Override public void append(final DfsReferralDataInternal dr) { final DfsReferralDataImpl dri = (DfsReferralDataImpl) dr; dri.next = this.next; this.next = dri; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/DiscreteDomain.java
*/ 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}. * For example, if {@code end = next(next(next(start)))}, then {@code distance(start, end) == 3} * and {@code distance(end, start) == -3}. As well, {@code distance(a, a)} is always zero. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/IterablesTest.java
return Integer.valueOf(from); } }); Iterator<Integer> resultIterator = result.iterator(); resultIterator.next(); assertThrows(NumberFormatException.class, () -> resultIterator.next()); } public void testNullFriendlyTransform() { List<@Nullable Integer> input = asList(1, 2, null, 3); Iterable<String> result = Iterables.transform(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 45.2K bytes - Viewed (0)