- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 265 for continues (0.06 sec)
-
src/main/java/jcifs/smb1/util/MD4.java
context[2] = 0x98BADCFE; context[3] = 0x10325476; count = 0L; for (int i = 0; i < BLOCK_LENGTH; i++) { buffer[i] = 0; } } /** * Continues an MD4 message digest using the input byte. */ @Override public void engineUpdate(final byte b) { // compute number of bytes still unhashed; ie. present in buffer
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/ShareEnumIteratorTest.java
// Verify filter called once per entry verify(filter, times(3)).accept(any()); } @Test @DisplayName("Filter throws CIFSException: entry is skipped and iteration continues") void filterThrows_skipsAndContinues() throws Exception { SmbFile parent = newParent(); List<FileEntry> entries = Arrays.asList(entry("bad", SmbConstants.TYPE_SHARE), entry("good", SmbConstants.TYPE_SHARE));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmServletTest.java
verify(session).setAttribute("ntlmuser", "user"); verify(session).setAttribute("ntlmdomain", "TEST_DOMAIN"); // Verify that the chain continues verify(response, never()).setStatus(HttpServletResponse.SC_UNAUTHORIZED); } } /** * Test the service method with NTLM authentication that fails.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java
* Future} is "completed" even if it is cancelled while its underlying work continues on a * thread, an RPC, etc. The {@code Future} is also "completed" if it fails "early" -- for * example, if the deadline expires on a {@code Future} returned from {@link * Futures#withTimeout} while the {@code Future} it wraps continues its underlying work. So
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
} // Test constructor with null config public void test_constructor_nullConfig() { try { new FessTimeResourceProvider(null); // Constructor may accept null, so test continues assertTrue(true); } catch (NullPointerException e) { // Expected if constructor validates input assertTrue(true); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java
// are handled in the switch statement's default case which continues the loop byte[] data = new byte[] { 1, 2 }; // Use a type that's not SESSION_MESSAGE or SESSION_KEEP_ALIVE byte[] unknownHeader = new byte[] { (byte) 0x90, 0, 0, 0 }; byte[] fullData = concat(unknownHeader, // Unknown packet type - will continue to next packet messageHeader(2), data);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java
import java.util.concurrent.locks.Lock; import org.jspecify.annotations.Nullable; /** * Utilities for treating interruptible operations as uninterruptible. In all cases, if a thread is * interrupted during such a call, the call continues to block until the result is available or the * timeout elapses, and only then re-interrupts the thread. * * @author Anthony Zana * @since 10.0 */ @GwtCompatible public final class Uninterruptibles {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.8K bytes - Viewed (0) -
android/pom.xml
<properties> <!-- When building Guava, you can pass (e.g.) `-Dsurefire.toolchain.version=21` to change which version to run tests under. You may find that you need to use Java 11+ to *build* Guava, but it continues to work under Java 8, and you can run tests to verify that, as we do. --> <surefire.toolchain.version>${java.specification.version}</surefire.toolchain.version>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 24.3K bytes - Viewed (0) -
pom.xml
<properties> <!-- When building Guava, you can pass (e.g.) `-Dsurefire.toolchain.version=21` to change which version to run tests under. You may find that you need to use Java 11+ to *build* Guava, but it continues to work under Java 8, and you can run tests to verify that, as we do. --> <surefire.toolchain.version>${java.specification.version}</surefire.toolchain.version>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 23.9K bytes - Viewed (0) -
docs/en/docs/async.md
Instead of that, by being an "asynchronous" system, once finished, the task can wait in line a little bit (some microseconds) for the computer / program to finish whatever it went to do, and then come back to take the results and continue working with them.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 24K bytes - Viewed (0)