func fmt.Printf

45 uses

	fmt (current package)
		print.go#L212: func Printf(format string, a ...interface{}) (n int, err error) {

	database/sql
		sql.go#L1361: 			fmt.Printf("putConn(%v) DUPLICATE was: %s\n\nPREVIOUS was: %s", dc, stack(), db.lastPut[dc])

	github.com/aws/aws-sdk-go/aws/endpoints
		decode.go#L173: 		fmt.Printf("custFixAppAutoscalingChina: ignoring customization, expected %s, got %s\n", e, a)
		decode.go#L193: 		fmt.Printf("custFixAppAutoscalingUsGov: ignoring customization, expected empty credential scope service, got %s\n", a)
		decode.go#L198: 		fmt.Printf("custFixAppAutoscalingUsGov: ignoring customization, expected empty hostname, got %s\n", a)

	github.com/golang/protobuf/proto
		buffer.go#L136: 	fmt.Printf("==== %s ====\n%s==== %s ====\n", s, b, s)

	github.com/yuin/goldmark/ast
		ast.go#L441: 	fmt.Printf("%s%s {\n", indent, name)
		ast.go#L444: 		fmt.Printf("%sRawText: \"", indent2)
		ast.go#L447: 			fmt.Printf("%s", line.Value(source))
		ast.go#L449: 		fmt.Printf("\"\n")
		ast.go#L450: 		fmt.Printf("%sHasBlankPreviousLines: %v\n", indent2, v.HasBlankPreviousLines())
		ast.go#L453: 		fmt.Printf("%s%s: %s\n", indent2, name, value)
		ast.go#L461: 	fmt.Printf("%s}\n", indent)
		block.go#L462: 	fmt.Printf("%s%s {\n", indent, "HTMLBlock")
		block.go#L464: 	fmt.Printf("%sRawText: \"", indent2)
		block.go#L469: 	fmt.Printf("\"\n")
		block.go#L475: 		fmt.Printf("%sClosure: \"%s\"\n", indent2, string(cl.Value(source)))
		block.go#L477: 	fmt.Printf("%s}\n", indent)
		inline.go#L155: 	fmt.Printf("%sText%s: \"%s\"\n", strings.Repeat("    ", level), fs, strings.TrimRight(string(n.Text(source)), "\n"))
		inline.go#L270: 	fmt.Printf("%sString%s: \"%s\"\n", strings.Repeat("    ", level), fs, strings.TrimRight(string(n.Value), "\n"))

	github.com/yuin/goldmark/extension/ast
		table.go#L52: 		fmt.Printf("%sAlignments {\n", indent)
		table.go#L55: 			fmt.Printf("%s%s", indent2, alignment.String())
		table.go#L60: 		fmt.Printf("\n%s}\n", indent)

	github.com/yuin/goldmark/parser
		delimiter.go#L64: 	fmt.Printf("%sDelimiter: \"%s\"\n", strings.Repeat("    ", level), string(d.Text(source)))
		link.go#L42: 	fmt.Printf("%slinkLabelState: \"%s\"\n", strings.Repeat("    ", level), s.Text(source))

	go/parser
		parser.go#L216: 	fmt.Printf("%5d:%3d: ", pos.Line, pos.Column)

	golang.org/x/pkgsite/devtools/cmd/create_experiment_config
		main.go#L66: 	fmt.Printf("Set `export GO_DISCOVERY_CONFIG_DYNAMIC=%q` to enable experiments.\n", p)

	golang.org/x/pkgsite/devtools/cmd/csphash
		main.go#L55: 				fmt.Printf("%s: has script with src attribute: %s\n", file, s.tag)
		main.go#L59: 				fmt.Printf("%s: has script with template expansion:\n%s\n", file, s.body)
		main.go#L60: 				fmt.Printf("Scripts must be static so they have a constant hash.\n")
		main.go#L66: 				fmt.Printf("missing hash: add the lines below to %s:\n", *hashFile)
		main.go#L67: 				fmt.Printf("    // From %s\n", file)
		main.go#L68: 				fmt.Printf(`    "'sha256-%s'",`, hash)
		main.go#L77: 		fmt.Printf("unused hash %s\n", h)
		main.go#L81: 		fmt.Printf("Add missing hashes to %s and remove unused ones.\n", *hashFile)

	golang.org/x/pkgsite/devtools/cmd/css
		main.go#L107: 		fmt.Printf("Writing these properties to %q: \n", cssFile)

	golang.org/x/pkgsite/internal/testing/htmlcheck
		htmlcheck.go#L209: 	fmt.Printf("type %d, data %q, attr %v\n", n.Type, n.Data, n.Attr)

	testing
		benchmark.go#L654: 			fmt.Printf("goos: %s\n", runtime.GOOS)
		benchmark.go#L655: 			fmt.Printf("goarch: %s\n", runtime.GOARCH)
		benchmark.go#L657: 				fmt.Printf("pkg: %s\n", b.importPath)
		benchmark.go#L660: 				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)