- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 95 for 8194 (0.02 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilJvm.kt
} else { Long.MAX_VALUE } timeout().deadlineNanoTime(nowNs + minOf(originalDurationNs, timeUnit.toNanos(duration.toLong()))) return try { val skipBuffer = Buffer() while (read(skipBuffer, 8192) != -1L) { skipBuffer.clear() } true // Success! The source has been exhausted. } catch (_: InterruptedIOException) { false // We ran out of time before exhausting the source. } finally {Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 10.2K bytes - Viewed (1) -
api/go1.13.txt
pkg syscall (netbsd-arm64-cgo), const CLONE_FS ideal-int pkg syscall (netbsd-arm64-cgo), const CLONE_PID = 4096 pkg syscall (netbsd-arm64-cgo), const CLONE_PID ideal-int pkg syscall (netbsd-arm64-cgo), const CLONE_PTRACE = 8192 pkg syscall (netbsd-arm64-cgo), const CLONE_PTRACE ideal-int pkg syscall (netbsd-arm64-cgo), const CLONE_SIGHAND = 2048 pkg syscall (netbsd-arm64-cgo), const CLONE_SIGHAND ideal-int
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Aug 08 18:44:16 UTC 2019 - 452.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java
sink.assertBytes(new byte[] {1, 2, 3, 4, 5, 6, 7, 8}); } public void testCorrectExceptions() { Sink sink = new Sink(4); assertThrows(IndexOutOfBoundsException.class, () -> sink.putBytes(new byte[8], -1, 4)); assertThrows(IndexOutOfBoundsException.class, () -> sink.putBytes(new byte[8], 0, 16)); assertThrows(IndexOutOfBoundsException.class, () -> sink.putBytes(new byte[8], 0, -1)); } /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 18:19:59 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java
} @Test @DisplayName("Test configuration usage for notify buffer size") void testConfigurationNotifyBufferSize() { int notifyBufferSize = 8192; when(mockConfig.getNotifyBufferSize()).thenReturn(notifyBufferSize); notifyChange = new NtTransNotifyChange(mockConfig, 0x1234, FILE_NOTIFY_CHANGE_FILE_NAME, false);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java
lenient().when(mockContext.getBufferCache()).thenReturn(mockBufferCache); // Setup buffer cache to return buffers for sendrecv operations lenient().when(mockBufferCache.getBuffer()).thenReturn(new byte[8192]); } /** * Helper method to create a DcerpcPipeHandle with injected mocks * Uses mock to avoid constructor issues while allowing real method calls */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
api/go1.3.txt
pkg syscall (netbsd-386), const CLONE_FS ideal-int pkg syscall (netbsd-386), const CLONE_PID = 4096 pkg syscall (netbsd-386), const CLONE_PID ideal-int pkg syscall (netbsd-386), const CLONE_PTRACE = 8192 pkg syscall (netbsd-386), const CLONE_PTRACE ideal-int pkg syscall (netbsd-386), const CLONE_SIGHAND = 2048 pkg syscall (netbsd-386), const CLONE_SIGHAND ideal-int pkg syscall (netbsd-386), const CLONE_VFORK = 16384
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Mon Jun 02 02:45:00 UTC 2014 - 117K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcHandleTest.java
void setUp() { // Setup buffer cache mocks with lenient stubbing lenient().when(mockContext.getBufferCache()).thenReturn(mockBufferCache); lenient().when(mockBufferCache.getBuffer()).thenReturn(new byte[8192]); handle = new TestDcerpcHandle(mockContext, mockBinding); } @Nested @DisplayName("Binding Parsing Tests") class BindingParsingTests { @ParameterizedTest
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.3K bytes - Viewed (0) -
docs/lambda/README.md
... ... MinIO Object Storage Server Copyright: 2015-2023 MinIO, Inc. License: GNU AGPLv3 <https://www.gnu.org/licenses/agpl-3.0.html> Version: DEVELOPMENT.2023-02-05T05-17-27Z (go1.19.4 linux/amd64) ... ... Object Lambda ARNs: arn:minio:s3-object-lambda::function:webhook ``` ### Lambda Target with Auth Token
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.7K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrAdminInvalidGroupName-189] _ = x[ErrAdminNoSuchJob-190] _ = x[ErrAdminNoSuchPolicy-191] _ = x[ErrAdminPolicyChangeAlreadyApplied-192] _ = x[ErrAdminInvalidArgument-193] _ = x[ErrAdminInvalidAccessKey-194] _ = x[ErrAdminInvalidSecretKey-195] _ = x[ErrAdminConfigNoQuorum-196] _ = x[ErrAdminConfigTooLarge-197] _ = x[ErrAdminConfigBadJSON-198] _ = x[ErrAdminNoSuchConfigTarget-199]
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 21.6K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
* * @author Jason van Zyl */ public class PluginDescriptorBuilder { public static final String PLUGIN_2_0_0 = "http://maven.apache.org/PLUGIN/2.0.0"; private static final int BUFFER_SIZE = 8192; public interface StreamSupplier { InputStream open() throws IOException; } public interface ReaderSupplier { Reader open() throws IOException; } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Mar 25 09:45:07 UTC 2025 - 17.5K bytes - Viewed (0)