- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 73 for 0x8000 (0.07 sec)
-
src/main/java/jcifs/SmbConstants.java
static final int FLAGS2_STATUS32 = 0x4000; static final int FLAGS2_UNICODE = 0x8000; static final int CAP_NONE = 0x0000; static final int CAP_RAW_MODE = 0x0001; static final int CAP_MPX_MODE = 0x0002; static final int CAP_UNICODE = 0x0004; static final int CAP_LARGE_FILES = 0x0008; static final int CAP_NT_SMBS = 0x0010;
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/internal/smb2/tree/Smb2TreeConnectResponse.java
/** * */ public static final int SMB2_SHAREFLAG_ENABLE_HASH_V1 = 0x2000; /** * */ public static final int SMB2_SHAREFLAG_ENABLE_HASH_V2 = 0x4000; /** * */ public static final int SMB2_SHAREFLAG_ENCRYPT_DATA = 0x8000; /** * */ public static final int SMB2_SHARE_CAP_DFS = 0x8; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon May 23 14:35:20 UTC 2022 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
static final int FLAGS2_PERMIT_READ_IF_EXECUTE_PERM = 0x2000; static final int FLAGS2_STATUS32 = 0x4000; static final int FLAGS2_UNICODE = 0x8000; static final int CAP_NONE = 0x0000; static final int CAP_RAW_MODE = 0x0001; static final int CAP_MPX_MODE = 0x0002; static final int CAP_UNICODE = 0x0004;
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/pac/kerberos/KerberosToken.java
throw new PACDecodingException("Empty kerberos token"); byte[] content; try ( ASN1InputStream stream = new ASN1InputStream(token) ) { content = ASN1Util.readUnparsedTagged(0, 0x8000, stream); }catch ( IOException e ) { throw new PACDecodingException("Malformed kerberos token", e); } try ( ASN1InputStream stream = new ASN1InputStream(content) ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 3K bytes - Viewed (0) -
src/archive/zip/struct.go
// but these seem to be the values agreed on by tools. s_IFMT = 0xf000 s_IFSOCK = 0xc000 s_IFLNK = 0xa000 s_IFREG = 0x8000 s_IFBLK = 0x6000 s_IFDIR = 0x4000 s_IFCHR = 0x2000 s_IFIFO = 0x1000 s_ISUID = 0x800 s_ISGID = 0x400 s_ISVTX = 0x200 msdosDir = 0x10 msdosReadOnly = 0x01 )
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue May 28 21:41:09 UTC 2024 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
/** * */ public static final int FILE_OPEN_BY_FILE_ID = 0x2000; /** * */ public static final int FILE_OPEN_FOR_BACKUP_INTENT = 0x4000; /** * */ public static final int FILE_NO_COMPRESSION = 0x8000; /** * */ public static final int FILE_OPEN_REQUIRING_OPLOCK = 0x10000; /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 09:52:11 UTC 2019 - 14.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/net/InetAddressesTest.java
() -> InetAddresses.getTeredoInfo((Inet6Address) ip)); } String validTeredoAddress = "2001:0000:4136:e378:8000:63bf:3fff:fdd2"; String serverStr = "65.54.227.120"; String clientStr = "192.0.2.45"; int port = 40000; int flags = 0x8000; InetAddress ip = InetAddresses.forString(validTeredoAddress); assertTrue(InetAddresses.isTeredoAddress((Inet6Address) ip));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 24 16:44:05 UTC 2024 - 35.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java
private static final int SHARING_COMPATIBILITY = 0x00; private static final int SHARING_DENY_READ_WRITE_EXECUTE = 0x10; private static final int SHARING_DENY_WRITE = 0x20; private static final int SHARING_DENY_READ_EXECUTE = 0x30; private static final int SHARING_DENY_NONE = 0x40; private static final int DO_NOT_CACHE = 0x1000; // bit 12
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
static final int SHARING_COMPATIBILITY = 0x00; static final int SHARING_DENY_READ_WRITE_EXECUTE = 0x10; static final int SHARING_DENY_WRITE = 0x20; static final int SHARING_DENY_READ_EXECUTE = 0x30; static final int SHARING_DENY_NONE = 0x40; static final int DO_NOT_CACHE = 0x1000; // bit 12 static final int WRITE_THROUGH = 0x4000; // bit 14 static final int OPEN_FN_CREATE = 0x10;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndXResponse.java
import java.io.UnsupportedEncodingException; class SmbComTreeConnectAndXResponse extends AndXServerMessageBlock { private static final int SMB_SUPPORT_SEARCH_BITS = 0x0001; private static final int SMB_SHARE_IS_IN_DFS = 0x0002; boolean supportSearchBits, shareIsInDfs; String service, nativeFileSystem = ""; SmbComTreeConnectAndXResponse( ServerMessageBlock andx ) { super( andx ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.9K bytes - Viewed (0)