golang.org/x/mod/module.Version.Path (field)

40 uses

	golang.org/x/mod/module (current package)
		module.go#L114: 	Path string
		module.go#L131: 		return m.Path
		module.go#L133: 	return m.Path + "@" + m.Version
		module.go#L147: 	if errors.As(err, &mErr) && mErr.Path == v.Path && mErr.Version == v.Version {
		module.go#L151: 		Path:    v.Path,
		module.go#L614: 		if mi.Path != mj.Path {
		module.go#L615: 			return mi.Path < mj.Path

	golang.org/x/mod/modfile
		rule.go#L101: 			Mod:    module.Version{Path: path},
		rule.go#L105: 		f.Module.Mod.Path = path
		rule.go#L268: 		f.Module.Mod = module.Version{Path: s}
		rule.go#L296: 				Mod:      module.Version{Path: s, Version: v},
		rule.go#L302: 				Mod:    module.Version{Path: s, Version: v},
		rule.go#L366: 			Old:    module.Version{Path: s, Version: v},
		rule.go#L367: 			New:    module.Version{Path: ns, Version: nv},
		rule.go#L680: 		if r.Mod.Path != "" {
		rule.go#L689: 		if x.Mod.Path != "" {
		rule.go#L698: 		if r.Old.Path != "" {
		rule.go#L740: 		if r.Mod.Path == path {
		rule.go#L761: 	f.Require = append(f.Require, &Require{module.Version{Path: path, Version: vers}, indirect, line})
		rule.go#L768: 		need[r.Mod.Path] = r.Mod.Version
		rule.go#L769: 		indirect[r.Mod.Path] = r.Indirect
		rule.go#L773: 		if v, ok := need[r.Mod.Path]; ok {
		rule.go#L775: 			r.Indirect = indirect[r.Mod.Path]
		rule.go#L827: 		if r.Mod.Path == path {
		rule.go#L838: 		if x.Mod.Path == path && x.Mod.Version == vers {
		rule.go#L841: 		if x.Mod.Path == path {
		rule.go#L846: 	f.Exclude = append(f.Exclude, &Exclude{Mod: module.Version{Path: path, Version: vers}, Syntax: f.Syntax.addLine(hint, "exclude", AutoQuote(path), vers)})
		rule.go#L852: 		if x.Mod.Path == path && x.Mod.Version == vers {
		rule.go#L862: 	old := module.Version{Path: oldPath, Version: oldVers}
		rule.go#L863: 	new := module.Version{Path: newPath, Version: newVers}
		rule.go#L875: 		if r.Old.Path == oldPath && (oldVers == "" || r.Old.Version == oldVers) {
		rule.go#L887: 		if r.Old.Path == oldPath {
		rule.go#L899: 		if r.Old.Path == oldPath && r.Old.Version == oldVers {

	golang.org/x/mod/zip
		zip.go#L386: 	if err := module.Check(m.Path, m.Version); err != nil {
		zip.go#L410: 	prefix := fmt.Sprintf("%s@%s/", m.Path, m.Version)
		zip.go#L492: 	if err := module.Check(m.Path, m.Version); err != nil {
		zip.go#L505: 	prefix := fmt.Sprintf("%s@%s/", m.Path, m.Version)
		zip.go#L636: 	prefix := fmt.Sprintf("%s@%s/", m.Path, m.Version)