This file is indexed.

/usr/share/gocode/src/github.com/peterhellberg/link/doc.go is in golang-github-peterhellberg-link-dev 1.0.0-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
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
/*

Package link parses Link headers used for pagination, as defined in RFC 5988

Installation

Just go get the package:

    go get -u github.com/peterhellberg/link

Usage

A small usage example

    package main

    import (
    	"fmt"
    	"net/http"

    	"github.com/peterhellberg/link"
    )

    func main() {
    	for _, l := range link.Parse(`<https://example.com/?page=2>; rel="next"; foo="bar"`) {
    		fmt.Printf("URI: %q, Rel: %q, Extra: %+v\n", l.URI, l.Rel, l.Extra)
    		// URI: "https://example.com/?page=2", Rel: "next", Extra: map[foo:bar]
    	}

    	if resp, err := http.Get("https://api.github.com/search/code?q=Println+user:golang"); err == nil {
    		for _, l := range link.ParseResponse(resp) {
    			fmt.Printf("URI: %q, Rel: %q, Extra: %+v\n", l.URI, l.Rel, l.Extra)
    			// URI: "https://api.github.com/search/code?q=Println+user%3Agolang&page=2", Rel: "next", Extra: map[]
    			// URI: "https://api.github.com/search/code?q=Println+user%3Agolang&page=34", Rel: "last", Extra: map[]
    		}
    	}
    }

*/
package link