- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 478 for continues (0.05 sec)
-
android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java
* * <p>The execution of tasks is done by one thread as long as there are tasks left in the queue. * When a task is {@linkplain Thread#interrupt interrupted}, execution of subsequent tasks * continues. See {@link QueueWorker#workOnQueue} for details. * * <p>{@code RuntimeException}s thrown by tasks are simply logged and the executor keeps trucking.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.6K bytes - Viewed (0) -
cmd/bucket-listobjects-handlers.go
// criteria to return a subset of the objects in a bucket. // // NOTE: It is recommended that this API to be used for application development. // MinIO continues to support ListObjectsV1 and V2 for supporting legacy tools. func (api objectAPIHandlers) ListObjectsV2MHandler(w http.ResponseWriter, r *http.Request) { ctx := newContext(r, w, "ListObjectsV2M")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Feb 03 21:03:04 UTC 2025 - 11.5K bytes - Viewed (0) -
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) -
docs/contribute/code_of_conduct.md
of releasing and managing open source software. We’ve seen incredible support and enthusiasm from thousands of people who have already contributed to our projects — and we want to ensure our community continues to be truly open for everyone. This code of conduct outlines our expectations for participants, as well as steps to reporting unacceptable behavior. We are committed to providing a welcoming and inspiring community for all and
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 5.1K 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) -
docs/changelogs/changelog_2x.md
for OkHttp 2.0 and 2.1 will continue to work with this update. * **`COMPATIBLE_TLS` no longer supports SSLv3.** In response to the [POODLE](https://googleonlinesecurity.blogspot.ca/2014/10/this-poodle-bites-exploiting-ssl-30.html) vulnerability, OkHttp no longer offers SSLv3 when negotiation an HTTPS connection. If you continue to need to connect to webservers
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K 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)