(str string)
| 1352 | } |
| 1353 | |
| 1354 | func absoluteURL(str string) bool { |
| 1355 | // Avoid returning relative URLs to prevent unwanted local navigation |
| 1356 | // within pprof server. |
| 1357 | u, err := url.Parse(str) |
| 1358 | return err == nil && (u.Scheme == "https" || u.Scheme == "http") |
| 1359 | } |
| 1360 | |
| 1361 | func abs64(i int64) int64 { |
| 1362 | if i < 0 { |