func strings.SplitN

12 uses

	strings (current package)
		strings.go#L275: func SplitN(s, sep string, n int) []string { return genSplit(s, sep, 0, n) }

	github.com/aws/aws-sdk-go-v2/aws/arn
		arn.go#L65: 	sections := strings.SplitN(arn, arnDelimiter, arnSections)

	github.com/aws/aws-sdk-go-v2/service/s3/internal/customizations
		process_arn_resource.go#L425: 	scheme := strings.SplitN(endpoint.URL, "://", 2)
		update_endpoint.go#L293: 	v := strings.SplitN(bucket, ".", -1)

	go.pact.im/x/old/pgtxtar
		pgtxtar.go#L39: 		parts := strings.SplitN(name, "_", 2)

	go.uber.org/goleak/internal/stack
		stacks.go#L143: 	parts := strings.SplitN(line, " ", 3)

	go/build
		build.go#L1194: 	f := strings.SplitN(stdout.String(), "\n", 5)

	golang.org/x/tools/go/packages
		golist.go#L1158: 		split := strings.SplitN(kv, "=", 2)

	golang.org/x/tools/internal/gcimporter
		bimport.go#L104: 		if s := strings.SplitN(versionstr, " ", 3); len(s) >= 2 && s[0] == "version" {

	golang.org/x/tools/internal/gocommand
		invoke.go#L339: 		split := strings.SplitN(kv, "=", 2)

	google.golang.org/grpc
		service_config.go#L139: 	ss := strings.SplitN((*s)[:len(*s)-1], ".", 3)

	mime
		mediatype.go#L236: 	sv := strings.SplitN(v, "'", 3)