This file is indexed.

/usr/share/gocode/src/github.com/alecthomas/units/doc.go is in golang-github-alecthomas-units-dev 0.0~git20151022.0.2efee85-3.

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
// Package units provides helpful unit multipliers and functions for Go.
//
// The goal of this package is to have functionality similar to the time [1] package.
//
//
// [1] http://golang.org/pkg/time/
//
// It allows for code like this:
//
//     n, err := ParseBase2Bytes("1KB")
//     // n == 1024
//     n = units.Mebibyte * 512
package units