Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for appendTime (0.2 sec)

  1. cmd/bucket-metadata_gen.go

    	o = msgp.AppendTime(o, z.PolicyConfigUpdatedAt)
    	// string "ObjectLockConfigUpdatedAt"
    	o = append(o, 0xb9, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74)
    	o = msgp.AppendTime(o, z.ObjectLockConfigUpdatedAt)
    	// string "EncryptionConfigUpdatedAt"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 25 05:52:39 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  2. src/log/slog/internal/benchmarks/handlers.go

    	case slog.KindTime:
    		h.appendTime(buf, v.Time())
    	case slog.KindAny:
    		a := v.Any()
    		switch a := a.(type) {
    		case error:
    			buf.WriteString(a.Error())
    		default:
    			fmt.Fprint(buf, a)
    		}
    	default:
    		panic(fmt.Sprintf("bad kind: %s", v.Kind()))
    	}
    }
    
    func (h *fastTextHandler) appendTime(buf *buffer.Buffer, t time.Time) {
    	*buf = strconv.AppendInt(*buf, t.Unix(), 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 20:33:37 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. cmd/metacache_gen.go

    	// string "end"
    	o = append(o, 0x8d, 0xa3, 0x65, 0x6e, 0x64)
    	o = msgp.AppendTime(o, z.ended)
    	// string "st"
    	o = append(o, 0xa2, 0x73, 0x74)
    	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)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 08 18:26:08 UTC 2021
    - 10K bytes
    - Viewed (0)
  4. cmd/batch-handlers_gen.go

    	// string "jt"
    	o = append(o, 0xa2, 0x6a, 0x74)
    	o = msgp.AppendString(o, z.JobType)
    	// string "st"
    	o = append(o, 0xa2, 0x73, 0x74)
    	o = msgp.AppendTime(o, z.StartTime)
    	// string "lu"
    	o = append(o, 0xa2, 0x6c, 0x75)
    	o = msgp.AppendTime(o, z.LastUpdate)
    	// string "ra"
    	o = append(o, 0xa2, 0x72, 0x61)
    	o = msgp.AppendInt(o, z.RetryAttempts)
    	// string "at"
    	o = append(o, 0xa2, 0x61, 0x74)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. 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 Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  6. cmd/tier-last-day-stats_gen.go

    			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)
    	}
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *DailyAllTierStats) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	var zb0004 uint32
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. internal/config/cache/remote_gen.go

    	if z.IfModifiedSince == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendTime(o, *z.IfModifiedSince)
    	}
    	// string "IfUnModifiedSince"
    	o = append(o, 0xb1, 0x49, 0x66, 0x55, 0x6e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x63, 0x65)
    	if z.IfUnModifiedSince == nil {
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendTime(o, *z.IfUnModifiedSince)
    	}
    	// string "IfRange"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 21:46:17 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. 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 Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  9. src/log/slog/text_handler.go

    	return h.commonHandler.handle(r)
    }
    
    func appendTextValue(s *handleState, v Value) error {
    	switch v.Kind() {
    	case KindString:
    		s.appendString(v.str())
    	case KindTime:
    		s.appendTime(v.time())
    	case KindAny:
    		if tm, ok := v.any.(encoding.TextMarshaler); ok {
    			data, err := tm.MarshalText()
    			if err != nil {
    				return err
    			}
    			// TODO: avoid the conversion to string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. cmd/local-locker_gen.go

    	// string "Timestamp"
    	o = append(o, 0xa9, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70)
    	o = msgp.AppendTime(o, z.Timestamp)
    	// string "TimeLastRefresh"
    	o = append(o, 0xaf, 0x54, 0x69, 0x6d, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68)
    	o = msgp.AppendTime(o, z.TimeLastRefresh)
    	// string "Source"
    	o = append(o, 0xa6, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top