This file is indexed.

/usr/share/gocode/src/github.com/jeromer/syslogparser/rfc5424/example_test.go is in golang-github-jeromer-syslogparser-dev 0~20150717.ff71fe7a-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
package rfc5424_test

import (
	"fmt"
	"github.com/jeromer/syslogparser/rfc5424"
)

func ExampleNewParser() {
	b := `<165>1 2003-10-11T22:14:15.003Z mymachine.example.com evntslog - ID47 [exampleSDID@32473 iut="3" eventSource="Application" eventID="1011"] An application event log entry...`
	buff := []byte(b)

	p := rfc5424.NewParser(buff)
	err := p.Parse()
	if err != nil {
		panic(err)
	}

	fmt.Println(p.Dump())
}