func fmt.Printf
33 uses
fmt (current package)
print.go#L232: func Printf(format string, a ...any) (n int, err error) {
github.com/golang/protobuf/proto
buffer.go#L136: fmt.Printf("==== %s ====\n%s==== %s ====\n", s, b, s)
go/parser
parser.go#L86: fmt.Printf("%5d:%3d: ", pos.Line, pos.Column)
go/types
format.go#L91: fmt.Printf("%s:\t%s%s\n",
initorder.go#L32: fmt.Printf("Computing initialization order for %s\n\n", check.pkg)
initorder.go#L38: fmt.Printf("\t%s depends on\n", obj.Name())
initorder.go#L40: fmt.Printf("\t\t%s\n", dep.Name())
initorder.go#L43: fmt.Printf("\t%s has no dependencies\n", obj.Name())
initorder.go#L51: fmt.Printf("\t%s depends on %d nodes\n", n.obj.Name(), n.ndeps)
initorder.go#L53: fmt.Printf("\t\t%s is dependent\n", p.obj.Name())
initorder.go#L73: fmt.Printf("\t%s (src pos %d) depends on %d nodes now\n",
initorder.go#L131: fmt.Printf("\t%s\n", init)
golang.org/x/exp/apidiff
messageset.go#L30: fmt.Printf("! second, different message for obj %s, part %q\n", obj, part)
messageset.go#L31: fmt.Printf(" first: %s\n", f)
messageset.go#L32: fmt.Printf(" second: %s\n", msg)
golang.org/x/tools/internal/gcimporter
exportdata.go#L349: fmt.Printf("%s -> %s\n", path, id)
iexport.go#L614: fmt.Printf(strings.Repeat("..", p.indent)+format+"\n", args...)
iimport.go#L410: fmt.Printf(strings.Repeat("..", p.indent)+format+"\n", args...)
golang.org/x/tools/internal/pkgbits
decoder.go#L337: fmt.Printf("export data desync: package %q, section %v, index %v, offset %v\n", r.common.pkgPath, r.k, r.Idx, pos)
decoder.go#L339: fmt.Printf("\nfound %v, written at:\n", mHave)
decoder.go#L341: fmt.Printf("\t[stack trace unavailable; recompile package %q with -d=syncframes]\n", r.common.pkgPath)
decoder.go#L344: fmt.Printf("\t%s\n", r.common.StringIdx(r.rawReloc(RelocString, pc)))
decoder.go#L347: fmt.Printf("\nexpected %v, reading at:\n", mWant)
decoder.go#L351: fmt.Printf("\t%s\n", pc)
testing
benchmark.go#L829: fmt.Printf("goos: %s\n", runtime.GOOS)
benchmark.go#L830: fmt.Printf("goarch: %s\n", runtime.GOARCH)
benchmark.go#L832: fmt.Printf("pkg: %s\n", b.importPath)
benchmark.go#L835: fmt.Printf("cpu: %s\n", cpu)
cover.go#L123: fmt.Printf("coverage: %.1f%% of statements%s\n", 100*float64(active)/float64(total), cover.CoveredPackages)
example.go#L84: fmt.Printf("%s--- FAIL: %s (%s)\n%s", chatty.prefix(), eg.Name, dstr, fail)
example.go#L87: fmt.Printf("%s--- PASS: %s (%s)\n", chatty.prefix(), eg.Name, dstr)
example.go#L91: fmt.Printf("%s=== NAME %s\n", chatty.prefix(), "")
run_example.go#L23: fmt.Printf("%s=== RUN %s\n", chatty.prefix(), eg.Name)