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


Golang key.Type函數代碼示例

本文整理匯總了Golang中github.com/karlseguin/nabu/key.Type函數的典型用法代碼示例。如果您正苦於以下問題:Golang Type函數的具體用法?Golang Type怎麽用?Golang Type使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: TestEmptyLength

func TestEmptyLength(t *testing.T) {
	spec := gspec.New(t)
	empty := NewEmpty("x")
	empty.Set(key.Type(4))
	empty.Set(key.Type(6))
	spec.Expect(empty.Len()).ToEqual(0)
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:7,代碼來源:empty_test.go

示例2: TestLoadsTheMap

func TestLoadsTheMap(t *testing.T) {
	spec := gspec.New(t)
	m := newIdMap()
	data := map[uint]string{1: "a1", 2: "b2", 10: "c3"}
	m.load(data)
	spec.Expect(m.get("c3", false)).ToEqual(key.Type(10))
	spec.Expect(m.get("c4", true)).ToEqual(key.Type(11))
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:8,代碼來源:idmap_test.go

示例3: TestSortedStringsOrderOnRemove

func TestSortedStringsOrderOnRemove(t *testing.T) {
	spec := gspec.New(t)
	s := NewSortedStrings("test")
	sortedSetLoad(s, 1, "banana", 2, "apples", 3, "oranges")
	s.Remove(key.Type(3))
	spec.Expect(s.list[1].id).ToEqual(key.Type(2))
	spec.Expect(s.list[2].id).ToEqual(key.Type(1))
	spec.Expect(s.Len()).ToEqual(2)
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:9,代碼來源:sortedstrings_test.go

示例4: TestSortedStringsContains

func TestSortedStringsContains(t *testing.T) {
	spec := gspec.New(t)
	s := NewSortedStrings("test")
	sortedSetLoad(s, 1, "banana", 2, "apples", 3, "oranges")
	s.SetString(key.Type(1), "prune")
	s.SetString(key.Type(4), "apes")
	s.Remove(1)
	spec.Expect(s.Contains(key.Type(1))).ToEqual(false)
	spec.Expect(s.Contains(key.Type(3))).ToEqual(true)
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:10,代碼來源:sortedstrings_test.go

示例5: TestSortedIntsForwardIterationMovesUpToNextClosest

func TestSortedIntsForwardIterationMovesUpToNextClosest(t *testing.T) {
	for i := 0; i < 1000; i++ {
		rand.Seed(int64(i))
		s := NewSortedInts("test")
		s.SetInt(key.Type(1), 1)
		s.SetInt(key.Type(3), 3)
		s.SetInt(key.Type(4), 4)
		s.SetInt(key.Type(5), 5)
		assertIterator(t, s.Forwards().Range(2, 4).Offset(0), 3, 4)
	}
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:11,代碼來源:sortedints_test.go

示例6: get

func (m *IdMap) get(s string, create bool) key.Type {
	bucket := m.getBucket(s)

	bucket.RLock()
	id, exists := bucket.lookup[s]
	bucket.RUnlock()
	if exists {
		return id
	}
	if create == false {
		return key.NULL
	}

	bucket.Lock()
	defer bucket.Unlock()

	id, exists = bucket.lookup[s]
	if exists {
		return id
	}

	id = key.Type(atomic.AddUint64(&m.counter, 1))
	bucket.lookup[s] = id
	return id
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:25,代碼來源:idmap.go

示例7: TestEmptyBackwards

func TestEmptyBackwards(t *testing.T) {
	spec := gspec.New(t)
	empty := NewEmpty("x")
	empty.Set(key.Type(4))
	iter := empty.Backwards()
	spec.Expect(iter.Current()).ToEqual(key.NULL)
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:7,代碼來源:empty_test.go

示例8: TestIdMapReturnsAnExistingId

func TestIdMapReturnsAnExistingId(t *testing.T) {
	spec := gspec.New(t)
	m := newIdMap()
	m.get("over", true)
	m.get("9000", true)
	spec.Expect(m.get("over", false)).ToEqual(key.Type(1))
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:7,代碼來源:idmap_test.go

示例9: TestUnionDoesNotContainANonExistantId

func TestUnionDoesNotContainANonExistantId(t *testing.T) {
	spec := gspec.New(t)
	union := NewUnion("x", []string{"apple", "orange"})
	union.On(makeSetIndex(20, 23, 24, 25, 26))
	union.On(makeSetIndex(20, 25, 28, 29))
	spec.Expect(union.Contains(key.Type(22))).ToEqual(false)
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:7,代碼來源:union_test.go

示例10: makeSetIndex

func makeSetIndex(ids ...int) indexes.Index {
	set := indexes.NewSetString("test")
	for _, id := range ids {
		set.Set(key.Type(id))
	}
	return set
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:7,代碼來源:set_test.go

示例11: TestSetContainsAnExistingIdIfMultipleIndexesContainsIt

func TestSetContainsAnExistingIdIfMultipleIndexesContainsIt(t *testing.T) {
	spec := gspec.New(t)
	union := NewUnion("x", []string{"apple", "orange"})
	union.On(makeSetIndex(20, 23, 24, 25, 26))
	union.On(makeSetIndex(20, 25, 28, 29))
	spec.Expect(union.Contains(key.Type(20))).ToEqual(true)
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:7,代碼來源:union_test.go

示例12: TestGreaterThanOrEqualContainsAnIdWithAScoreEqualToOurTarget

func TestGreaterThanOrEqualContainsAnIdWithAScoreEqualToOurTarget(t *testing.T) {
	spec := gspec.New(t)
	gte := NewGreaterThanOrEqual("x", 10)
	gte.On(makeIndex(1, 7, 8, 10, 11, 12, 13, 20))
	score, exists := gte.Score(key.Type(3))
	spec.Expect(score).ToEqual(10)
	spec.Expect(exists).ToEqual(true)
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:8,代碼來源:greaterthanorequal_test.go

示例13: TestEqualContainsAnIdWithAScoreEqualOurTarget

func TestEqualContainsAnIdWithAScoreEqualOurTarget(t *testing.T) {
	spec := gspec.New(t)
	eq := NewEqual("x", 10)
	eq.On(makeIndex(1, 7, 8, 10, 11, 12, 13, 20))
	score, exists := eq.Score(key.Type(3))
	spec.Expect(score).ToEqual(10)
	spec.Expect(exists).ToEqual(true)
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:8,代碼來源:equal_test.go

示例14: TestLessThanOrEqualContainsAnIdWithAScoreLessThanOrEqualOurTarget

func TestLessThanOrEqualContainsAnIdWithAScoreLessThanOrEqualOurTarget(t *testing.T) {
	spec := gspec.New(t)
	lte := NewLessThanOrEqual("x", 10)
	lte.On(makeIndex(1, 7, 8, 10, 11, 12, 13, 20))
	score, exists := lte.Score(key.Type(2))
	spec.Expect(score).ToEqual(8)
	spec.Expect(exists).ToEqual(true)
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:8,代碼來源:lessthanorequal_test.go

示例15: TestEqualReturnsTheLength

func TestEqualReturnsTheLength(t *testing.T) {
	spec := gspec.New(t)
	eq := NewEqual("x", 10)
	idx := makeIndex(1, 7, 8, 10, 11, 12, 13, 20)
	idx.(indexes.WithIntScores).SetInt(key.Type(22), 10)
	eq.On(idx)
	spec.Expect(eq.Len()).ToEqual(2)
}
開發者ID:Wexcode,項目名稱:nabu,代碼行數:8,代碼來源:equal_test.go


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