This file is indexed.

/usr/share/gocode/src/google.golang.org/appengine/taskqueue/ns_vm.go is in golang-google-appengine-dev 0.0~git20150606-2.

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
// +build !appengine

package taskqueue

import (
	"golang.org/x/net/context"

	"google.golang.org/appengine/internal"
)

func getDefaultNamespace(ctx context.Context) string {
	return internal.IncomingHeaders(ctx).Get(defaultNamespace)
}