func path/filepath.IsAbs

15 uses

	path/filepath (current package)
		path.go#L248: 	if IsAbs(path) {
		path_unix.go#L12: func IsAbs(path string) bool {
		symlink.go#L108: 		if isWindowsDot && !IsAbs(link) {

	github.com/go-git/go-billy/v5/helper/chroot
		chroot.go#L167: 	if filepath.IsAbs(target) || strings.HasPrefix(target, string(filepath.Separator)) {
		chroot.go#L191: 	if !filepath.IsAbs(target) && !strings.HasPrefix(target, string(filepath.Separator)) {

	github.com/go-git/go-git/v5
		repository.go#L324: 	if filepath.IsAbs(gitdir) {

	github.com/go-git/go-git/v5/storage/filesystem/dotgit
		dotgit.go#L1060: 		if !filepath.IsAbs(path) {

	github.com/kevinburke/ssh_config
		config.go#L565: 		if filepath.IsAbs(directives[i]) {

	go/build
		build.go#L132: 	return filepath.IsAbs(path)
		build.go#L1075: 		if filepath.IsAbs(srcDir) {
		build.go#L1736: 			if !filepath.IsAbs(arg) {
		build.go#L1744: 				if !filepath.IsAbs(arg[2:]) {

	go/scanner
		scanner.go#L280: 		if !filepath.IsAbs(filename) {

	internal/execabs
		execabs.go#L39: 	if filepath.Base(file) == file && !filepath.IsAbs(path) {
		execabs.go#L46: 	if filepath.Base(name) == name && !filepath.IsAbs(cmd.Path) {