func fmt.Printf
35 uses
fmt (current package)
print.go#L212: func Printf(format string, a ...any) (n int, err error) {
database/sql
sql.go#L1455: fmt.Printf("putConn(%v) DUPLICATE was: %s\n\nPREVIOUS was: %s", dc, stack(), db.lastPut[dc])
github.com/golang/protobuf/proto
buffer.go#L136: fmt.Printf("==== %s ====\n%s==== %s ====\n", s, b, s)
go/parser
parser.go#L89: fmt.Printf("%5d:%3d: ", pos.Line, pos.Column)
go/types
errors.go#L131: fmt.Printf("%s:\t%s%s\n",
initorder.go#L26: fmt.Printf("Computing initialization order for %s\n\n", check.pkg)
initorder.go#L32: fmt.Printf("\t%s depends on\n", obj.Name())
initorder.go#L34: fmt.Printf("\t\t%s\n", dep.Name())
initorder.go#L37: fmt.Printf("\t%s has no dependencies\n", obj.Name())
initorder.go#L45: fmt.Printf("\t%s depends on %d nodes\n", n.obj.Name(), n.ndeps)
initorder.go#L47: fmt.Printf("\t\t%s is dependent\n", p.obj.Name())
initorder.go#L67: fmt.Printf("\t%s (src pos %d) depends on %d nodes now\n",
initorder.go#L125: 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
bexport.go#L819: fmt.Printf(format, args...)
exportdata.go#L28: fmt.Printf("header: %s", hdr)
gcimporter.go#L128: fmt.Printf("%s -> %s\n", path, id)
iexport.go#L354: fmt.Printf(strings.Repeat("..", p.indent)+format+"\n", args...)
iimport.go#L322: fmt.Printf(strings.Repeat("..", p.indent)+format+"\n", args...)
golang.org/x/tools/internal/pkgbits
decoder.go#L338: fmt.Printf("export data desync: package %q, section %v, index %v, offset %v\n", r.common.pkgPath, r.k, r.Idx, pos)
decoder.go#L340: fmt.Printf("\nfound %v, written at:\n", mHave)
decoder.go#L342: fmt.Printf("\t[stack trace unavailable; recompile package %q with -d=syncframes]\n", r.common.pkgPath)
decoder.go#L345: fmt.Printf("\t%s\n", r.common.StringIdx(r.rawReloc(RelocString, pc)))
decoder.go#L348: fmt.Printf("\nexpected %v, reading at:\n", mWant)
decoder.go#L352: fmt.Printf("\t%s\n", pc)
testing
benchmark.go#L663: fmt.Printf("goos: %s\n", runtime.GOOS)
benchmark.go#L664: fmt.Printf("goarch: %s\n", runtime.GOARCH)
benchmark.go#L666: fmt.Printf("pkg: %s\n", b.importPath)
benchmark.go#L669: fmt.Printf("cpu: %s\n", cpu)
cover.go#L115: fmt.Printf("coverage: %.1f%% of statements%s\n", 100*float64(active)/float64(total), cover.CoveredPackages)
example.go#L83: fmt.Printf("--- FAIL: %s (%s)\n%s", eg.Name, dstr, fail)
example.go#L86: fmt.Printf("--- PASS: %s (%s)\n", eg.Name, dstr)
run_example.go#L23: fmt.Printf("=== RUN %s\n", eg.Name)