- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 198 for k1024 (3.12 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/TrailersTest.kt
} } } private fun MockResponse.Builder.body( protocol: Protocol, body: String, ) = apply { when (protocol) { Protocol.HTTP_1_1 -> chunkedBody(body, 1024) // Force multiple chunks. else -> body(body) } } private fun enableProtocol(protocol: Protocol) { if (protocol == Protocol.HTTP_2) { enableTls() client = client
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 18:57:05 UTC 2025 - 18K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbRandomAccessFileTest.java
when(file.ensureTreeConnected()).thenReturn(tree); when(tree.getConfig()).thenReturn(cfg); when(tree.getReceiveBufferSize()).thenReturn(1024); when(tree.getSendBufferSize()).thenReturn(1024); when(tree.hasCapability(anyInt())).thenAnswer(inv -> ntSmbsCap && inv.getArgument(0).equals(SmbConstants.CAP_NT_SMBS)); when(tree.areSignaturesActive()).thenReturn(false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
api/go1.3.txt
pkg syscall (linux-arm-cgo), type Flock_t struct, Whence int16 pkg syscall (netbsd-386), const CLONE_CSIGNAL = 255 pkg syscall (netbsd-386), const CLONE_CSIGNAL ideal-int pkg syscall (netbsd-386), const CLONE_FILES = 1024 pkg syscall (netbsd-386), const CLONE_FILES ideal-int pkg syscall (netbsd-386), const CLONE_FS = 512 pkg syscall (netbsd-386), const CLONE_FS ideal-int pkg syscall (netbsd-386), const CLONE_PID = 4096
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jun 02 02:45:00 UTC 2014 - 117K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
Consumer<String> outputCallback = output -> outputs.add(output); try { JobProcess jobProcess = processHelper.startProcess(sessionId, cmdList, pbCall, 1024, outputCallback); assertNotNull(jobProcess); assertTrue(processHelper.isProcessRunning(sessionId)); // Wait a bit for the process to complete Thread.sleep(200);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 15.1K bytes - Viewed (0) -
src/archive/zip/zip_test.go
f(w) return suffixIsZip64(t, ss) } type sizedReaderAt interface { io.ReaderAt Size() int64 } func suffixIsZip64(t *testing.T, zip sizedReaderAt) bool { d := make([]byte, 1024) if _, err := zip.ReadAt(d, zip.Size()-int64(len(d))); err != nil { t.Fatalf("ReadAt: %v", err) } sigOff := findSignatureInBlock(d) if sigOff == -1 { t.Errorf("failed to find signature in block")
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu May 23 01:00:11 UTC 2024 - 19.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java
void testBufferAlignment() { // Given when(mockConfig.getMaximumVersion()).thenReturn(DialectVersion.SMB311); request = new Smb2NegotiateRequest(mockConfig, 0); byte[] buffer = new byte[1024]; // When int bytesWritten = request.writeBytesWireFormat(buffer, 0); // Then - Total bytes written should be 8-byte aligned assertEquals(0, bytesWritten % 8); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt
val mockResponse1 = MockResponse.Builder() transferKind.setBody(mockResponse1, "ABCDEFGHIJK", 1024) server.enqueue(mockResponse1.build()) val mockResponse2 = MockResponse.Builder() transferKind.setBody(mockResponse2, "LMNOPQRSTUV", 1024) server.enqueue(mockResponse2.build()) val call1 = client.newCall(newRequest("/")) val response1 = call1.execute()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 133.2K bytes - Viewed (0) -
src/test/java/jcifs/SmbConstantsTest.java
assertEquals(35000, SmbConstants.DEFAULT_SO_TIMEOUT); assertEquals(0xFFFF, SmbConstants.DEFAULT_RCV_BUF_SIZE); assertEquals(0xFFFF, SmbConstants.DEFAULT_SND_BUF_SIZE); assertEquals(1024, SmbConstants.DEFAULT_NOTIFY_BUF_SIZE); assertEquals(250, SmbConstants.DEFAULT_SSN_LIMIT); assertEquals(35000, SmbConstants.DEFAULT_CONN_TIMEOUT); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
authMethod = null; final InputStream errorStream = connection.getErrorStream(); if (errorStream != null && errorStream.available() != 0) { int count; final byte[] buf = new byte[1024]; while ((count = errorStream.read(buf, 0, 1024)) != -1) { ; } } String authHeader; if (response == HTTP_UNAUTHORIZED) {
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/spnego/NegTokenInitTest.java
} @Test @DisplayName("Large MIC values are handled correctly") void testLargeMicValue() throws Exception { byte[] largeMic = new byte[1024]; Arrays.fill(largeMic, (byte) 0xAB); NegTokenInit init = new NegTokenInit(new ASN1ObjectIdentifier[] { OID_KRB }, 0, null, largeMic); byte[] encoded = init.toByteArray();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0)