- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 59 for 68 (0.02 sec)
-
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoRequestTest.java
assertEquals((byte) 0x01, buffer[66]); assertEquals((byte) 0x04, buffer[67]); // Verify output buffer length assertEquals(0x8000, SMBUtil.readInt4(buffer, 68)); // Verify input buffer offset (should be 0 when no input buffer) assertEquals(0, SMBUtil.readInt2(buffer, 72)); // Verify input buffer length (should be 0 when no input buffer)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
docs/ru/docs/advanced/websockets.md
* `Depends` * `Security` * `Cookie` * `Header` * `Path` * `Query` Они работают так же, как и в других FastAPI эндпоинтах/*операциях пути*: {* ../../docs_src/websockets/tutorial002_an_py310.py hl[68:69,82] *} /// info | Примечание В веб-сокете вызывать `HTTPException` не имеет смысла. Вместо этого нужно использовать `WebSocketException`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Feb 03 13:33:39 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectRequestTest.java
assertEquals(8, size8Method.invoke(request, 1)); assertEquals(8, size8Method.invoke(request, 8)); assertEquals(16, size8Method.invoke(request, 9)); assertEquals(72, size8Method.invoke(request, 68)); // SMB2_HEADER_LENGTH + 4 = 68 } @Test @DisplayName("Should maintain consistent command type") void testCommandTypeConsistency() throws Exception { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
e.fileNameLength = readInt4(buffer, bufferIndex + 60); // e.eaSize = readInt4( buffer, bufferIndex + 64 ); // e.shortNameLength = buffer[bufferIndex + 68] & 0xFF; /* With NT, the shortName is in Unicode regardless of what is negotiated. */ // e.shortName = readString( buffer, bufferIndex + 70, e.shortNameLength );
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.6K bytes - Viewed (0) -
docs/en/docs/advanced/websockets.md
* `Depends` * `Security` * `Cookie` * `Header` * `Path` * `Query` They work the same way as for other FastAPI endpoints/*path operations*: {* ../../docs_src/websockets/tutorial002_an_py310.py hl[68:69,82] *} /// info As this is a WebSocket it doesn't really make sense to raise an `HTTPException`, instead we raise a `WebSocketException`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 5.7K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java
| ((0x80L | (0x3F & codePoint)) << 24); } private static long charToThreeUtf8Bytes(char c) { return ((0x7L << 5) | (c >>> 12)) | ((0x80 | (0x3F & (c >>> 6))) << 8) | ((0x80 | (0x3F & c)) << 16); } private static long charToTwoUtf8Bytes(char c) { // c has at most 11 bits return ((0x3L << 6) | (c >>> 6)) | ((0x80 | (0x3F & c)) << 8); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 11.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrObjectRestoreAlreadyInProgress-63] _ = x[ErrNoSuchKey-64] _ = x[ErrNoSuchUpload-65] _ = x[ErrInvalidVersionID-66] _ = x[ErrNoSuchVersion-67] _ = x[ErrNotImplemented-68] _ = x[ErrPreconditionFailed-69] _ = x[ErrRequestTimeTooSkewed-70] _ = x[ErrSignatureDoesNotMatch-71] _ = x[ErrMethodNotAllowed-72] _ = x[ErrInvalidPart-73] _ = x[ErrInvalidPartOrder-74] _ = x[ErrMissingPart-75]
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 21.6K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
### Development Team - 2-3 Senior Java developers with SMB protocol expertise - 1 QA engineer for test infrastructure - 1 DevOps engineer for CI/CD setup ### Timeline - **Total Duration**: 6-8 months for all features - **Phases 1-2**: 2-3 months (High priority) - **Phases 3-4**: 2 months (Medium priority) - **Phases 5-6**: 2-3 months (Low priority) ### Infrastructure - Windows Server test lab
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
docs/debugging/inspect/export.go
} if bytes.Equal(buf[4:8], []byte("1 ")) { // Set as 1,0. major, minor = 1, 0 } else { major, minor = binary.LittleEndian.Uint16(buf[4:6]), binary.LittleEndian.Uint16(buf[6:8]) } if major > xlVersionMajor { return buf[8:], major, minor, fmt.Errorf("xlMeta: unknown major version %d found", major) } return buf[8:], major, minor, nil } const xlMetaInlineDataVer = 1
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jan 17 19:38:44 UTC 2025 - 9.1K bytes - Viewed (0)