- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 83 for 0x7f (0.03 sec)
-
guava/src/com/google/common/hash/Murmur3_32HashFunction.java
return ((0xFL << 4) | (codePoint >>> 18)) | ((0x80L | (0x3F & (codePoint >>> 12))) << 8) | ((0x80L | (0x3F & (codePoint >>> 6))) << 16) | ((0x80L | (0x3F & codePoint)) << 24); } private static long charToThreeUtf8Bytes(char c) { return ((0x7L << 5) | (c >>> 12)) | ((0x80 | (0x3F & (c >>> 6))) << 8) | ((0x80 | (0x3F & c)) << 16); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 11.8K bytes - Viewed (0) -
cmd/last-minute_gen.go
// string "Totals" o = append(o, 0x82, 0xa6, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x73) o = msgp.AppendArrayHeader(o, uint32(60)) for za0002 := range z[za0001].Totals { // map header, size 3 // string "Total" o = append(o, 0x83, 0xa5, 0x54, 0x6f, 0x74, 0x61, 0x6c) o = msgp.AppendInt64(o, z[za0001].Totals[za0002].Total) // string "Size" o = append(o, 0xa4, 0x53, 0x69, 0x7a, 0x65)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 05 21:45:49 UTC 2022 - 17.2K bytes - Viewed (0) -
cmd/data-usage-cache_gen.go
o = append(o, 0x84, 0xa7, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74) o = msgp.AppendUint64(o, z.current) // string "next" o = append(o, 0xa4, 0x6e, 0x65, 0x78, 0x74) o = msgp.AppendUint64(o, z.next) // string "started" o = append(o, 0xa7, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64) o = msgp.AppendTime(o, z.started) // string "cycleCompleted"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 75K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Base64.java
while (i < length) { block = ((bytes[i++] & 0xff) << 16) | ((bytes[i++] & 0xff) << 8) | (bytes[i++] & 0xff); buffer.append(ALPHABET.charAt(block >>> 18)); buffer.append(ALPHABET.charAt((block >>> 12) & 0x3f)); buffer.append(ALPHABET.charAt((block >>> 6) & 0x3f)); buffer.append(ALPHABET.charAt(block & 0x3f)); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.7K bytes - Viewed (0) -
internal/grid/grid_types_msgp_test.go
// map header, size 3 // write "OrgNum" err = en.Append(0x83, 0xa6, 0x4f, 0x72, 0x67, 0x4e, 0x75, 0x6d) if err != nil { return } err = en.WriteInt(z.OrgNum) if err != nil { err = msgp.WrapError(err, "OrgNum") return } // write "OrgString" err = en.Append(0xa9, 0x4f, 0x72, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67) if err != nil { return } err = en.WriteString(z.OrgString)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Nov 21 01:09:35 UTC 2023 - 8.1K bytes - Viewed (0) -
cmd/tier-last-day-stats_gen.go
o = append(o, 0x82, 0xa4, 0x42, 0x69, 0x6e, 0x73) o = msgp.AppendArrayHeader(o, uint32(24)) for zb0009 := range zb0008.Bins { o, err = zb0008.Bins[zb0009].MarshalMsg(o) if err != nil { err = msgp.WrapError(err, zb0007, "Bins", zb0009) return } } // string "UpdatedAt" o = append(o, 0xa9, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74) o = msgp.AppendTime(o, zb0008.UpdatedAt) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 21 17:21:35 UTC 2024 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Base64Util.java
final int i = ((inData[inIndex] & 0xff) << 16) + ((inData[inIndex + 1] & 0xff) << 8) + (inData[inIndex + 2] & 0xff); outData[outIndex] = ENCODE_TABLE[i >> 18]; outData[outIndex + 1] = ENCODE_TABLE[i >> 12 & 0x3f]; outData[outIndex + 2] = ENCODE_TABLE[i >> 6 & 0x3f]; outData[outIndex + 3] = ENCODE_TABLE[i & 0x3f]; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Name.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
/** * */ public static final byte SMB_COM_SESSION_SETUP_ANDX = (byte) 0x73; /** * */ public static final byte SMB_COM_LOGOFF_ANDX = (byte) 0x74; /** * */ public static final byte SMB_COM_TREE_CONNECT_ANDX = (byte) 0x75; /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl
typedef struct { uint32_t idx; unicode_string name; } SamrSamEntry; typedef struct { uint32_t count; [size_is(count)] SamrSamEntry *entries; } SamrSamArray; [op(0x0f)] int SamrEnumerateAliasesInDomain([in] policy_handle *domain_handle, [in,out] uint32_t *resume_handle, [in] uint32_t acct_flags, [out,unique] SamrSamArray *sam, [out] uint32_t num_entries); [op(0x1b)]
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.1K bytes - Viewed (0)