golang.org/x/pkgsite/internal.Documentation.GOARCH (field)

18 uses

	golang.org/x/pkgsite/internal (current package)
		build_context.go#L82: 	return BuildContext{GOOS: d.GOOS, GOARCH: d.GOARCH}
		build_context.go#L93: 		if bc.Match(BuildContext{d.GOOS, d.GOARCH}) {
		unit.go#L68: 	GOARCH   string

	golang.org/x/pkgsite/internal/fetch
		load.go#L97: 			doc2.GOARCH = bc.GOARCH
		load.go#L136: 					GOARCH:   internal.All,
		load.go#L165: 				GOARCH:   bc.GOARCH,
		load.go#L180: 		pkg.docs[0].GOARCH = internal.All

	golang.org/x/pkgsite/internal/frontend
		main.go#L145: 		goarch = doc.GOARCH
		main.go#L242: 	if len(docs) == 1 && docs[0].GOOS == "linux" && docs[0].GOARCH == "amd64" {
		main.go#L244: 		docs[0].GOARCH = internal.All

	golang.org/x/pkgsite/internal/localdatasource
		datasource.go#L83: 				GOARCH: d.GOARCH,

	golang.org/x/pkgsite/internal/postgres
		insert_module.go#L388: 				return fmt.Errorf("insertUnits: unit %q missing source files for %q, %q", u.Path, d.GOOS, d.GOARCH)
		insert_module.go#L509: 					if doc.GOOS == "" || doc.GOARCH == "" {
		insert_module.go#L512: 					ch <- database.RowItem{Values: []interface{}{unitID, doc.GOOS, doc.GOARCH, doc.Synopsis, doc.Source}}
		insert_module.go#L549: 			if doc.GOOS == goos && doc.GOARCH == goarch {
		insert_symbol_history.go#L46: 			builds := []internal.BuildContext{{GOOS: doc.GOOS, GOARCH: doc.GOARCH}}
		unit.go#L508: 	doc := &internal.Documentation{GOOS: bcMatched.GOOS, GOARCH: bcMatched.GOARCH}

	golang.org/x/pkgsite/internal/testing/sample
		sample.go#L390: 		GOARCH:   goarch,