- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for 0x00ff0000 (0.06 sec)
-
src/main/java/jcifs/smb/MIEName.java
// NAME_LEN if ( buf.length < i + NAME_LEN_SIZE ) { throw new IllegalArgumentException(); } len = 0xff000000 & ( buf[ i++ ] << 24 ); len |= 0x00ff0000 & ( buf[ i++ ] << 16 ); len |= 0x0000ff00 & ( buf[ i++ ] << 8 ); len |= 0x000000ff & buf[ i++ ]; // NAME if ( buf.length < i + len ) { throw new IllegalArgumentException();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java
public static final int NTLMSSP_REQUEST_ACCEPT_RESPONSE = 0x00200000; public static final int NTLMSSP_REQUEST_NON_NT_SESSION_KEY = 0x00400000; /** * Sent by the server in the Type 2 message to indicate that it is * including a Target Information block in the message. The Target * Information block is used in the calculation of the NTLMv2 response. */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmFlags.java
/** * ?? According to spec this is a reserved bit and must be set to zero */ public static final int NTLMSSP_REQUEST_INIT_RESPONSE = 0x00100000; /** * ?? According to spec this is NTLMSSP_NEGOTIATE_IDENTIFY * * If set, requests an identify level token */ public static final int NTLMSSP_REQUEST_ACCEPT_RESPONSE = 0x00200000; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9 static final int DELETE = 0x00010000; // 16 static final int READ_CONTROL = 0x00020000; // 17 static final int WRITE_DAC = 0x00040000; // 18 static final int WRITE_OWNER = 0x00080000; // 19 static final int SYNCHRONIZE = 0x00100000; // 20 static final int GENERIC_ALL = 0x10000000; // 28
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.4K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
/** * */ public static final int DELETE = 0x00010000; // 16 /** * */ public static final int READ_CONTROL = 0x00020000; // 17 /** * */ public static final int WRITE_DAC = 0x00040000; // 18 /** * */ public static final int WRITE_OWNER = 0x00080000; // 19 /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
public static final int DELETE = 0x00010000; // 16 public static final int READ_CONTROL = 0x00020000; // 17 public static final int WRITE_DAC = 0x00040000; // 18 public static final int WRITE_OWNER = 0x00080000; // 19 public static final int SYNCHRONIZE = 0x00100000; // 20 public static final int GENERIC_ALL = 0x10000000; // 28
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9 static final int DELETE = 0x00010000; // 16 static final int READ_CONTROL = 0x00020000; // 17 static final int WRITE_DAC = 0x00040000; // 18 static final int WRITE_OWNER = 0x00080000; // 19 static final int SYNCHRONIZE = 0x00100000; // 20 static final int GENERIC_ALL = 0x10000000; // 28 static final int GENERIC_EXECUTE = 0x20000000; // 29
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/DosError.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/DosError.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; public interface DosError { static final int[][] DOS_ERROR_CODES = { { 0x00000000, 0x00000000 }, { 0x00010001, 0xc0000002 }, { 0x00010002, 0xc0000002 }, { 0x00020001, 0xc000000f }, { 0x00020002, 0xc000006a }, { 0x00030001, 0xc000003a },
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt
assertThat(frameLog(true, 0, 15, TYPE_SETTINGS, FLAG_NONE)) .isEqualTo("<< 0x00000000 15 SETTINGS ") assertThat(frameLog(false, 0, 0, TYPE_SETTINGS, FLAG_ACK)) .isEqualTo(">> 0x00000000 0 SETTINGS ACK") assertThat(frameLog(true, 0, 0, TYPE_SETTINGS, FLAG_ACK)) .isEqualTo("<< 0x00000000 0 SETTINGS ACK") assertThat(frameLog(true, 3, 22, TYPE_HEADERS, FLAG_END_HEADERS))
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.9K bytes - Viewed (0)