- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 624 for NEXT (0.01 sec)
-
src/main/java/org/codelibs/fess/app/pager/StemmerOverridePager.java
} /** * 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 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
} /** * 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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionList.java
final Runnable runnable; final Executor executor; @Nullable RunnableExecutorPair next; RunnableExecutorPair( Runnable runnable, Executor executor, @Nullable RunnableExecutorPair next) { this.runnable = runnable; this.executor = executor; this.next = next; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/ShareEnumIteratorTest.java
// hasNext/next sequence over two elements assertTrue(it.hasNext(), "Expected first element available"); SmbResource r1 = it.next(); assertNotNull(r1); assertEquals("foo/", r1.getName(), "First child name should match with trailing slash"); assertTrue(it.hasNext(), "Expected second element available"); SmbResource r2 = it.next(); assertNotNull(r2);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
private final StrongKeyStrongValueEntry<K, V> next; LinkedStrongKeyStrongValueEntry(K key, int hash, StrongKeyStrongValueEntry<K, V> next) { super(key, hash); this.next = next; } @Override public StrongKeyStrongValueEntry<K, V> getNext() { return next; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 90K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/DfsReferralTest.java
initialReferral.append(appendedReferral); // Then assertEquals(appendedReferral, initialReferral.next, "The 'next' property of the initial referral should point to the appended referral."); assertEquals(initialReferral, appendedReferral.next, "The 'next' property of the appended referral should point back to the initial referral, closing the loop."); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java
} /** * Checks if a next page exists. * * @return true if next page exists, false otherwise */ public boolean isExistNextPage() { return existNextPage; } /** * Sets whether 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.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIterator1Test.java
// Act & Assert: entries a, b, c (dot entries filtered) then end assertTrue(it.hasNext()); assertEquals("a", it.next().getName()); assertTrue(it.hasNext()); assertEquals("b", it.next().getName()); assertTrue(it.hasNext()); assertEquals("c", it.next().getName()); assertFalse(it.hasNext()); // Verify interactions
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractSequentialIterator.java
* remain. This method is invoked during each call to {@link #next()} in order to compute the * result of a <i>future</i> call to {@code next()}. */ protected abstract @Nullable T computeNext(T previous); @Override public final boolean hasNext() { return nextOrNull != null; } @Override public final T next() { if (nextOrNull == null) { throw new NoSuchElementException();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 2.3K bytes - Viewed (0)