golang.org/x/pkgsite/internal.PackageMeta.Path (field)

16 uses

	golang.org/x/pkgsite/internal (current package)
		unit.go#L82: 	Path              string

	golang.org/x/pkgsite/internal/frontend
		directory.go#L130: 		if um.Path == pm.Path {
		directory.go#L133: 		if um.Path == stdlib.ModulePath && strings.HasPrefix(pm.Path, "cmd/") {
		directory.go#L140: 			URL:      constructUnitURL(pm.Path, um.ModulePath, linkVersion(um.Version, um.ModulePath)),
		directory.go#L141: 			Suffix:   internal.Suffix(pm.Path, um.Path),

	golang.org/x/pkgsite/internal/postgres
		insert_module.go#L688: 			if isInternalPackage(pkg.Path) {
		insert_module.go#L692: 				PackagePath: pkg.Path,
		insert_module.go#L697: 			if pkg.Path == modulePath && readme != nil {
		unit.go#L384: 			&pkg.Path,
		unit.go#L395: 		if fullPath == stdlib.ModulePath || pkg.Path == fullPath || strings.HasPrefix(pkg.Path, fullPath+"/") {
		unit.go#L401: 			packagesByPath[pkg.Path] = append(packagesByPath[pkg.Path], pmbc{&pkg, bc})
		unit.go#L414: 	sort.Slice(packages, func(i, j int) bool { return packages[i].Path < packages[j].Path })

	golang.org/x/pkgsite/internal/testing/sample
		sample.go#L269: 		Path:              fullPath,