golang.org/x/pkgsite/internal.UnitMeta.IsRedistributable (field)

19 uses

	golang.org/x/pkgsite/internal (current package)
		nonredist.go#L20: 	if !u.IsRedistributable {
		unit.go#L17: 	IsRedistributable bool

	golang.org/x/pkgsite/internal/fetch
		unit.go#L57: 				IsRedistributable: isRedist,

	golang.org/x/pkgsite/internal/frontend
		main.go#L176: 	if unit.Path != unit.ModulePath && unit.IsRedistributable {
		main.go#L254: 	if !u.IsRedistributable {
		unit.go#L249: 	if tab == tabLicenses && !um.IsRedistributable {

	golang.org/x/pkgsite/internal/localdatasource
		datasource.go#L76: 		unit.IsRedistributable = true
		datasource.go#L164: 			um.IsRedistributable = u.IsRedistributable

	golang.org/x/pkgsite/internal/postgres
		insert_module.go#L381: 			u.IsRedistributable,
		unit.go#L105: 		&um.IsRedistributable,
		unit.go#L121: 		um.IsRedistributable = true
		unit.go#L284: 		u.IsRedistributable = true

	golang.org/x/pkgsite/internal/proxydatasource
		datasource.go#L104: 				pkg.IsRedistributable = true
		details.go#L61: 			um.IsRedistributable = d.IsRedistributable

	golang.org/x/pkgsite/internal/testing/sample
		sample.go#L195: 			u := UnitForPackage(lp.Path, modulePath, version, lp.Name, lp.IsRedistributable)
		sample.go#L247: 	AddUnit(m, UnitForPackage(pkg.Path, m.ModulePath, m.Version, pkg.Name, pkg.IsRedistributable))
		sample.go#L354: 		IsRedistributable: isRedistributable,