This file is indexed.

/usr/share/gocode/src/github.com/jacobsa/gcloud/gcs/gcscaching/mock_gcscaching/mock_stat_cache.go is in golang-github-jacobsa-gcloud-dev 0.0~git20150709-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// This file was auto-generated using createmock. See the following page for
// more information:
//
//     https://github.com/jacobsa/oglemock
//

package mock_gcscaching

import (
	fmt "fmt"
	gcs "github.com/jacobsa/gcloud/gcs"
	gcscaching "github.com/jacobsa/gcloud/gcs/gcscaching"
	oglemock "github.com/jacobsa/oglemock"
	runtime "runtime"
	time "time"
	unsafe "unsafe"
)

type MockStatCache interface {
	gcscaching.StatCache
	oglemock.MockObject
}

type mockStatCache struct {
	controller  oglemock.Controller
	description string
}

func NewMockStatCache(
	c oglemock.Controller,
	desc string) MockStatCache {
	return &mockStatCache{
		controller:  c,
		description: desc,
	}
}

func (m *mockStatCache) Oglemock_Id() uintptr {
	return uintptr(unsafe.Pointer(m))
}

func (m *mockStatCache) Oglemock_Description() string {
	return m.description
}

func (m *mockStatCache) AddNegativeEntry(p0 string, p1 time.Time) {
	// Get a file name and line number for the caller.
	_, file, line, _ := runtime.Caller(1)

	// Hand the call off to the controller, which does most of the work.
	retVals := m.controller.HandleMethodCall(
		m,
		"AddNegativeEntry",
		file,
		line,
		[]interface{}{p0, p1})

	if len(retVals) != 0 {
		panic(fmt.Sprintf("mockStatCache.AddNegativeEntry: invalid return values: %v", retVals))
	}

	return
}

func (m *mockStatCache) CheckInvariants() {
	// Get a file name and line number for the caller.
	_, file, line, _ := runtime.Caller(1)

	// Hand the call off to the controller, which does most of the work.
	retVals := m.controller.HandleMethodCall(
		m,
		"CheckInvariants",
		file,
		line,
		[]interface{}{})

	if len(retVals) != 0 {
		panic(fmt.Sprintf("mockStatCache.CheckInvariants: invalid return values: %v", retVals))
	}

	return
}

func (m *mockStatCache) Erase(p0 string) {
	// Get a file name and line number for the caller.
	_, file, line, _ := runtime.Caller(1)

	// Hand the call off to the controller, which does most of the work.
	retVals := m.controller.HandleMethodCall(
		m,
		"Erase",
		file,
		line,
		[]interface{}{p0})

	if len(retVals) != 0 {
		panic(fmt.Sprintf("mockStatCache.Erase: invalid return values: %v", retVals))
	}

	return
}

func (m *mockStatCache) Insert(p0 *gcs.Object, p1 time.Time) {
	// Get a file name and line number for the caller.
	_, file, line, _ := runtime.Caller(1)

	// Hand the call off to the controller, which does most of the work.
	retVals := m.controller.HandleMethodCall(
		m,
		"Insert",
		file,
		line,
		[]interface{}{p0, p1})

	if len(retVals) != 0 {
		panic(fmt.Sprintf("mockStatCache.Insert: invalid return values: %v", retVals))
	}

	return
}

func (m *mockStatCache) LookUp(p0 string, p1 time.Time) (o0 bool, o1 *gcs.Object) {
	// Get a file name and line number for the caller.
	_, file, line, _ := runtime.Caller(1)

	// Hand the call off to the controller, which does most of the work.
	retVals := m.controller.HandleMethodCall(
		m,
		"LookUp",
		file,
		line,
		[]interface{}{p0, p1})

	if len(retVals) != 2 {
		panic(fmt.Sprintf("mockStatCache.LookUp: invalid return values: %v", retVals))
	}

	// o0 bool
	if retVals[0] != nil {
		o0 = retVals[0].(bool)
	}

	// o1 *gcs.Object
	if retVals[1] != nil {
		o1 = retVals[1].(*gcs.Object)
	}

	return
}