Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for appendTime (0.27 sec)

  1. src/net/http/export_test.go

    	"net/url"
    	"slices"
    	"sync"
    	"testing"
    	"time"
    )
    
    var (
    	DefaultUserAgent                  = defaultUserAgent
    	NewLoggingConn                    = newLoggingConn
    	ExportAppendTime                  = appendTime
    	ExportRefererForURL               = refererForURL
    	ExportServerNewConn               = (*Server).newConn
    	ExportCloseWriteAndWait           = (*conn).closeWriteAndWait
    	ExportErrRequestCanceled          = errRequestCanceled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool-rebalance_gen.go

    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 3
    	// string "startTs"
    	o = append(o, 0x83, 0xa7, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x73)
    	o = msgp.AppendTime(o, z.StartTime)
    	// string "stopTs"
    	o = append(o, 0xa6, 0x73, 0x74, 0x6f, 0x70, 0x54, 0x73)
    	o = msgp.AppendTime(o, z.EndTime)
    	// string "status"
    	o = append(o, 0xa6, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73)
    	o = msgp.AppendUint8(o, uint8(z.Status))
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. cmd/object-api-interface_gen.go

    	o = msgp.AppendBool(o, z.ForceCreate)
    	// string "CreatedAt"
    	o = append(o, 0xa9, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74)
    	o = msgp.AppendTime(o, z.CreatedAt)
    	// string "NoLock"
    	o = append(o, 0xa6, 0x4e, 0x6f, 0x4c, 0x6f, 0x63, 0x6b)
    	o = msgp.AppendBool(o, z.NoLock)
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 19:08:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/log/slog/json_handler.go

    		}
    	case KindBool:
    		*s.buf = strconv.AppendBool(*s.buf, v.Bool())
    	case KindDuration:
    		// Do what json.Marshal does.
    		*s.buf = strconv.AppendInt(*s.buf, int64(v.Duration()), 10)
    	case KindTime:
    		s.appendTime(v.Time())
    	case KindAny:
    		a := v.Any()
    		_, jm := a.(json.Marshaler)
    		if err, ok := a.(error); ok && !jm {
    			s.appendString(err.Error())
    		} else {
    			return appendJSONMarshal(s.buf, a)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:18:11 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. src/log/slog/handler.go

    	rep := h.opts.ReplaceAttr
    	// time
    	if !r.Time.IsZero() {
    		key := TimeKey
    		val := r.Time.Round(0) // strip monotonic to match Attr behavior
    		if rep == nil {
    			state.appendKey(key)
    			state.appendTime(val)
    		} else {
    			state.appendAttr(Time(key, val))
    		}
    	}
    	// level
    	key := LevelKey
    	val := r.Level
    	if rep == nil {
    		state.appendKey(key)
    		state.appendString(val.String())
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  6. cmd/background-newdisks-heal-ops_gen.go

    	o = msgp.AppendString(o, z.Endpoint)
    	// string "Started"
    	o = append(o, 0xa7, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64)
    	o = msgp.AppendTime(o, z.Started)
    	// string "LastUpdate"
    	o = append(o, 0xaa, 0x4c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65)
    	o = msgp.AppendTime(o, z.LastUpdate)
    	// string "ObjectsTotalCount"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 17:05:40 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. cmd/batch-rotate_gen.go

    	// string "CreatedAfter"
    	o = append(o, 0xac, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x66, 0x74, 0x65, 0x72)
    	o = msgp.AppendTime(o, z.CreatedAfter)
    	// string "CreatedBefore"
    	o = append(o, 0xad, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x65, 0x66, 0x6f, 0x72, 0x65)
    	o = msgp.AppendTime(o, z.CreatedBefore)
    	// string "Tags"
    	o = append(o, 0xa4, 0x54, 0x61, 0x67, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.Tags)))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool-decom_gen.go

    func (z *PoolDecommissionInfo) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    	// map header, size 16
    	// string "st"
    	o = append(o, 0xde, 0x0, 0x10, 0xa2, 0x73, 0x74)
    	o = msgp.AppendTime(o, z.StartTime)
    	// string "ss"
    	o = append(o, 0xa2, 0x73, 0x73)
    	o = msgp.AppendInt64(o, z.StartSize)
    	// string "ts"
    	o = append(o, 0xa2, 0x74, 0x73)
    	o = msgp.AppendInt64(o, z.TotalSize)
    	// string "cs"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
  9. cmd/batch-replicate_gen.go

    	// string "CreatedAfter"
    	o = append(o, 0xac, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x66, 0x74, 0x65, 0x72)
    	o = msgp.AppendTime(o, z.CreatedAfter)
    	// string "CreatedBefore"
    	o = append(o, 0xad, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x65, 0x66, 0x6f, 0x72, 0x65)
    	o = msgp.AppendTime(o, z.CreatedBefore)
    	// string "Tags"
    	o = append(o, 0xa4, 0x54, 0x61, 0x67, 0x73)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 18:51:46 UTC 2023
    - 40.6K bytes
    - Viewed (0)
  10. cmd/storage-datatypes_gen.go

    	o = msgp.AppendString(o, z.TransitionTier)
    	o = msgp.AppendString(o, z.TransitionVersionID)
    	o = msgp.AppendBool(o, z.ExpireRestored)
    	o = msgp.AppendString(o, z.DataDir)
    	o = msgp.AppendBool(o, z.XLV1)
    	o = msgp.AppendTime(o, z.ModTime)
    	o = msgp.AppendInt64(o, z.Size)
    	o = msgp.AppendUint32(o, z.Mode)
    	o = msgp.AppendUint64(o, z.WrittenByVersion)
    	o = msgp.AppendMapHeader(o, uint32(len(z.Metadata)))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
Back to top