- Sort Score
- Result 10 results
- Languages All
Results 141 - 145 of 145 for 0xffff (0.03 sec)
-
src/main/java/jcifs/smb1/util/Encdec.java
*/ public static int enc_uint32be(final int i, final byte[] dst, int di) { dst[di] = (byte) (i >> 24 & 0xFF); di++; dst[di++] = (byte) (i >> 16 & 0xFF); dst[di++] = (byte) (i >> 8 & 0xFF); dst[di] = (byte) (i & 0xFF); return 4; } /** * Encodes a 16-bit unsigned integer in little-endian byte order. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
static final int ATTR_COMPRESSED = 0x800; static final int ATTR_NORMAL = 0x080; static final int ATTR_TEMPORARY = 0x100; static final int ATTR_GET_MASK = 0x7FFF; /* orig 0x7fff */ static final int ATTR_SET_MASK = 0x30A7; /* orig 0x0027 */ static final int DEFAULT_ATTR_EXPIRATION_PERIOD = 5000; static final int HASH_DOT = ".".hashCode();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CipherSuite.kt
// @JvmField val TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256 = init("TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256", 0x00c5) @JvmField val TLS_EMPTY_RENEGOTIATION_INFO_SCSV = init("TLS_EMPTY_RENEGOTIATION_INFO_SCSV", 0x00ff) @JvmField val TLS_FALLBACK_SCSV = init("TLS_FALLBACK_SCSV", 0x5600) @JvmField val TLS_ECDH_ECDSA_WITH_NULL_SHA = init("TLS_ECDH_ECDSA_WITH_NULL_SHA", 0xc001)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 39.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CharMatcher.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 53.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
*/ public class SmbFile extends URLConnection implements SmbResource, SmbConstants { /** * Mask for attributes that can be retrieved from the server */ protected static final int ATTR_GET_MASK = 0x7FFF; /** * Mask for attributes that can be set on the server */ protected static final int ATTR_SET_MASK = 0x30A7; /** * Default expiration period for cached attributes in milliseconds
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)