This file is indexed.

/usr/share/gocode/src/bazil.org/fuse/fs/fstestutil/record/buffer.go is in golang-bazil-fuse-dev 0.0~git20150620-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
20
21
22
23
24
25
26
27
28
package record

import (
	"bytes"
	"io"
	"sync"
)

// Buffer is like bytes.Buffer but safe to access from multiple
// goroutines.
type Buffer struct {
	mu  sync.Mutex
	buf bytes.Buffer
}

var _ = io.Writer(&Buffer{})

func (b *Buffer) Write(p []byte) (n int, err error) {
	b.mu.Lock()
	defer b.mu.Unlock()
	return b.buf.Write(p)
}

func (b *Buffer) Bytes() []byte {
	b.mu.Lock()
	defer b.mu.Unlock()
	return b.buf.Bytes()
}