- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 254 for 0x41 (0.02 sec)
-
docs/smb3-features/01-smb3-lease-design.md
### 3.1 Lease State Flags ```java public class Smb2LeaseState { // Lease state flags (can be combined) public static final int SMB2_LEASE_NONE = 0x00; public static final int SMB2_LEASE_READ_CACHING = 0x01; // R - Read caching public static final int SMB2_LEASE_HANDLE_CACHING = 0x02; // H - Handle caching public static final int SMB2_LEASE_WRITE_CACHING = 0x04; // W - Write caching // Common combinations
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
* implementation. */ /** SMB2 negotiate protocol command */ protected static final short SMB2_NEGOTIATE = 0x00; /** SMB2 session setup command */ protected static final short SMB2_SESSION_SETUP = 0x01; /** SMB2 logoff command */ protected static final short SMB2_LOGOFF = 0x02; /** SMB2 tree connect command */ protected static final short SMB2_TREE_CONNECT = 0x0003; /** SMB2 tree disconnect command */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java
*/ public void performChannelBinding(ChannelInfo channel) throws IOException { // MS-SMB2 3.2.4.1.6: Alternative Channel Creation // Channel binding requires SMB2_SESSION_FLAG_BINDING (0x01) in session setup // Calculate channel binding hash per MS-SMB2 3.2.5.3.1 byte[] bindingInfo = calculateBindingInfo(channel); byte[] bindingHash = calculateBindingHash(bindingInfo);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 20K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
if (msg.startsWith("NTLM ")) { byte[] challenge; if (pathInfo == null || server == null) { final String mb = NbtAddress.getByName(NbtAddress.MASTER_BROWSER_NAME, 0x01, null).getHostAddress(); dc = UniAddress.getByName(mb); } else { dc = UniAddress.getByName(server, possibleWorkgroup); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
} public static class WitnessIPAddress { private final InetAddress address; private final int flags; public static final int IPV4 = 0x01; public static final int IPV6 = 0x02; public WitnessIPAddress(InetAddress address) { this.address = address; this.flags = address.getAddress().length == 4 ? IPV4 : IPV6;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2Test.kt
assertThat(b).isEqualTo(2.toByte()) } } }, ) } @Test fun dataFrameNotAssociateWithStream() { val payload = byteArrayOf(0x01, 0x02) writeMedium(frame, payload.size) frame.writeByte(Http2.TYPE_DATA) frame.writeByte(FLAG_NONE) frame.writeInt(0) frame.write(payload) assertFailsWith<IOException> {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 28.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
*/ public static final byte SMB_COM_CREATE_DIRECTORY = (byte) 0x00; /** * SMB command to delete a directory. */ public static final byte SMB_COM_DELETE_DIRECTORY = (byte) 0x01; /** * SMB command to close a file handle. */ public static final byte SMB_COM_CLOSE = (byte) 0x04; /** * SMB command to delete a file. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ShortsTest.java
assertThat(Shorts.toByteArray((short) 0x2345)).isEqualTo(new byte[] {0x23, 0x45}); assertThat(Shorts.toByteArray((short) 0xFEDC)).isEqualTo(new byte[] {(byte) 0xFE, (byte) 0xDC}); } @GwtIncompatible // Shorts.fromByteArray public void testFromByteArray() { assertThat(Shorts.fromByteArray(new byte[] {0x23, 0x45})).isEqualTo((short) 0x2345);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.6K bytes - Viewed (0) -
src/cmd/asm/internal/asm/operand_test.go
{"$(112+8)", "$120"}, {"$(1<<63)", "$-9223372036854775808"}, {"$-1", "$-1"}, {"$0", "$0"}, {"$0-0", "$0"}, {"$0-16", "$-16"}, {"$0x000FFFFFFFFFFFFF", "$4503599627370495"}, {"$0x01", "$1"}, {"$0x02", "$2"}, {"$0x04", "$4"}, {"$0x3FE", "$1022"}, {"$0x7fffffe00000", "$140737486258176"}, {"$0xfffffffffffff001", "$-4095"}, {"$1", "$1"}, {"$1.0", "$(1.0)"}, {"$10", "$10"},
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 29 18:31:05 UTC 2023 - 23.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64enc.s
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jul 24 01:11:41 UTC 2023 - 43.9K bytes - Viewed (0)