- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for appendTime (0.11 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 Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 10 15:31:51 UTC 2024 - 70.1K 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 Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 21 17:21:35 UTC 2024 - 61.1K 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 Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 75K bytes - Viewed (0) -
cmd/bucket-stats_gen.go
if err != nil { err = msgp.WrapError(err, "Stats", za0001) return } } // string "Timestamp" o = append(o, 0xa9, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70) o = msgp.AppendTime(o, z.Timestamp) return } // UnmarshalMsg implements msgp.Unmarshaler func (z *BucketStatsMap) UnmarshalMsg(bts []byte) (o []byte, err error) { var field []byte _ = field var zb0001 uint32
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Feb 06 06:00:45 UTC 2024 - 57.5K bytes - Viewed (0) -
cmd/xl-storage_test.go
// Create test files for further reading. for i, appendFile := range appendFiles { err = xlStorage.AppendFile(context.Background(), volume, appendFile.fileName, []byte("hello, world")) if err != appendFile.expectedErr { t.Fatalf("Creating file failed: %d %#v, expected: %s, got: %s", i+1, appendFile, appendFile.expectedErr, err) } } { buf := make([]byte, 5)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 66.7K bytes - Viewed (0) -
cmd/xl-storage.go
if err != nil { return err } return s.writeAll(ctx, volume, path, b, true, volumeDir) } // AppendFile - append a byte array at path, if file doesn't exist at // path this call explicitly creates it. func (s *xlStorage) AppendFile(ctx context.Context, volume string, path string, buf []byte) (err error) { volumeDir, err := s.getVolDir(volume) if err != nil { return err }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 91.3K bytes - Viewed (0)