當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Clock.MaxOffset方法代碼示例

本文整理匯總了Golang中github.com/cockroachdb/cockroach/util/hlc.Clock.MaxOffset方法的典型用法代碼示例。如果您正苦於以下問題:Golang Clock.MaxOffset方法的具體用法?Golang Clock.MaxOffset怎麽用?Golang Clock.MaxOffset使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/cockroachdb/cockroach/util/hlc.Clock的用法示例。


在下文中一共展示了Clock.MaxOffset方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: newTxn

// newTxn begins a transaction. For testing purposes, this comes with a ID
// pre-initialized, but with the Writing flag set to false.
func newTxn(clock *hlc.Clock, baseKey proto.Key) *proto.Transaction {
	f, l, fun := caller.Lookup(1)
	name := fmt.Sprintf("%s:%d %s", f, l, fun)
	txn := proto.NewTransaction("test", baseKey, 1, proto.SERIALIZABLE, clock.Now(), clock.MaxOffset().Nanoseconds())
	txn.Name = name
	return txn
}
開發者ID:freakynit,項目名稱:cockroach,代碼行數:9,代碼來源:txn_coord_sender_test.go

示例2: Clear

// Clear clears the cache and resets the low water mark to the
// current time plus the maximum clock offset.
func (tc *TimestampCache) Clear(clock *hlc.Clock) {
	tc.rCache.Clear()
	tc.wCache.Clear()
	tc.lowWater = clock.Now()
	tc.lowWater.WallTime += clock.MaxOffset().Nanoseconds()
	tc.latest = tc.lowWater
}
開發者ID:petermattis,項目名稱:cockroach,代碼行數:9,代碼來源:timestamp_cache.go

示例3: newTxn

// newTxn begins a transaction.
func newTxn(clock *hlc.Clock, baseKey proto.Key) *proto.Transaction {
	return proto.NewTransaction("test", baseKey, 1, proto.SERIALIZABLE, clock.Now(), clock.MaxOffset().Nanoseconds())
}
開發者ID:routhcr,項目名稱:cockroach,代碼行數:4,代碼來源:txn_coord_sender_test.go

示例4: LeaseExpiration

// LeaseExpiration returns an int64 to increment a manual clock with to
// make sure that all active range leases expire.
func (s *Store) LeaseExpiration(clock *hlc.Clock) int64 {
	// Due to lease extensions, the remaining interval can be longer than just
	// the sum of the offset (=length of stasis period) and the active
	// duration, but definitely not by 2x.
	return 2 * int64(s.ctx.rangeLeaseActiveDuration+clock.MaxOffset())
}
開發者ID:yangxuanjia,項目名稱:cockroach,代碼行數:8,代碼來源:helpers_test.go


注:本文中的github.com/cockroachdb/cockroach/util/hlc.Clock.MaxOffset方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。