mirror of
https://github.com/golang/go
synced 2024-11-13 20:10:32 -07:00
783297ad6a
The previous commit (git 2ae77376
) just did golang.org. This one
includes golang.org subdomains like blog, play, and build.
Change-Id: I4469f7b307ae2a12ea89323422044e604c5133ae
Reviewed-on: https://go-review.googlesource.com/12071
Reviewed-by: Rob Pike <r@golang.org>
13 lines
359 B
Go
13 lines
359 B
Go
// Copyright 2014 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Pprof interprets and displays profiles of Go programs.
|
|
//
|
|
// Usage:
|
|
//
|
|
// go tool pprof binary profile
|
|
//
|
|
// For more information, see https://blog.golang.org/profiling-go-programs.
|
|
package main
|