- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 840 for nexte (0.24 sec)
-
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
final Map.Entry property = (Map.Entry) properties.next(); final String key = (String) property.getKey(); final StringBuilder value = new StringBuilder(); final Iterator values = ((List) property.getValue()).iterator(); while (values.hasNext()) { value.append(values.next()); if (values.hasNext()) { value.append(", ");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/UniAddressTest.java
// Arrange NbtAddress nbtMock = mock(NbtAddress.class); when(nbtMock.nextCalledName()).thenReturn("NEXT"); UniAddress ua = new UniAddress(nbtMock); // Act String next = ua.nextCalledName(); // Assert assertEquals("NEXT", next, "nextCalledName should delegate to NbtAddress when called"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancer.java
throw new NoAvailableChannelException("No healthy channels available"); } if (availableChannels.size() == 1) { return availableChannels.iterator().next(); } switch (strategy) { case ROUND_ROBIN: return selectRoundRobin(availableChannels); case LEAST_LOADED: return selectLeastLoaded(availableChannels);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KuromojiPager.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 - 5.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java
* stack so that it is returned by the next call to {@link Iterator#next()}. If the element is * not in {@link #nextElements}, this method throws an {@link UnknownElementException}. * * <p>This method is used when testing iterators without a known ordering. We poll the target * iterator's next element and pass it to the reference iterator through this method so it can
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIterator2Test.java
assertSame(fe1, it.next(), "First element must match first page"); assertTrue(it.hasNext(), "Iterator should have second element"); assertSame(fe2, it.next(), "Second element must match first page"); // Next page fetched via fetchMore() assertTrue(it.hasNext(), "Iterator should have third element after fetchMore"); assertSame(fe3, it.next(), "Third element from second page");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/Helpers.java
Iterator<?> expectedIter = expected.iterator(); Iterator<?> actualIter = actual.iterator(); while (expectedIter.hasNext() && actualIter.hasNext()) { if (!equal(expectedIter.next(), actualIter.next())) { fail( "contents were not equal and in the same order: " + "expected = " + expected + ", actual = " + actual);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 17.2K bytes - Viewed (0) -
src/cmd/asm/internal/lex/lex.go
// Tokens; original spacing is lost but we don't need it. type TokenReader interface { // Next returns the next token. Next() ScanToken // The following methods all refer to the most recent token returned by Next. // Text returns the original string representation of the token. Text() string // File reports the source file name of the token. File() string
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 29 18:31:05 UTC 2023 - 4.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/Task.kt
* ---------- * * Tasks control their recurrence schedule. The [runOnce] function returns -1L to signify that the * task should not be executed again. Otherwise it returns a delay until the next execution. * * A task has at most one next execution. If the same task instance is scheduled multiple times, the * earliest one wins. This applies to both executions scheduled with [TaskRunner.Queue.schedule] and
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/DfsReferralData.java
* * @return the expiration time of this entry */ long getExpiration(); /** * Get the next referral in the chain * * @return pointer to next referral, points to self if there is no further referral */ DfsReferralData next(); /** * Get the complete UNC path link for this referral * * @return the link */ String getLink();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0)