1 Star 0 Fork 2

who7708/etcd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.github
Documentation
alarm
auth
client
clientv3
cmd
compactor
contrib
discovery
e2e
embed
error
etcdctl
etcdmain
etcdserver
hack
integration
lease
logos
mvcc
pkg
adt
contention
cors
cpuutil
crc
debugutil
expect
fileutil
flags
httputil
idutil
ioutil
logutil
mock
monotime
issue15006.s
monotime.go
nanotime.go
nanotime_test.go
netutil
osutil
pathutil
pbutil
report
runtime
schedule
srv
stringutil
testutil
tlsutil
transport
types
wait
README.md
proxy
raft
rafthttp
scripts
snap
store
tools
version
wal
.dockerignore
.gitignore
.godir
.header
.semaphore.sh
.travis.yml
CONTRIBUTING.md
DCO
Dockerfile
Dockerfile-release
Dockerfile-release.arm64
Dockerfile-release.ppc64le
Dockerfile-test
LICENSE
MAINTAINERS
NEWS
NOTICE
Procfile
README.md
ROADMAP.md
V2Procfile
bill-of-materials.json
bill-of-materials.override.json
build
build.bat
build.ps1
cover
etcd.conf.yml.sample
glide.lock
glide.yaml
main.go
main_test.go
test
克隆/下载
nanotime.go 799 Bytes
一键复制 编辑 原始数据 按行查看 历史
// Copyright (C) 2016 Arista Networks, Inc.
// Use of this source code is governed by the Apache License 2.0
// that can be found in the COPYING file.
// Package monotime provides a fast monotonic clock source.
package monotime
import (
_ "unsafe" // required to use //go:linkname
)
//go:noescape
//go:linkname nanotime runtime.nanotime
func nanotime() int64
// Now returns the current time in nanoseconds from a monotonic clock.
// The time returned is based on some arbitrary platform-specific point in the
// past. The time returned is guaranteed to increase monotonically at a
// constant rate, unlike time.Now() from the Go standard library, which may
// slow down, speed up, jump forward or backward, due to NTP activity or leap
// seconds.
func Now() Time {
return Time(nanotime())
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/who7708/etcd.git
git@gitee.com:who7708/etcd.git
who7708
etcd
etcd
v3.2.14

搜索帮助