- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 613 for nextUp (0.03 sec)
-
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
assertEquals(second, referralData.next()); assertEquals(referralData, second.next()); referralData.append(third); assertEquals(third, referralData.next()); assertEquals(second, third.next()); assertEquals(referralData, second.next()); } @Test @DisplayName("Should handle next() correctly") void testNext() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingSortedMultiset.java
*/ protected @Nullable Entry<E> standardFirstEntry() { Iterator<Entry<E>> entryIterator = entrySet().iterator(); if (!entryIterator.hasNext()) { return null; } Entry<E> entry = entryIterator.next(); return Multisets.immutableEntry(entry.getElement(), entry.getCount()); } @Override public @Nullable Entry<E> lastEntry() { return delegate().lastEntry(); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BadWordPager.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 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java
} /** * Returns true if a next page exists. * * @return True if a next page exists. */ public boolean isExistNextPage() { return existNextPage; } /** * Sets whether a next page exists. * * @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 - 6K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
} @Override @ParametricNullness public K next() { entry = entryIterator.next(); return entry.getKey(); } @Override public void remove() { checkState(entry != null, "no calls to next() since the last call to remove()"); Collection<V> collection = entry.getValue();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 12 15:51:57 UTC 2025 - 48.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/StandardTable.java
* initialized by next() -- which initializes rowEntry, too. * * - rowEntry isn't cleared except below. If it was cleared below, then either * columnIterator.remove() would have failed above (if the user hasn't called next() since * then) or rowEntry would have been initialized by next() (as discussed above). */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 30.2K bytes - Viewed (0) -
android/guava/src/com/google/common/base/PairwiseEquivalence.java
Iterator<T> iteratorA = iterableA.iterator(); Iterator<T> iteratorB = iterableB.iterator(); while (iteratorA.hasNext() && iteratorB.hasNext()) { if (!elementEquivalence.equivalent(iteratorA.next(), iteratorB.next())) { return false; } } return !iteratorA.hasNext() && !iteratorB.hasNext(); } @Override protected int doHash(Iterable<T> iterable) { int hash = 78721;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java
} /** * Checks if a next page exists. * * @return true if next page exists, false otherwise */ public boolean isExistNextPage() { return existNextPage; } /** * Sets the flag indicating if a next page exists. * * @param existNextPage true if next 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) -
src/main/java/org/codelibs/fess/app/pager/SchedulerPager.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 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/UserPager.java
} /** * Checks if there is a next page available. * * @return true if next page exists, false otherwise */ public boolean isExistNextPage() { return existNextPage; } /** * Sets whether there is a next page available. * * @param existNextPage true if next 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)