- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for AppendTime (0.06 sec)
-
cmd/object-api-datatypes_gen.go
o = msgp.AppendString(o, z.Name) // string "Created" o = append(o, 0xa7, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64) o = msgp.AppendTime(o, z.Created) // string "Deleted" o = append(o, 0xa7, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64) o = msgp.AppendTime(o, z.Deleted) // string "Versioning" o = append(o, 0xaa, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x69, 0x6e, 0x67) o = msgp.AppendBool(o, z.Versioning)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Jan 20 14:49:07 UTC 2025 - 71.9K bytes - Viewed (0) -
cmd/bucket-replication-utils_gen.go
// string "st" o = append(o, 0x8b, 0xa2, 0x73, 0x74) o = msgp.AppendTime(o, z.StartTime) // string "lst" o = append(o, 0xa3, 0x6c, 0x73, 0x74) o = msgp.AppendTime(o, z.LastUpdate) // string "id" o = append(o, 0xa2, 0x69, 0x64) o = msgp.AppendString(o, z.ResyncID) // string "rdt" o = append(o, 0xa3, 0x72, 0x64, 0x74) o = msgp.AppendTime(o, z.ResyncBeforeDate) // string "rst"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Apr 03 06:45:06 UTC 2025 - 59.8K bytes - Viewed (0) -
cmd/local-locker_gen.go
// string "LastCleanup" o = append(o, 0xab, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x75, 0x70) if z.LastCleanup == nil { o = msgp.AppendNil(o) } else { o = msgp.AppendTime(o, *z.LastCleanup) } return } // UnmarshalMsg implements msgp.Unmarshaler func (z *lockStats) UnmarshalMsg(bts []byte) (o []byte, err error) { var field []byte _ = field var zb0001 uint32
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jan 31 19:54:34 UTC 2025 - 16.7K bytes - Viewed (0) -
cmd/storage-datatypes_gen.go
func (z VolInfo) MarshalMsg(b []byte) (o []byte, err error) { o = msgp.Require(b, z.Msgsize()) // array header, size 3 o = append(o, 0x93) o = msgp.AppendString(o, z.Name) o = msgp.AppendTime(o, z.Created) o = msgp.AppendTime(o, z.Deleted) return } // UnmarshalMsg implements msgp.Unmarshaler func (z *VolInfo) UnmarshalMsg(bts []byte) (o []byte, err error) { var zb0001 uint32
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 25 05:41:04 UTC 2025 - 152K bytes - Viewed (0) -
cmd/xl-storage-format-v1_gen.go
o = msgp.AppendInt64(o, z.Size) // string "as" o = append(o, 0xa2, 0x61, 0x73) o = msgp.AppendInt64(o, z.ActualSize) // string "mt" o = append(o, 0xa2, 0x6d, 0x74) o = msgp.AppendTime(o, z.ModTime) if (zb0001Mask & 0x20) == 0 { // if not omitted // string "i" o = append(o, 0xa1, 0x69) o = msgp.AppendBytes(o, z.Index) } if (zb0001Mask & 0x40) == 0 { // if not omitted
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Dec 15 22:50:12 UTC 2024 - 41.4K bytes - Viewed (0) -
cmd/data-usage-cache_gen.go
o = append(o, 0xa7, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64) o = msgp.AppendTime(o, z.started) // string "cycleCompleted" o = append(o, 0xae, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64) o = msgp.AppendArrayHeader(o, uint32(len(z.cycleCompleted))) for za0001 := range z.cycleCompleted { o = msgp.AppendTime(o, z.cycleCompleted[za0001]) } return }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Dec 15 22:50:12 UTC 2024 - 86.4K bytes - Viewed (0)