func time.FixedZone

7 uses

	time (current package)
		format.go#L1162: 		t.setLoc(FixedZone(zoneName, zoneOffset))
		format.go#L1182: 		t.setLoc(FixedZone(zoneName, offset))
		time.go#L1218: 		t.setLoc(FixedZone("", offset))
		zoneinfo.go#L105: func FixedZone(name string, offset int) *Location {

	archive/zip
		struct.go#L216: 	return time.FixedZone("", int(offset/time.Second))

	github.com/go-git/go-git/v5/plumbing/object
		object.go#L151: 	tz := time.FixedZone("", int(tzhours*60*60+tzmins*60))

	github.com/lib/pq
		encode.go#L273: 		location = time.FixedZone("", offset)