]> Cypherpunks.ru repositories - gostls13.git/commit
vendor/golang_org/x: move to internal/x
authorBryan C. Mills <bcmills@google.com>
Mon, 5 Nov 2018 20:01:53 +0000 (15:01 -0500)
committerBryan C. Mills <bcmills@google.com>
Thu, 29 Nov 2018 15:42:16 +0000 (15:42 +0000)
commit2012227b01020eb505cf1dbe719b1fa74ed8c5f4
treeed0efe504a2f7e1c716803440572be8452fe329b
parent70a684cf44cc3398c44afcd69387d7938d90f063
vendor/golang_org/x: move to internal/x

Packages in vendor/ directories have a "vendor/" path prefix in GOPATH
mode, but intentionally do not in module mode. Since the import path
is embedded in the compiled output, changing that path invalidates
cache entries and causes cmd/go to try to rebuild (and reinstall) the
vendored libraries, which will fail if the directory containing those
libraries is read-only.

If I understood correctly, this is the approach Russ suggested as an
alternative to https://golang.org/cl/136138.

Fixes #27285
Fixes #26988

Change-Id: I8a2507fa892b84cde0a803aaa79e460723da572b
Reviewed-on: https://go-review.googlesource.com/c/147443
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Russ Cox <rsc@golang.org>
196 files changed:
src/cmd/api/goapi.go
src/cmd/go/go_test.go
src/cmd/go/internal/load/pkg.go
src/cmd/go/internal/modload/import.go
src/cmd/go/testdata/script/list_importmap.txt [new file with mode: 0644]
src/cmd/go/testdata/script/list_std.txt
src/cmd/go/testdata/script/mod_internal.txt
src/cmd/go/testdata/script/mod_std_vendor.txt
src/crypto/tls/cipher_suites.go
src/crypto/tls/handshake_messages.go
src/crypto/tls/key_schedule.go
src/crypto/tls/ticket.go
src/crypto/x509/x509.go
src/go/build/build_test.go
src/go/build/deps_test.go
src/go/build/testdata/withvendor/src/a/b/b.go [new file with mode: 0644]
src/go/build/testdata/withvendor/src/a/vendor/c/d/d.go [new file with mode: 0644]
src/go/internal/srcimporter/srcimporter_test.go
src/internal/x/crypto/chacha20poly1305/chacha20poly1305.go [moved from src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305.go with 97% similarity]
src/internal/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go [moved from src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go with 100% similarity]
src/internal/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s [moved from src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s with 100% similarity]
src/internal/x/crypto/chacha20poly1305/chacha20poly1305_generic.go [moved from src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_generic.go with 96% similarity]
src/internal/x/crypto/chacha20poly1305/chacha20poly1305_noasm.go [moved from src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_noasm.go with 100% similarity]
src/internal/x/crypto/chacha20poly1305/chacha20poly1305_test.go [moved from src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_test.go with 100% similarity]
src/internal/x/crypto/chacha20poly1305/chacha20poly1305_vectors_test.go [moved from src/vendor/golang_org/x/crypto/chacha20poly1305/chacha20poly1305_vectors_test.go with 100% similarity]
src/internal/x/crypto/cryptobyte/asn1.go [moved from src/vendor/golang_org/x/crypto/cryptobyte/asn1.go with 99% similarity]
src/internal/x/crypto/cryptobyte/asn1/asn1.go [moved from src/vendor/golang_org/x/crypto/cryptobyte/asn1/asn1.go with 96% similarity]
src/internal/x/crypto/cryptobyte/asn1_test.go [moved from src/vendor/golang_org/x/crypto/cryptobyte/asn1_test.go with 99% similarity]
src/internal/x/crypto/cryptobyte/builder.go [moved from src/vendor/golang_org/x/crypto/cryptobyte/builder.go with 100% similarity]
src/internal/x/crypto/cryptobyte/cryptobyte_test.go [moved from src/vendor/golang_org/x/crypto/cryptobyte/cryptobyte_test.go with 100% similarity]
src/internal/x/crypto/cryptobyte/example_test.go [moved from src/vendor/golang_org/x/crypto/cryptobyte/example_test.go with 98% similarity]
src/internal/x/crypto/cryptobyte/string.go [moved from src/vendor/golang_org/x/crypto/cryptobyte/string.go with 98% similarity]
src/internal/x/crypto/curve25519/const_amd64.h [moved from src/vendor/golang_org/x/crypto/curve25519/const_amd64.h with 100% similarity]
src/internal/x/crypto/curve25519/const_amd64.s [moved from src/vendor/golang_org/x/crypto/curve25519/const_amd64.s with 100% similarity]
src/internal/x/crypto/curve25519/cswap_amd64.s [moved from src/vendor/golang_org/x/crypto/curve25519/cswap_amd64.s with 100% similarity]
src/internal/x/crypto/curve25519/curve25519.go [moved from src/vendor/golang_org/x/crypto/curve25519/curve25519.go with 100% similarity]
src/internal/x/crypto/curve25519/curve25519_test.go [moved from src/vendor/golang_org/x/crypto/curve25519/curve25519_test.go with 100% similarity]
src/internal/x/crypto/curve25519/doc.go [moved from src/vendor/golang_org/x/crypto/curve25519/doc.go with 94% similarity]
src/internal/x/crypto/curve25519/freeze_amd64.s [moved from src/vendor/golang_org/x/crypto/curve25519/freeze_amd64.s with 100% similarity]
src/internal/x/crypto/curve25519/ladderstep_amd64.s [moved from src/vendor/golang_org/x/crypto/curve25519/ladderstep_amd64.s with 100% similarity]
src/internal/x/crypto/curve25519/mont25519_amd64.go [moved from src/vendor/golang_org/x/crypto/curve25519/mont25519_amd64.go with 100% similarity]
src/internal/x/crypto/curve25519/mul_amd64.s [moved from src/vendor/golang_org/x/crypto/curve25519/mul_amd64.s with 100% similarity]
src/internal/x/crypto/curve25519/square_amd64.s [moved from src/vendor/golang_org/x/crypto/curve25519/square_amd64.s with 100% similarity]
src/internal/x/crypto/hkdf/example_test.go [moved from src/vendor/golang_org/x/crypto/hkdf/example_test.go with 97% similarity]
src/internal/x/crypto/hkdf/hkdf.go [moved from src/vendor/golang_org/x/crypto/hkdf/hkdf.go with 98% similarity]
src/internal/x/crypto/hkdf/hkdf_test.go [moved from src/vendor/golang_org/x/crypto/hkdf/hkdf_test.go with 100% similarity]
src/internal/x/crypto/internal/chacha20/asm_s390x.s [moved from src/vendor/golang_org/x/crypto/internal/chacha20/asm_s390x.s with 100% similarity]
src/internal/x/crypto/internal/chacha20/chacha_generic.go [moved from src/vendor/golang_org/x/crypto/internal/chacha20/chacha_generic.go with 100% similarity]
src/internal/x/crypto/internal/chacha20/chacha_noasm.go [moved from src/vendor/golang_org/x/crypto/internal/chacha20/chacha_noasm.go with 100% similarity]
src/internal/x/crypto/internal/chacha20/chacha_s390x.go [moved from src/vendor/golang_org/x/crypto/internal/chacha20/chacha_s390x.go with 100% similarity]
src/internal/x/crypto/internal/chacha20/chacha_test.go [moved from src/vendor/golang_org/x/crypto/internal/chacha20/chacha_test.go with 100% similarity]
src/internal/x/crypto/internal/chacha20/vectors_test.go [moved from src/vendor/golang_org/x/crypto/internal/chacha20/vectors_test.go with 100% similarity]
src/internal/x/crypto/internal/chacha20/xor.go [moved from src/vendor/golang_org/x/crypto/internal/chacha20/xor.go with 100% similarity]
src/internal/x/crypto/poly1305/poly1305.go [moved from src/vendor/golang_org/x/crypto/poly1305/poly1305.go with 95% similarity]
src/internal/x/crypto/poly1305/poly1305_test.go [moved from src/vendor/golang_org/x/crypto/poly1305/poly1305_test.go with 100% similarity]
src/internal/x/crypto/poly1305/sum_amd64.go [moved from src/vendor/golang_org/x/crypto/poly1305/sum_amd64.go with 100% similarity]
src/internal/x/crypto/poly1305/sum_amd64.s [moved from src/vendor/golang_org/x/crypto/poly1305/sum_amd64.s with 100% similarity]
src/internal/x/crypto/poly1305/sum_arm.go [moved from src/vendor/golang_org/x/crypto/poly1305/sum_arm.go with 100% similarity]
src/internal/x/crypto/poly1305/sum_arm.s [moved from src/vendor/golang_org/x/crypto/poly1305/sum_arm.s with 100% similarity]
src/internal/x/crypto/poly1305/sum_noasm.go [moved from src/vendor/golang_org/x/crypto/poly1305/sum_noasm.go with 100% similarity]
src/internal/x/crypto/poly1305/sum_ref.go [moved from src/vendor/golang_org/x/crypto/poly1305/sum_ref.go with 100% similarity]
src/internal/x/crypto/poly1305/sum_s390x.go [moved from src/vendor/golang_org/x/crypto/poly1305/sum_s390x.go with 100% similarity]
src/internal/x/crypto/poly1305/sum_s390x.s [moved from src/vendor/golang_org/x/crypto/poly1305/sum_s390x.s with 100% similarity]
src/internal/x/crypto/poly1305/sum_vmsl_s390x.s [moved from src/vendor/golang_org/x/crypto/poly1305/sum_vmsl_s390x.s with 100% similarity]
src/internal/x/crypto/poly1305/vectors_test.go [moved from src/vendor/golang_org/x/crypto/poly1305/vectors_test.go with 100% similarity]
src/internal/x/fiximports.bash [new file with mode: 0755]
src/internal/x/net/dns/dnsmessage/example_test.go [moved from src/vendor/golang_org/x/net/dns/dnsmessage/example_test.go with 98% similarity]
src/internal/x/net/dns/dnsmessage/message.go [moved from src/vendor/golang_org/x/net/dns/dnsmessage/message.go with 100% similarity]
src/internal/x/net/dns/dnsmessage/message_test.go [moved from src/vendor/golang_org/x/net/dns/dnsmessage/message_test.go with 100% similarity]
src/internal/x/net/http/httpguts/guts.go [moved from src/vendor/golang_org/x/net/http/httpguts/guts.go with 100% similarity]
src/internal/x/net/http/httpguts/httplex.go [moved from src/vendor/golang_org/x/net/http/httpguts/httplex.go with 99% similarity]
src/internal/x/net/http/httpguts/httplex_test.go [moved from src/vendor/golang_org/x/net/http/httpguts/httplex_test.go with 100% similarity]
src/internal/x/net/http/httpproxy/export_test.go [moved from src/vendor/golang_org/x/net/http/httpproxy/export_test.go with 100% similarity]
src/internal/x/net/http/httpproxy/proxy.go [moved from src/vendor/golang_org/x/net/http/httpproxy/proxy.go with 99% similarity]
src/internal/x/net/http/httpproxy/proxy_test.go [moved from src/vendor/golang_org/x/net/http/httpproxy/proxy_test.go with 99% similarity]
src/internal/x/net/http2/hpack/encode.go [moved from src/vendor/golang_org/x/net/http2/hpack/encode.go with 100% similarity]
src/internal/x/net/http2/hpack/encode_test.go [moved from src/vendor/golang_org/x/net/http2/hpack/encode_test.go with 100% similarity]
src/internal/x/net/http2/hpack/hpack.go [moved from src/vendor/golang_org/x/net/http2/hpack/hpack.go with 100% similarity]
src/internal/x/net/http2/hpack/hpack_test.go [moved from src/vendor/golang_org/x/net/http2/hpack/hpack_test.go with 100% similarity]
src/internal/x/net/http2/hpack/huffman.go [moved from src/vendor/golang_org/x/net/http2/hpack/huffman.go with 100% similarity]
src/internal/x/net/http2/hpack/tables.go [moved from src/vendor/golang_org/x/net/http2/hpack/tables.go with 100% similarity]
src/internal/x/net/http2/hpack/tables_test.go [moved from src/vendor/golang_org/x/net/http2/hpack/tables_test.go with 100% similarity]
src/internal/x/net/idna/idna.go [moved from src/vendor/golang_org/x/net/idna/idna.go with 99% similarity]
src/internal/x/net/idna/punycode.go [moved from src/vendor/golang_org/x/net/idna/punycode.go with 100% similarity]
src/internal/x/net/idna/punycode_test.go [moved from src/vendor/golang_org/x/net/idna/punycode_test.go with 100% similarity]
src/internal/x/net/idna/tables.go [moved from src/vendor/golang_org/x/net/idna/tables.go with 99% similarity]
src/internal/x/net/idna/trie.go [moved from src/vendor/golang_org/x/net/idna/trie.go with 100% similarity]
src/internal/x/net/idna/trieval.go [moved from src/vendor/golang_org/x/net/idna/trieval.go with 97% similarity]
src/internal/x/net/internal/nettest/helper_bsd.go [moved from src/vendor/golang_org/x/net/internal/nettest/helper_bsd.go with 100% similarity]
src/internal/x/net/internal/nettest/helper_nobsd.go [moved from src/vendor/golang_org/x/net/internal/nettest/helper_nobsd.go with 100% similarity]
src/internal/x/net/internal/nettest/helper_posix.go [moved from src/vendor/golang_org/x/net/internal/nettest/helper_posix.go with 100% similarity]
src/internal/x/net/internal/nettest/helper_stub.go [moved from src/vendor/golang_org/x/net/internal/nettest/helper_stub.go with 100% similarity]
src/internal/x/net/internal/nettest/helper_unix.go [moved from src/vendor/golang_org/x/net/internal/nettest/helper_unix.go with 100% similarity]
src/internal/x/net/internal/nettest/helper_windows.go [moved from src/vendor/golang_org/x/net/internal/nettest/helper_windows.go with 100% similarity]
src/internal/x/net/internal/nettest/interface.go [moved from src/vendor/golang_org/x/net/internal/nettest/interface.go with 100% similarity]
src/internal/x/net/internal/nettest/rlimit.go [moved from src/vendor/golang_org/x/net/internal/nettest/rlimit.go with 100% similarity]
src/internal/x/net/internal/nettest/stack.go [moved from src/vendor/golang_org/x/net/internal/nettest/stack.go with 98% similarity]
src/internal/x/net/lif/address.go [moved from src/vendor/golang_org/x/net/lif/address.go with 100% similarity]
src/internal/x/net/lif/address_test.go [moved from src/vendor/golang_org/x/net/lif/address_test.go with 100% similarity]
src/internal/x/net/lif/binary.go [moved from src/vendor/golang_org/x/net/lif/binary.go with 100% similarity]
src/internal/x/net/lif/defs_solaris.go [moved from src/vendor/golang_org/x/net/lif/defs_solaris.go with 100% similarity]
src/internal/x/net/lif/lif.go [moved from src/vendor/golang_org/x/net/lif/lif.go with 100% similarity]
src/internal/x/net/lif/link.go [moved from src/vendor/golang_org/x/net/lif/link.go with 100% similarity]
src/internal/x/net/lif/link_test.go [moved from src/vendor/golang_org/x/net/lif/link_test.go with 100% similarity]
src/internal/x/net/lif/sys.go [moved from src/vendor/golang_org/x/net/lif/sys.go with 100% similarity]
src/internal/x/net/lif/sys_solaris_amd64.s [moved from src/vendor/golang_org/x/net/lif/sys_solaris_amd64.s with 100% similarity]
src/internal/x/net/lif/syscall.go [moved from src/vendor/golang_org/x/net/lif/syscall.go with 100% similarity]
src/internal/x/net/lif/zsys_solaris_amd64.go [moved from src/vendor/golang_org/x/net/lif/zsys_solaris_amd64.go with 100% similarity]
src/internal/x/net/nettest/conntest.go [moved from src/vendor/golang_org/x/net/nettest/conntest.go with 100% similarity]
src/internal/x/net/nettest/conntest_go16.go [moved from src/vendor/golang_org/x/net/nettest/conntest_go16.go with 100% similarity]
src/internal/x/net/nettest/conntest_go17.go [moved from src/vendor/golang_org/x/net/nettest/conntest_go17.go with 100% similarity]
src/internal/x/net/nettest/conntest_test.go [moved from src/vendor/golang_org/x/net/nettest/conntest_test.go with 97% similarity]
src/internal/x/net/route/address.go [moved from src/vendor/golang_org/x/net/route/address.go with 100% similarity]
src/internal/x/net/route/address_darwin_test.go [moved from src/vendor/golang_org/x/net/route/address_darwin_test.go with 100% similarity]
src/internal/x/net/route/address_test.go [moved from src/vendor/golang_org/x/net/route/address_test.go with 100% similarity]
src/internal/x/net/route/binary.go [moved from src/vendor/golang_org/x/net/route/binary.go with 100% similarity]
src/internal/x/net/route/defs_darwin.go [moved from src/vendor/golang_org/x/net/route/defs_darwin.go with 100% similarity]
src/internal/x/net/route/defs_dragonfly.go [moved from src/vendor/golang_org/x/net/route/defs_dragonfly.go with 100% similarity]
src/internal/x/net/route/defs_freebsd.go [moved from src/vendor/golang_org/x/net/route/defs_freebsd.go with 100% similarity]
src/internal/x/net/route/defs_netbsd.go [moved from src/vendor/golang_org/x/net/route/defs_netbsd.go with 100% similarity]
src/internal/x/net/route/defs_openbsd.go [moved from src/vendor/golang_org/x/net/route/defs_openbsd.go with 100% similarity]
src/internal/x/net/route/empty.s [moved from src/vendor/golang_org/x/net/route/empty.s with 100% similarity]
src/internal/x/net/route/interface.go [moved from src/vendor/golang_org/x/net/route/interface.go with 100% similarity]
src/internal/x/net/route/interface_announce.go [moved from src/vendor/golang_org/x/net/route/interface_announce.go with 100% similarity]
src/internal/x/net/route/interface_classic.go [moved from src/vendor/golang_org/x/net/route/interface_classic.go with 100% similarity]
src/internal/x/net/route/interface_freebsd.go [moved from src/vendor/golang_org/x/net/route/interface_freebsd.go with 100% similarity]
src/internal/x/net/route/interface_multicast.go [moved from src/vendor/golang_org/x/net/route/interface_multicast.go with 100% similarity]
src/internal/x/net/route/interface_openbsd.go [moved from src/vendor/golang_org/x/net/route/interface_openbsd.go with 100% similarity]
src/internal/x/net/route/message.go [moved from src/vendor/golang_org/x/net/route/message.go with 100% similarity]
src/internal/x/net/route/message_darwin_test.go [moved from src/vendor/golang_org/x/net/route/message_darwin_test.go with 100% similarity]
src/internal/x/net/route/message_freebsd_test.go [moved from src/vendor/golang_org/x/net/route/message_freebsd_test.go with 100% similarity]
src/internal/x/net/route/message_test.go [moved from src/vendor/golang_org/x/net/route/message_test.go with 100% similarity]
src/internal/x/net/route/route.go [moved from src/vendor/golang_org/x/net/route/route.go with 100% similarity]
src/internal/x/net/route/route_classic.go [moved from src/vendor/golang_org/x/net/route/route_classic.go with 100% similarity]
src/internal/x/net/route/route_openbsd.go [moved from src/vendor/golang_org/x/net/route/route_openbsd.go with 100% similarity]
src/internal/x/net/route/route_test.go [moved from src/vendor/golang_org/x/net/route/route_test.go with 100% similarity]
src/internal/x/net/route/sys.go [moved from src/vendor/golang_org/x/net/route/sys.go with 100% similarity]
src/internal/x/net/route/sys_darwin.go [moved from src/vendor/golang_org/x/net/route/sys_darwin.go with 100% similarity]
src/internal/x/net/route/sys_dragonfly.go [moved from src/vendor/golang_org/x/net/route/sys_dragonfly.go with 100% similarity]
src/internal/x/net/route/sys_freebsd.go [moved from src/vendor/golang_org/x/net/route/sys_freebsd.go with 100% similarity]
src/internal/x/net/route/sys_netbsd.go [moved from src/vendor/golang_org/x/net/route/sys_netbsd.go with 100% similarity]
src/internal/x/net/route/sys_openbsd.go [moved from src/vendor/golang_org/x/net/route/sys_openbsd.go with 100% similarity]
src/internal/x/net/route/syscall.go [moved from src/vendor/golang_org/x/net/route/syscall.go with 100% similarity]
src/internal/x/net/route/syscall_go1_11_darwin.go [moved from src/vendor/golang_org/x/net/route/syscall_go1_11_darwin.go with 100% similarity]
src/internal/x/net/route/syscall_go1_12_darwin.go [moved from src/vendor/golang_org/x/net/route/syscall_go1_12_darwin.go with 100% similarity]
src/internal/x/net/route/zsys_darwin.go [moved from src/vendor/golang_org/x/net/route/zsys_darwin.go with 100% similarity]
src/internal/x/net/route/zsys_dragonfly.go [moved from src/vendor/golang_org/x/net/route/zsys_dragonfly.go with 100% similarity]
src/internal/x/net/route/zsys_freebsd_386.go [moved from src/vendor/golang_org/x/net/route/zsys_freebsd_386.go with 100% similarity]
src/internal/x/net/route/zsys_freebsd_amd64.go [moved from src/vendor/golang_org/x/net/route/zsys_freebsd_amd64.go with 100% similarity]
src/internal/x/net/route/zsys_freebsd_arm.go [moved from src/vendor/golang_org/x/net/route/zsys_freebsd_arm.go with 100% similarity]
src/internal/x/net/route/zsys_netbsd.go [moved from src/vendor/golang_org/x/net/route/zsys_netbsd.go with 100% similarity]
src/internal/x/net/route/zsys_openbsd.go [moved from src/vendor/golang_org/x/net/route/zsys_openbsd.go with 100% similarity]
src/internal/x/text/secure/bidirule/bidirule.go [moved from src/vendor/golang_org/x/text/secure/bidirule/bidirule.go with 99% similarity]
src/internal/x/text/secure/doc.go [moved from src/vendor/golang_org/x/text/secure/doc.go with 85% similarity]
src/internal/x/text/transform/examples_test.go [moved from src/vendor/golang_org/x/text/transform/examples_test.go with 92% similarity]
src/internal/x/text/transform/transform.go [moved from src/vendor/golang_org/x/text/transform/transform.go with 99% similarity]
src/internal/x/text/unicode/bidi/bidi.go [moved from src/vendor/golang_org/x/text/unicode/bidi/bidi.go with 99% similarity]
src/internal/x/text/unicode/bidi/bracket.go [moved from src/vendor/golang_org/x/text/unicode/bidi/bracket.go with 100% similarity]
src/internal/x/text/unicode/bidi/core.go [moved from src/vendor/golang_org/x/text/unicode/bidi/core.go with 100% similarity]
src/internal/x/text/unicode/bidi/example_test.go [moved from src/vendor/golang_org/x/text/unicode/bidi/example_test.go with 99% similarity]
src/internal/x/text/unicode/bidi/prop.go [moved from src/vendor/golang_org/x/text/unicode/bidi/prop.go with 100% similarity]
src/internal/x/text/unicode/bidi/tables.go [moved from src/vendor/golang_org/x/text/unicode/bidi/tables.go with 99% similarity]
src/internal/x/text/unicode/bidi/trieval.go [moved from src/vendor/golang_org/x/text/unicode/bidi/trieval.go with 95% similarity]
src/internal/x/text/unicode/doc.go [moved from src/vendor/golang_org/x/text/unicode/doc.go with 84% similarity]
src/internal/x/text/unicode/norm/composition.go [moved from src/vendor/golang_org/x/text/unicode/norm/composition.go with 100% similarity]
src/internal/x/text/unicode/norm/example_iter_test.go [moved from src/vendor/golang_org/x/text/unicode/norm/example_iter_test.go with 98% similarity]
src/internal/x/text/unicode/norm/example_test.go [moved from src/vendor/golang_org/x/text/unicode/norm/example_test.go with 94% similarity]
src/internal/x/text/unicode/norm/forminfo.go [moved from src/vendor/golang_org/x/text/unicode/norm/forminfo.go with 100% similarity]
src/internal/x/text/unicode/norm/input.go [moved from src/vendor/golang_org/x/text/unicode/norm/input.go with 100% similarity]
src/internal/x/text/unicode/norm/iter.go [moved from src/vendor/golang_org/x/text/unicode/norm/iter.go with 100% similarity]
src/internal/x/text/unicode/norm/normalize.go [moved from src/vendor/golang_org/x/text/unicode/norm/normalize.go with 99% similarity]
src/internal/x/text/unicode/norm/readwriter.go [moved from src/vendor/golang_org/x/text/unicode/norm/readwriter.go with 100% similarity]
src/internal/x/text/unicode/norm/tables.go [moved from src/vendor/golang_org/x/text/unicode/norm/tables.go with 99% similarity]
src/internal/x/text/unicode/norm/transform.go [moved from src/vendor/golang_org/x/text/unicode/norm/transform.go with 98% similarity]
src/internal/x/text/unicode/norm/trie.go [moved from src/vendor/golang_org/x/text/unicode/norm/trie.go with 100% similarity]
src/internal/x/text/unicode/norm/triegen.go [moved from src/vendor/golang_org/x/text/unicode/norm/triegen.go with 100% similarity]
src/net/dnsclient.go
src/net/dnsclient_unix.go
src/net/dnsclient_unix_test.go
src/net/http/h2_bundle.go
src/net/http/http.go
src/net/http/httptest/recorder.go
src/net/http/httputil/reverseproxy.go
src/net/http/request.go
src/net/http/response.go
src/net/http/server.go
src/net/http/transfer.go
src/net/http/transport.go
src/net/http/transport_test.go
src/net/interface_bsd.go
src/net/interface_bsdvar.go
src/net/interface_darwin.go
src/net/interface_freebsd.go
src/net/interface_solaris.go
src/net/lookup_unix.go
src/net/pipe_test.go