- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 67 for 0xcc (0.09 sec)
-
cmd/bucket-replication-utils_gen.go
return } // write "DeleteMarker" err = en.Append(0xac, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x72) if err != nil { return } err = en.WriteBool(z.DeleteMarker) if err != nil { err = msgp.WrapError(err, "DeleteMarker") return } // write "ReplicationTimeStamp"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 21 17:21:35 UTC 2024 - 61.1K bytes - Viewed (0) -
cmd/bootstrap-peer-server_gen.go
if err != nil { return } err = en.WriteInt(z.NEndpoints) if err != nil { err = msgp.WrapError(err, "NEndpoints") return } // write "CmdLines" err = en.Append(0xa8, 0x43, 0x6d, 0x64, 0x4c, 0x69, 0x6e, 0x65, 0x73) if err != nil { return } err = en.WriteArrayHeader(uint32(len(z.CmdLines))) if err != nil { err = msgp.WrapError(err, "CmdLines") return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 21 14:49:49 UTC 2024 - 7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl
uint32_t secs; uint32_t hunds; uint32_t timezone; uint32_t tinterval; uint32_t day; uint32_t month; uint32_t year; uint32_t weekday; } TimeOfDayInfo; [op(0x1c)] int RemoteTOD([in,string,unique] wchar_t *servername, [out,unique] TimeOfDayInfo *info);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.2K bytes - Viewed (0) -
cmd/batch-expire_gen.go
if err != nil { return } err = z.Retry.EncodeMsg(en) if err != nil { err = msgp.WrapError(err, "Retry") return } // write "Rules" err = en.Append(0xa5, 0x52, 0x75, 0x6c, 0x65, 0x73) if err != nil { return } err = en.WriteArrayHeader(uint32(len(z.Rules))) if err != nil { err = msgp.WrapError(err, "Rules") return } for za0001 := range z.Rules {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 01 12:53:30 UTC 2024 - 19.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl
[in] LsarSidArray *sids, [out,unique] LsarRefDomainList *domains, [in,out] LsarTransNameArray *names, [in] uint16_t level, [in,out] uint32_t *count); [op(0x2c)] int LsarOpenPolicy2([in,string,unique] wchar_t *system_name, [in] LsarObjectAttributes *object_attributes, [in] uint32_t desired_access, [out] policy_handle *policy_handle); [op(0x2e)]
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl
[in] LsarSidArray *sids, [out,unique] LsarRefDomainList *domains, [in,out] LsarTransNameArray *names, [in] uint16_t level, [in,out] uint32_t *count); [op(0x2c)] int LsarOpenPolicy2([in,string,unique] wchar_t *system_name, [in] LsarObjectAttributes *object_attributes, [in] uint32_t desired_access, [out] policy_handle *policy_handle); [op(0x2e)]
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (3) -
cmd/xl-storage-format-v1_gen.go
// string "Algorithm" o = append(o, 0x87, 0xa9, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d) o = msgp.AppendString(o, z.Algorithm) // string "DataBlocks" o = append(o, 0xaa, 0x44, 0x61, 0x74, 0x61, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73) o = msgp.AppendInt(o, z.DataBlocks) // string "ParityBlocks" o = append(o, 0xac, 0x50, 0x61, 0x72, 0x69, 0x74, 0x79, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73) o = msgp.AppendInt(o, z.ParityBlocks)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 41.2K bytes - Viewed (0) -
cmd/metacache_gen.go
o = msgp.AppendTime(o, z.started) // string "lh" o = append(o, 0xa2, 0x6c, 0x68) o = msgp.AppendTime(o, z.lastHandout) // string "u" o = append(o, 0xa1, 0x75) o = msgp.AppendTime(o, z.lastUpdate) // string "b" o = append(o, 0xa1, 0x62) o = msgp.AppendString(o, z.bucket) // string "flt" o = append(o, 0xa3, 0x66, 0x6c, 0x74) o = msgp.AppendString(o, z.filter) // string "id"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Nov 08 18:26:08 UTC 2021 - 10K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/CharsTest.java
} } @GwtIncompatible // Chars.fromByteArray public void testFromByteArray() { assertThat(Chars.fromByteArray(new byte[] {0x23, 0x45, (byte) 0xDC})).isEqualTo('\u2345'); assertThat(Chars.fromByteArray(new byte[] {(byte) 0xFE, (byte) 0xDC})).isEqualTo('\uFEDC'); } @GwtIncompatible // Chars.fromByteArray public void testFromByteArrayFails() { assertThrows(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 25.6K bytes - Viewed (0) -
cmd/mrf_gen.go
if err != nil { return } err = en.WriteInt(z.SetIndex) if err != nil { err = msgp.WrapError(err, "SetIndex") return } // write "PoolIndex" err = en.Append(0xa9, 0x50, 0x6f, 0x6f, 0x6c, 0x49, 0x6e, 0x64, 0x65, 0x78) if err != nil { return } err = en.WriteInt(z.PoolIndex) if err != nil { err = msgp.WrapError(err, "PoolIndex") return } // write "Queued"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 22:26:05 UTC 2024 - 6.8K bytes - Viewed (0)