10 examples of 'golang timestamp' in Go

Every line of 'golang timestamp' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Go code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
247func builtinTimestamp() string {
248 return strconv.Itoa(int(time.Now().Unix()))
249}
50func timestamp() string {
51 var s string
52 switch TimeStampFormat {
53 case "LOCmicro":
54 s = time.Now().Format(time.StampMicro) + " "
55 case "UTCmicro":
56 s = "UTC " + time.Now().UTC().Format(time.StampMicro) + " "
57 case "off", "none":
58 s = ""
59 }
60 return s
61}
104func (r *machineStatusResolver) Timestamp(ctx context.Context, obj *sabakan.MachineStatus) (*DateTime, error) {
105 ret := DateTime(obj.Timestamp)
106 return &ret, nil
107}
431func (*PointerEvent) TimeStamp() (timeStamp uint64) {
432 macro.Rewrite("$_.timeStamp")
433 return timeStamp
434}
171func (*CompositionEvent) TimeStamp() (timeStamp uint64) {
172 macro.Rewrite("$_.timeStamp")
173 return timeStamp
174}
144func (*MediaEncryptedEvent) TimeStamp() (timeStamp uint64) {
145 macro.Rewrite("$_.timeStamp")
146 return timeStamp
147}
130func (*RTCSsrcConflictEvent) TimeStamp() (timeStamp uint64) {
131 macro.Rewrite("$_.timeStamp")
132 return timeStamp
133}
177func (rw *ReadableWallet) timestamp() int64 {
178 // Intentionally ignore the error when parsing the timestamp,
179 // if it isn't valid or is missing it will be set to 0
180 x, _ := strconv.ParseInt(rw.Meta[metaTimestamp], 10, 64) // nolint: errcheck
181 return x
182}
543func (s *Scanner) Timestamp() (v uint64) {
544 if s.err != nil || !s.assertCurrentTypePrimitive(Ydb.Type_TIMESTAMP) {
545 return
546 }
547 return s.uint64()
548}
869func TsToTime(timestamp interface{}) time.Time {
870 return TimestampToTime(timestamp)
871}

Related snippets