├── .gitignore ├── vendor ├── github.com │ ├── Microsoft │ │ └── go-winio │ │ │ ├── .gitignore │ │ │ ├── archive │ │ │ └── tar │ │ │ │ ├── testdata │ │ │ │ ├── small.txt │ │ │ │ ├── small2.txt │ │ │ │ ├── v7.tar │ │ │ │ ├── neg-size.tar │ │ │ │ ├── issue10968.tar │ │ │ │ ├── issue12435.tar │ │ │ │ ├── writer-big.tar │ │ │ │ ├── writer-big-long.tar │ │ │ │ └── issue11169.tar │ │ │ │ ├── stat_atim.go │ │ │ │ ├── stat_atimespec.go │ │ │ │ └── stat_unix.go │ │ │ ├── backuptar │ │ │ └── noop.go │ │ │ ├── syscall.go │ │ │ ├── privileges_test.go │ │ │ ├── sd_test.go │ │ │ └── wim │ │ │ └── validate │ │ │ └── validate.go │ ├── Sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_bsd.go │ │ │ ├── appveyor.yml │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── .travis.yml │ │ │ ├── terminal_linux.go │ │ │ ├── hooks │ │ │ └── syslog │ │ │ │ └── syslog_test.go │ │ │ └── doc.go │ ├── docker │ │ ├── go-connections │ │ │ ├── sockets │ │ │ │ ├── README.md │ │ │ │ ├── tcp_socket.go │ │ │ │ ├── sockets_windows.go │ │ │ │ ├── unix_socket.go │ │ │ │ └── inmem_socket_test.go │ │ │ ├── doc.go │ │ │ ├── proxy │ │ │ │ ├── logger.go │ │ │ │ └── stub_proxy.go │ │ │ ├── tlsconfig │ │ │ │ ├── certpool_other.go │ │ │ │ ├── certpool_go17.go │ │ │ │ ├── config_legacy_client_ciphers.go │ │ │ │ └── config_client_ciphers.go │ │ │ ├── circle.yml │ │ │ ├── README.md │ │ │ └── MAINTAINERS │ │ └── go-plugins-helpers │ │ │ ├── sdk │ │ │ ├── sdk_test.go │ │ │ ├── unix_listener_nosystemd.go │ │ │ ├── unix_listener_unsupported.go │ │ │ ├── windows_pipe_config.go │ │ │ ├── pool.go │ │ │ ├── windows_listener_unsupported.go │ │ │ ├── unix_listener.go │ │ │ └── tcp_listener.go │ │ │ ├── .travis.yml │ │ │ ├── .gitignore │ │ │ ├── NOTICE │ │ │ ├── graphdriver │ │ │ └── README.md │ │ │ ├── Makefile │ │ │ ├── ipam │ │ │ └── README.md │ │ │ ├── secrets │ │ │ └── README.md │ │ │ ├── README.md │ │ │ └── volume │ │ │ └── README.md │ └── coreos │ │ └── go-systemd │ │ ├── fixtures │ │ ├── mask-unmask.service │ │ ├── start-stop.service │ │ ├── enable-disable.service │ │ ├── subscribe-events.service │ │ ├── subscribe-events-set.service │ │ ├── start-failed.service │ │ └── reload.service │ │ ├── examples │ │ └── activation │ │ │ └── httpserver │ │ │ ├── hello.socket │ │ │ ├── hello.service │ │ │ └── README.md │ │ ├── login1 │ │ └── dbus_test.go │ │ ├── util │ │ └── util_stub.go │ │ ├── Jenkinsfile │ │ └── scripts │ │ └── jenkins │ │ └── periodic-go-systemd-builder.sh └── golang.org │ └── x │ ├── net │ ├── codereview.cfg │ ├── http2 │ │ ├── .gitignore │ │ ├── h2demo │ │ │ ├── rootCA.srl │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── README │ │ ├── Makefile │ │ ├── not_go19.go │ │ ├── go16.go │ │ ├── go19.go │ │ ├── not_go16.go │ │ ├── errors_test.go │ │ ├── README │ │ ├── not_go18.go │ │ └── gotrack_test.go │ ├── .gitignore │ ├── html │ │ ├── charset │ │ │ └── testdata │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ └── README │ │ └── testdata │ │ │ └── webkit │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ ├── scripted │ │ │ ├── adoption01.dat │ │ │ └── webkit01.dat │ │ │ ├── adoption02.dat │ │ │ ├── inbody01.dat │ │ │ └── isindex.dat │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── http │ │ └── httpproxy │ │ │ ├── export_test.go │ │ │ └── go19_test.go │ ├── internal │ │ ├── socket │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_linux_amd64.go │ │ │ ├── sys_linux_arm.go │ │ │ ├── sys_linux_arm64.go │ │ │ ├── sys_linux_mips.go │ │ │ ├── sys_linux_ppc64.go │ │ │ ├── sys_linux_mips64.go │ │ │ ├── sys_linux_mips64le.go │ │ │ ├── sys_linux_mipsle.go │ │ │ ├── sys_linux_ppc64le.go │ │ │ ├── iovec_stub.go │ │ │ ├── msghdr_openbsd.go │ │ │ ├── sys_linux_386.s │ │ │ ├── sys_bsdvar.go │ │ │ ├── sys_linux_s390x.s │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── cmsghdr_bsd.go │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ ├── msghdr_bsdvar.go │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ ├── cmsghdr.go │ │ │ ├── iovec_solaris_64bit.go │ │ │ ├── iovec_32bit.go │ │ │ ├── iovec_64bit.go │ │ │ ├── rawconn_nommsg.go │ │ │ ├── sys_bsd.go │ │ │ ├── cmsghdr_stub.go │ │ │ ├── rawconn_nomsg.go │ │ │ ├── msghdr_linux_32bit.go │ │ │ ├── msghdr_linux_64bit.go │ │ │ ├── mmsghdr_stub.go │ │ │ ├── msghdr_stub.go │ │ │ ├── error_windows.go │ │ │ ├── rawconn_stub.go │ │ │ ├── sys.go │ │ │ ├── error_unix.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_linux.go │ │ │ ├── msghdr_linux.go │ │ │ └── msghdr_solaris_64bit.go │ │ └── nettest │ │ │ ├── helper_nobsd.go │ │ │ ├── rlimit.go │ │ │ ├── helper_stub.go │ │ │ ├── helper_unix.go │ │ │ └── helper_posix.go │ ├── lif │ │ ├── sys_solaris_amd64.s │ │ ├── sys.go │ │ └── syscall.go │ ├── icmp │ │ ├── sys_freebsd.go │ │ └── ipv6.go │ ├── bpf │ │ ├── setter.go │ │ └── testdata │ │ │ └── all_instructions.bpf │ ├── webdav │ │ ├── file_go1.7.go │ │ ├── file_go1.6.go │ │ └── internal │ │ │ └── xml │ │ │ └── README │ ├── ipv4 │ │ ├── sys_stub.go │ │ ├── sys_bpf_stub.go │ │ ├── control_windows.go │ │ ├── control_stub.go │ │ ├── icmp_stub.go │ │ ├── control_test.go │ │ ├── sys_asmreqn_stub.go │ │ ├── sys_ssmreq_stub.go │ │ ├── icmp_linux.go │ │ ├── sys_bpf.go │ │ ├── payload.go │ │ ├── sys_asmreq_stub.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ └── zsys_dragonfly.go │ ├── ipv6 │ │ ├── sys_stub.go │ │ ├── sys_bpf_stub.go │ │ ├── control_windows.go │ │ ├── control_stub.go │ │ ├── sys_asmreq_stub.go │ │ ├── control_test.go │ │ ├── icmp_stub.go │ │ ├── sys_ssmreq_stub.go │ │ ├── icmp_windows.go │ │ ├── sys_bpf.go │ │ ├── payload.go │ │ ├── sys_asmreq.go │ │ ├── icmp_linux.go │ │ ├── mocktransponder_test.go │ │ ├── icmp_solaris.go │ │ └── icmp_bsd.go │ ├── .gitattributes │ ├── proxy │ │ └── direct.go │ ├── README.md │ ├── websocket │ │ ├── dial.go │ │ ├── examplehandler_test.go │ │ └── exampledial_test.go │ ├── trace │ │ ├── trace_go17.go │ │ └── trace_go16.go │ ├── context │ │ ├── go19.go │ │ ├── ctxhttp │ │ │ └── ctxhttp_17_test.go │ │ └── withtimeout_test.go │ ├── route │ │ ├── syscall.go │ │ ├── interface_announce.go │ │ ├── message_darwin_test.go │ │ ├── interface_multicast.go │ │ └── sys.go │ └── nettest │ │ └── conntest_go16.go │ ├── sys │ ├── codereview.cfg │ ├── unix │ │ ├── .gitignore │ │ ├── endian_big.go │ │ ├── export_test.go │ │ ├── endian_little.go │ │ ├── constants.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── pagesize_unix.go │ │ ├── flock_linux_32bit.go │ │ ├── asm_solaris_amd64.s │ │ ├── gccgo_linux_amd64.go │ │ ├── race0.go │ │ ├── syscall_unix_gc.go │ │ ├── str.go │ │ ├── race.go │ │ ├── env_unix.go │ │ ├── flock.go │ │ ├── asm_freebsd_arm.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_darwin_386.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── syscall_solaris_amd64.go │ │ ├── asm_darwin_arm.s │ │ ├── bluetooth_linux.go │ │ ├── asm_darwin_arm64.s │ │ ├── dev_darwin.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_arm.go │ │ └── mksysnum_darwin.pl │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── plan9 │ │ ├── asm.s │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race0.go │ │ ├── mksysnum_plan9.sh │ │ ├── str.go │ │ ├── env_plan9.go │ │ ├── race.go │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ └── syscall_test.go │ ├── windows │ │ ├── svc │ │ │ ├── go12.go │ │ │ ├── example │ │ │ │ └── beep.go │ │ │ ├── go12.c │ │ │ └── go13.go │ │ ├── registry │ │ │ ├── mksyscall.go │ │ │ └── export_test.go │ │ ├── mksyscall.go │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── race0.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── str.go │ │ ├── env_windows.go │ │ ├── race.go │ │ ├── memory_windows.go │ │ └── eventlog.go │ ├── .gitattributes │ └── README.md │ └── crypto │ ├── codereview.cfg │ ├── .gitignore │ ├── ed25519 │ └── testdata │ │ └── sign.input.gz │ ├── sha3 │ ├── testdata │ │ └── keccakKats.json.deflate │ ├── keccakf_amd64.go │ ├── xor.go │ ├── register.go │ └── xor_generic.go │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── ssh │ ├── test │ │ ├── doc.go │ │ └── banner_test.go │ ├── terminal │ │ ├── util_linux.go │ │ └── util_bsd.go │ ├── testdata │ │ └── doc.go │ ├── tcpip_test.go │ └── doc.go │ ├── curve25519 │ ├── const_amd64.h │ ├── const_amd64.s │ └── curve25519_test.go │ ├── blake2b │ ├── blake2b_ref.go │ ├── blake2b_amd64.go │ └── register.go │ ├── .gitattributes │ ├── argon2 │ └── blamka_ref.go │ ├── blake2s │ ├── register.go │ ├── blake2s_ref.go │ └── blake2s_386.go │ ├── md4 │ └── example_test.go │ ├── chacha20poly1305 │ └── chacha20poly1305_noasm.go │ ├── pkcs12 │ ├── internal │ │ └── rc2 │ │ │ └── bench_test.go │ └── errors.go │ ├── scrypt │ └── example_test.go │ ├── poly1305 │ ├── sum_amd64.go │ └── sum_arm.go │ ├── README.md │ ├── salsa20 │ └── salsa │ │ └── salsa20_amd64.go │ └── bcrypt │ └── base64.go ├── Dockerfile ├── README.md ├── Gopkg.toml └── config.json /.gitignore: -------------------------------------------------------------------------------- 1 | /local 2 | /plugin 3 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/small.txt: -------------------------------------------------------------------------------- 1 | Kilts -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/small2.txt: -------------------------------------------------------------------------------- 1 | Google.com 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- 1 | h2demo 2 | h2demo.linux 3 | client-id.dat 4 | client-secret.dat 5 | token.dat 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/mask-unmask.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=mask unmask test 3 | 4 | [Service] 5 | ExecStart=/bin/sleep 400 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/start-stop.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=start stop test 3 | 4 | [Service] 5 | ExecStart=/bin/sleep 400 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/enable-disable.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=enable disable test 3 | 4 | [Service] 5 | ExecStart=/bin/sleep 400 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/subscribe-events.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=start stop test 3 | 4 | [Service] 5 | ExecStart=/bin/sleep 400 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/subscribe-events-set.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=start stop test 3 | 4 | [Service] 5 | ExecStart=/bin/sleep 400 6 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/examples/activation/httpserver/hello.socket: -------------------------------------------------------------------------------- 1 | [Socket] 2 | ListenStream=127.0.0.1:8076 3 | 4 | [Install] 5 | WantedBy=sockets.target 6 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/sdk/sdk_test.go: -------------------------------------------------------------------------------- 1 | package sdk 2 | 3 | import "testing" 4 | 5 | func TestTrue(t *testing.T) { 6 | // FIXME: Add tests 7 | } 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progrium/docker-9p/master/vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/backuptar/noop.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | // This file only exists to allow go get on non-Windows platforms. 3 | 4 | package backuptar 5 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progrium/docker-9p/master/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progrium/docker-9p/master/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/v7.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progrium/docker-9p/master/vendor/github.com/Microsoft/go-winio/archive/tar/testdata/v7.tar -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progrium/docker-9p/master/vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/start-failed.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=starting a failed test 3 | 4 | [Service] 5 | ExecStartPre=/bin/false 6 | ExecStart=/bin/sleep 400 7 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-plugins-helpers/.travis.yml: -------------------------------------------------------------------------------- 1 | --- 2 | sudo: required 3 | services: 4 | - docker 5 | notifications: 6 | email: false 7 | script: 8 | - make test 9 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/neg-size.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progrium/docker-9p/master/vendor/github.com/Microsoft/go-winio/archive/tar/testdata/neg-size.tar -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/issue10968.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progrium/docker-9p/master/vendor/github.com/Microsoft/go-winio/archive/tar/testdata/issue10968.tar -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/issue12435.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progrium/docker-9p/master/vendor/github.com/Microsoft/go-winio/archive/tar/testdata/issue12435.tar -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/writer-big.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progrium/docker-9p/master/vendor/github.com/Microsoft/go-winio/archive/tar/testdata/writer-big.tar -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/archive/tar/testdata/writer-big-long.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progrium/docker-9p/master/vendor/github.com/Microsoft/go-winio/archive/tar/testdata/writer-big-long.tar -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/syscall.go: -------------------------------------------------------------------------------- 1 | package winio 2 | 3 | //go:generate go run $GOROOT/src/syscall/mksyscall_windows.go -output zsyscall_windows.go file.go pipe.go sd.go fileinfo.go privilege.go backup.go 4 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/doc.go: -------------------------------------------------------------------------------- 1 | // Package connections provides libraries to work with network connections. 2 | // This library is divided in several components for specific usage. 3 | package connections 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at https://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at https://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/Sirupsen/logrus/terminal_check_appengine.go: -------------------------------------------------------------------------------- 1 | // +build appengine 2 | 3 | package logrus 4 | 5 | import ( 6 | "io" 7 | ) 8 | 9 | func checkIfTerminal(w io.Writer) bool { 10 | return true 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/coreos/go-systemd/fixtures/reload.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=reload test 3 | 4 | [Service] 5 | ExecStart=/bin/bash -c "trap '' HUP; /bin/sleep 400" 6 | ExecReload=-/bin/systemctl kill -s HUP reload.service 7 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 |