134 matches across 1 files for func main lang:Go path:src/bufio/bufio_test.go
snippet_mode: auto · sorted by relevance
src/bufio/bufio_test.go GO 134 matches · showing 5 view file →
26}
27
28func newRot13Reader(r io.Reader) *rot13Reader {
29 r13 := new(rot13Reader)
30 r13.r = r
· · ·
32}
33
34func (r13 *rot13Reader) Read(p []byte) (int, error) {
35 n, err := r13.r.Read(p)
36 for i := 0; i < n; i++ {
· · ·
46
47// Call ReadByte to accumulate the text of a file
48func readBytes(buf *Reader) string {
49 var b [1000]byte
50 nb := 0
· · ·
64}
65
66func TestReaderSimple(t *testing.T) {
67 data := "hello world"
68 b := NewReader(strings.NewReader(data))
· · ·
79type readMaker struct {
80 name string
81 fn func(io.Reader) io.Reader
82}
83
+ 129 more matches in this file
Search syntax
auth loginboth terms (AND is implicit)
auth OR logineither term
NOT path:vendorexclude matches
"exact phrase"quoted exact match
/func\s+Test/regex
handler~1fuzzy (Levenshtein 1)
file:*_test.gofilename glob
path:pkg/auth/**full path glob
lang:golanguage filter

Search any public repo from your terminal

This page calls POST /api/v1/code_search. Same tool, available over MCP for Claude/Cursor/Copilot.