func fmt.Fprint

37 uses

	fmt (current package)
		print.go#L230: func Fprint(w io.Writer, a ...interface{}) (n int, err error) {
		print.go#L242: 	return Fprint(os.Stdout, a...)

	cloud.google.com/go/storage
		storage.go#L628: 		fmt.Fprint(buf, "UNSIGNED-PAYLOAD")
		storage.go#L634: 	fmt.Fprint(signBuf, "GOOG4-RSA-SHA256\n")

	flag
		flag.go#L535: 		fmt.Fprint(f.Output(), s, "\n")

	github.com/aws/aws-sdk-go/aws/awsutil
		prettify.go#L101: 			fmt.Fprint(buf, "")

	github.com/go-git/go-git/v5/plumbing/object
		commit.go#L274: 	if _, err = fmt.Fprint(w, "author "); err != nil {
		commit.go#L282: 	if _, err = fmt.Fprint(w, "\ncommitter "); err != nil {
		commit.go#L291: 		if _, err = fmt.Fprint(w, "\n"+headerpgp+" "); err != nil {
		commit.go#L301: 		if _, err = fmt.Fprint(w, strings.Join(lines, "\n ")); err != nil {
		tag.go#L197: 	if _, err = fmt.Fprint(w, "\n\n"); err != nil {
		tag.go#L201: 	if _, err = fmt.Fprint(w, t.Message); err != nil {
		tag.go#L211: 		if _, err = fmt.Fprint(w, t.PGPSignature); err != nil {

	github.com/golang/protobuf/proto
		text_encode.go#L365: 			fmt.Fprint(w, v.Interface())
		text_encode.go#L396: 			fmt.Fprint(w, ev.Name())
		text_encode.go#L398: 			fmt.Fprint(w, v.Enum())
		text_encode.go#L401: 		fmt.Fprint(w, v.Interface())
		text_encode.go#L449: 		fmt.Fprint(w, num)
		text_encode.go#L463: 			fmt.Fprint(w, v)
		text_encode.go#L470: 			fmt.Fprint(w, v)
		text_encode.go#L477: 			fmt.Fprint(w, v)

	go.opencensus.io/zpages
		rpcz.go#L106: 			fmt.Fprint(w, "Sent:\n")
		rpcz.go#L108: 			fmt.Fprint(w, "\nReceived:\n")
		rpcz.go#L111: 		fmt.Fprint(tw, "Method\tCount\t\t\tAvgLat\t\t\tMaxLat\t\t\tRate\t\t\tIn (MiB/s)\t\t\tOut (MiB/s)\t\t\tErrors\t\t\n")
		rpcz.go#L112: 		fmt.Fprint(tw, "\tMin\tHr\tTot\tMin\tHr\tTot\tMin\tHr\tTot\tMin\tHr\tTot\tMin\tHr\tTot\tMin\tHr\tTot\tMin\tHr\tTot\n")
		tracez.go#L374: 	fmt.Fprint(tw, "When\tElapsed(s)\tType\n")

	golang.org/x/pkgsite/internal/config
		config.go#L546: 	fmt.Fprint(w, "config: ")

	golang.org/x/pkgsite/internal/dcensus
		dcensus.go#L104: 		fmt.Fprint(w, debugPage)

	golang.org/x/pkgsite/internal/worker
		server.go#L569: 	fmt.Fprint(w, "Cache cleared.")

	golang.org/x/text/internal/language
		lookup.go#L259: 	fmt.Fprint(bytes.NewBuffer([]byte(e.v[:])), n)

	golang.org/x/xerrors
		adaptor.go#L180: 		fmt.Fprint((*state)(s), args...)

	google.golang.org/api/googleapi
		googleapi.go#L105: 			fmt.Fprint(&buf, "\nDetails:")

	google.golang.org/grpc
		trace.go#L82: 		fmt.Fprint(&line, f.deadline)

	math/big
		intconv.go#L86: 		fmt.Fprint(s, "")

	runtime/pprof
		pprof.go#L875: 		fmt.Fprint(w, "\n")
		pprof.go#L928: 		fmt.Fprint(w, "\n")

	text/template
		exec.go#L965: 	_, err := fmt.Fprint(s.wr, iface)