This file is indexed.

/usr/share/gocode/src/github.com/coreos/go-etcd/etcd/get.go is in golang-github-coreos-go-etcd-dev 2.0.0-4.

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
package etcd

// Get gets the file or directory associated with the given key.
// If the key points to a directory, files and directories under
// it will be returned in sorted or unsorted order, depending on
// the sort flag.
// If recursive is set to false, contents under child directories
// will not be returned.
// If recursive is set to true, all the contents will be returned.
func (c *Client) Get(key string, sort, recursive bool) (*Response, error) {
	raw, err := c.RawGet(key, sort, recursive)

	if err != nil {
		return nil, err
	}

	return raw.Unmarshal()
}

func (c *Client) RawGet(key string, sort, recursive bool) (*RawResponse, error) {
	var q bool
	if c.config.Consistency == STRONG_CONSISTENCY {
		q = true
	}
	ops := Options{
		"recursive": recursive,
		"sorted":    sort,
		"quorum":    q,
	}

	return c.get(key, ops)
}