- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 186 for 4094 (0.04 sec)
-
src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java
when(pipe.ensureTreeConnected()).thenReturn(tree); when(tree.acquire()).thenReturn(tree); when(tree.isSMB2()).thenReturn(true); // simplifies stream init when(tree.getReceiveBufferSize()).thenReturn(4096); // Act: first calls construct streams, second calls return cached SmbPipeInputStream in1 = handle.getInput(); SmbPipeInputStream in2 = handle.getInput();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 16.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
} try (final ResponseData responseData = smbClient.doGet(baseUrl + "none")) { assertEquals(0, responseData.getStatus()); assertEquals(404, responseData.getHttpStatusCode()); assertEquals(0, responseData.getContentLength()); assertNull(responseData.getResponseBody()); assertEquals(baseUrl + "none", responseData.getUrl());Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 13.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Call.kt
* * Note that transport-layer success (receiving a HTTP response code, headers and body) does not * necessarily indicate application-layer success: `response` may still indicate an unhappy HTTP * response code like 404 or 500. * * @throws IOException if the request could not be executed due to cancellation, a connectivity * problem or timeout. Because networks can fail during an exchange, it is possible that the
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 3.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/IoTestCase.java
private static void copy(URL url, File file) throws IOException { InputStream in = url.openStream(); try { OutputStream out = new FileOutputStream(file); try { byte[] buf = new byte[4096]; for (int read = in.read(buf); read != -1; read = in.read(buf)) { out.write(buf, 0, read); } } finally { out.close(); } } finally { in.close();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInformationTest.java
assertEquals(8, size); assertEquals(8, encoded); assertEquals(8, decoded); assertNotNull(str); assertTrue(str.contains("4096")); } /** * Test FileInformation constants match expected protocol values */ @Test @DisplayName("Test FileInformation constants match SMB protocol values")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeInputStreamTest.java
when(handle.getPipe()).thenReturn(pipe); // init(th) behavior inside SmbFileInputStream constructor when(tree.isSMB2()).thenReturn(smb2); when(tree.getReceiveBufferSize()).thenReturn(4096); when(tree.getMaximumBufferSize()).thenReturn(65535); when(tree.hasCapability(anyInt())).thenReturn(false); return new SmbPipeInputStream(handle, tree); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
docs/ko/docs/tutorial/path-operation-configuration.md
*경로 작동 데코레이터*를 설정하기 위해서 전달할수 있는 몇 가지 매개변수가 있습니다. /// warning | 경고 아래 매개변수들은 *경로 작동 함수*가 아닌 *경로 작동 데코레이터*에 직접 전달된다는 사실을 기억하십시오. /// ## 응답 상태 코드 *경로 작동*의 응답에 사용될 (HTTP) `status_code`를 정의할수 있습니다. `404`와 같은 `int`형 코드를 직접 전달할수 있습니다. 하지만 각 코드의 의미를 모른다면, `status`에 있는 단축 상수들을 사용할수 있습니다: {* ../../docs_src/path_operation_configuration/tutorial001.py hl[3,17] *} 각 상태 코드들은 응답에 사용되며, OpenAPI 스키마에 추가됩니다.Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java
offset += 8; // sectorsPerAllocationUnit (4 bytes) SMBUtil.writeInt4(16, buffer, offset); offset += 4; // bytesPerSector (4 bytes) SMBUtil.writeInt4(4096, buffer, offset); offset += 4; // Set dataCount using reflection setDataCount(response, offset); int bytesRead = response.readDataWireFormat(buffer, 0, offset);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
} if (httpStatusCode == 404) { storeChildUrlsToQueue(urlQueue, getAnchorSet(document.get(fessConfig.getIndexFieldAnchor()))); if (!indexingHelper.deleteDocument(searchEngineClient, id)) { logger.debug("Failed to delete 404 document: {}", url); } return false; }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), const MAP_ALIGNMENT_SHIFT = 24 pkg syscall (freebsd-arm64), const MAP_ALIGNMENT_SHIFT ideal-int pkg syscall (freebsd-arm64), const MAP_ANON = 4096 pkg syscall (freebsd-arm64), const MAP_ANON ideal-int pkg syscall (freebsd-arm64), const MAP_ANONYMOUS = 4096 pkg syscall (freebsd-arm64), const MAP_ANONYMOUS ideal-int pkg syscall (freebsd-arm64), const MAP_COPY = 2 pkg syscall (freebsd-arm64), const MAP_COPY ideal-int
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0)