├── .dockerignore ├── .gitignore ├── .travis.sh ├── .travis.yml ├── Dockerfile ├── Dockerfile.travis ├── LICENSE ├── Makefile ├── README.md ├── cccp.yml ├── cmd └── image-inspector.go ├── examples └── openshift │ └── clamav │ ├── Dockerfile │ ├── README.md │ ├── build.sh │ ├── clam-scan.yaml │ ├── clamd.conf │ └── run-clam-scan │ └── main.go ├── hack ├── build-go.sh ├── cmd_util.sh ├── common.sh ├── install-tools.sh ├── lib │ └── util │ │ └── environment.sh ├── test-end-to-end.sh ├── test-go.sh ├── text.sh ├── util.sh └── verify-gofmt.sh ├── kubernetes └── image-inspector-app.yaml ├── pkg ├── api │ └── types.go ├── clamav │ ├── clamav_test.go │ └── scanner.go ├── cmd │ ├── types.go │ └── types_test.go ├── imageserver │ ├── imageserver_suite_test.go │ ├── types.go │ ├── webdav.go │ └── webdav_test.go ├── inspector │ ├── image-inspector.go │ ├── image-inspector_integration_test.go │ ├── image-inspector_test.go │ ├── inspector_suite_test.go │ ├── test │ │ ├── dockercfg1 │ │ ├── dockercfg2 │ │ ├── dockercfg3 │ │ └── passwordFile1 │ └── types.go ├── openscap │ ├── openscap.go │ └── openscap_test.go └── util │ ├── util.go │ └── util_test.go ├── test └── end-to-end │ └── e2e.sh ├── vendor.conf └── vendor ├── github.com ├── antchfx │ └── xpath │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.go │ │ ├── func.go │ │ ├── operator.go │ │ ├── parse.go │ │ ├── query.go │ │ └── xpath.go ├── fsouza │ └── go-dockerclient │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── DOCKER-LICENSE │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.markdown │ │ ├── auth.go │ │ ├── change.go │ │ ├── client.go │ │ ├── container.go │ │ ├── env.go │ │ ├── event.go │ │ ├── exec.go │ │ ├── external │ │ ├── github.com │ │ │ ├── Sirupsen │ │ │ │ └── logrus │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── entry.go │ │ │ │ │ ├── exported.go │ │ │ │ │ ├── formatter.go │ │ │ │ │ ├── hooks.go │ │ │ │ │ ├── json_formatter.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── logrus.go │ │ │ │ │ ├── terminal_bsd.go │ │ │ │ │ ├── terminal_linux.go │ │ │ │ │ ├── terminal_notwindows.go │ │ │ │ │ ├── terminal_solaris.go │ │ │ │ │ ├── terminal_windows.go │ │ │ │ │ ├── text_formatter.go │ │ │ │ │ └── writer.go │ │ │ ├── docker │ │ │ │ ├── docker │ │ │ │ │ ├── opts │ │ │ │ │ │ ├── envfile.go │ │ │ │ │ │ ├── hosts.go │ │ │ │ │ │ ├── hosts_unix.go │ │ │ │ │ │ ├── hosts_windows.go │ │ │ │ │ │ ├── ip.go │ │ │ │ │ │ ├── opts.go │ │ │ │ │ │ ├── opts_unix.go │ │ │ │ │ │ └── opts_windows.go │ │ │ │ │ └── pkg │ │ │ │ │ │ ├── archive │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── archive.go │ │ │ │ │ │ ├── archive_unix.go │ │ │ │ │ │ ├── archive_windows.go │ │ │ │ │ │ ├── changes.go │ │ │ │ │ │ ├── changes_linux.go │ │ │ │ │ │ ├── changes_other.go │ │ │ │ │ │ ├── changes_unix.go │ │ │ │ │ │ ├── changes_windows.go │ │ │ │ │ │ ├── copy.go │ │ │ │ │ │ ├── copy_unix.go │ │ │ │ │ │ ├── copy_windows.go │ │ │ │ │ │ ├── diff.go │ │ │ │ │ │ ├── example_changes.go │ │ │ │ │ │ ├── time_linux.go │ │ │ │ │ │ ├── time_unsupported.go │ │ │ │ │ │ ├── whiteouts.go │ │ │ │ │ │ └── wrap.go │ │ │ │ │ │ ├── fileutils │ │ │ │ │ │ ├── fileutils.go │ │ │ │ │ │ ├── fileutils_unix.go │ │ │ │ │ │ └── fileutils_windows.go │ │ │ │ │ │ ├── homedir │ │ │ │ │ │ └── homedir.go │ │ │ │ │ │ ├── idtools │ │ │ │ │ │ ├── idtools.go │ │ │ │ │ │ ├── idtools_unix.go │ │ │ │ │ │ ├── idtools_windows.go │ │ │ │ │ │ ├── usergroupadd_linux.go │ │ │ │ │ │ └── usergroupadd_unsupported.go │ │ │ │ │ │ ├── ioutils │ │ │ │ │ │ ├── bytespipe.go │ │ │ │ │ │ ├── fmt.go │ │ │ │ │ │ ├── multireader.go │ │ │ │ │ │ ├── readers.go │ │ │ │ │ │ ├── scheduler.go │ │ │ │ │ │ ├── scheduler_gccgo.go │ │ │ │ │ │ ├── temp_unix.go │ │ │ │ │ │ ├── temp_windows.go │ │ │ │ │ │ ├── writeflusher.go │ │ │ │ │ │ └── writers.go │ │ │ │ │ │ ├── longpath │ │ │ │ │ │ └── longpath.go │ │ │ │ │ │ ├── pools │ │ │ │ │ │ └── pools.go │ │ │ │ │ │ ├── promise │ │ │ │ │ │ └── promise.go │ │ │ │ │ │ ├── stdcopy │ │ │ │ │ │ └── stdcopy.go │ │ │ │ │ │ └── system │ │ │ │ │ │ ├── chtimes.go │ │ │ │ │ │ ├── chtimes_unix.go │ │ │ │ │ │ ├── chtimes_windows.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── events_windows.go │ │ │ │ │ │ ├── filesys.go │ │ │ │ │ │ ├── filesys_windows.go │ │ │ │ │ │ ├── lstat.go │ │ │ │ │ │ ├── lstat_windows.go │ │ │ │ │ │ ├── meminfo.go │ │ │ │ │ │ ├── meminfo_linux.go │ │ │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ │ │ ├── meminfo_windows.go │ │ │ │ │ │ ├── mknod.go │ │ │ │ │ │ ├── mknod_windows.go │ │ │ │ │ │ ├── path_unix.go │ │ │ │ │ │ ├── path_windows.go │ │ │ │ │ │ ├── stat.go │ │ │ │ │ │ ├── stat_freebsd.go │ │ │ │ │ │ ├── stat_linux.go │ │ │ │ │ │ ├── stat_openbsd.go │ │ │ │ │ │ ├── stat_solaris.go │ │ │ │ │ │ ├── stat_unsupported.go │ │ │ │ │ │ ├── stat_windows.go │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ ├── syscall_windows.go │ │ │ │ │ │ ├── umask.go │ │ │ │ │ │ ├── umask_windows.go │ │ │ │ │ │ ├── utimes_darwin.go │ │ │ │ │ │ ├── utimes_freebsd.go │ │ │ │ │ │ ├── utimes_linux.go │ │ │ │ │ │ ├── utimes_unsupported.go │ │ │ │ │ │ ├── xattrs_linux.go │ │ │ │ │ │ └── xattrs_unsupported.go │ │ │ │ └── go-units │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE.code │ │ │ │ │ ├── LICENSE.docs │ │ │ │ │ ├── MAINTAINERS │ │ │ │ │ ├── README.md │ │ │ │ │ ├── circle.yml │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── size.go │ │ │ │ │ └── ulimit.go │ │ │ ├── hashicorp │ │ │ │ └── go-cleanhttp │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── cleanhttp.go │ │ │ └── opencontainers │ │ │ │ └── runc │ │ │ │ └── libcontainer │ │ │ │ └── user │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── lookup.go │ │ │ │ ├── lookup_unix.go │ │ │ │ ├── lookup_unsupported.go │ │ │ │ └── user.go │ │ └── golang.org │ │ │ └── x │ │ │ ├── net │ │ │ └── context │ │ │ │ └── context.go │ │ │ └── sys │ │ │ └── unix │ │ │ ├── asm.s │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_386.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── constants.go │ │ │ ├── env_unix.go │ │ │ ├── env_unset.go │ │ │ ├── flock.go │ │ │ ├── flock_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_linux.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_386.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_no_getwd.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_linux.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.go │ │ │ ├── zerrors_darwin_386.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_386.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_dragonfly_386.go │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd.go │ │ │ ├── zsysnum_darwin_386.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_386.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_386.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ └── ztypes_solaris_amd64.go │ │ ├── image.go │ │ ├── misc.go │ │ ├── network.go │ │ ├── signal.go │ │ ├── tar.go │ │ ├── tls.go │ │ └── volume.go ├── golang │ └── glog │ │ ├── LICENSE │ │ ├── README │ │ ├── glog.go │ │ └── glog_file.go ├── openshift │ └── clam-scanner │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ └── pkg │ │ └── clamav │ │ ├── conn.go │ │ ├── scanner.go │ │ └── session.go └── subchen │ └── go-xmldom │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── document.go │ ├── dom.go │ ├── glide.lock │ ├── glide.yaml │ ├── node.go │ ├── print.go │ └── query.go └── golang.org └── x └── net ├── .gitattributes ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── PATENTS ├── README ├── codereview.cfg ├── context └── context.go └── webdav ├── file.go ├── if.go ├── internal └── xml │ ├── README │ ├── marshal.go │ ├── read.go │ ├── typeinfo.go │ └── xml.go ├── litmus_test_server.go ├── lock.go ├── prop.go ├── webdav.go └── xml.go /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | image-inspector 3 | README.md 4 | *.a 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /_output 2 | image-inspector 3 | *.a 4 | *.swp 5 | -------------------------------------------------------------------------------- /.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/.travis.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.travis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/Dockerfile.travis -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/README.md -------------------------------------------------------------------------------- /cccp.yml: -------------------------------------------------------------------------------- 1 | job-id: image-inspector 2 | -------------------------------------------------------------------------------- /cmd/image-inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/cmd/image-inspector.go -------------------------------------------------------------------------------- /examples/openshift/clamav/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/examples/openshift/clamav/Dockerfile -------------------------------------------------------------------------------- /examples/openshift/clamav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/examples/openshift/clamav/README.md -------------------------------------------------------------------------------- /examples/openshift/clamav/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/examples/openshift/clamav/build.sh -------------------------------------------------------------------------------- /examples/openshift/clamav/clam-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/examples/openshift/clamav/clam-scan.yaml -------------------------------------------------------------------------------- /examples/openshift/clamav/clamd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/examples/openshift/clamav/clamd.conf -------------------------------------------------------------------------------- /examples/openshift/clamav/run-clam-scan/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/examples/openshift/clamav/run-clam-scan/main.go -------------------------------------------------------------------------------- /hack/build-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/hack/build-go.sh -------------------------------------------------------------------------------- /hack/cmd_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/hack/cmd_util.sh -------------------------------------------------------------------------------- /hack/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/hack/common.sh -------------------------------------------------------------------------------- /hack/install-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/hack/install-tools.sh -------------------------------------------------------------------------------- /hack/lib/util/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/hack/lib/util/environment.sh -------------------------------------------------------------------------------- /hack/test-end-to-end.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/hack/test-end-to-end.sh -------------------------------------------------------------------------------- /hack/test-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/hack/test-go.sh -------------------------------------------------------------------------------- /hack/text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/hack/text.sh -------------------------------------------------------------------------------- /hack/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/hack/util.sh -------------------------------------------------------------------------------- /hack/verify-gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/hack/verify-gofmt.sh -------------------------------------------------------------------------------- /kubernetes/image-inspector-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/kubernetes/image-inspector-app.yaml -------------------------------------------------------------------------------- /pkg/api/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/api/types.go -------------------------------------------------------------------------------- /pkg/clamav/clamav_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/clamav/clamav_test.go -------------------------------------------------------------------------------- /pkg/clamav/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/clamav/scanner.go -------------------------------------------------------------------------------- /pkg/cmd/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/cmd/types.go -------------------------------------------------------------------------------- /pkg/cmd/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/cmd/types_test.go -------------------------------------------------------------------------------- /pkg/imageserver/imageserver_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/imageserver/imageserver_suite_test.go -------------------------------------------------------------------------------- /pkg/imageserver/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/imageserver/types.go -------------------------------------------------------------------------------- /pkg/imageserver/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/imageserver/webdav.go -------------------------------------------------------------------------------- /pkg/imageserver/webdav_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/imageserver/webdav_test.go -------------------------------------------------------------------------------- /pkg/inspector/image-inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/inspector/image-inspector.go -------------------------------------------------------------------------------- /pkg/inspector/image-inspector_integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/inspector/image-inspector_integration_test.go -------------------------------------------------------------------------------- /pkg/inspector/image-inspector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/inspector/image-inspector_test.go -------------------------------------------------------------------------------- /pkg/inspector/inspector_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/inspector/inspector_suite_test.go -------------------------------------------------------------------------------- /pkg/inspector/test/dockercfg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/inspector/test/dockercfg1 -------------------------------------------------------------------------------- /pkg/inspector/test/dockercfg2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/inspector/test/dockercfg2 -------------------------------------------------------------------------------- /pkg/inspector/test/dockercfg3: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /pkg/inspector/test/passwordFile1: -------------------------------------------------------------------------------- 1 | some_password 2 | -------------------------------------------------------------------------------- /pkg/inspector/types.go: -------------------------------------------------------------------------------- 1 | package inspector 2 | -------------------------------------------------------------------------------- /pkg/openscap/openscap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/openscap/openscap.go -------------------------------------------------------------------------------- /pkg/openscap/openscap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/openscap/openscap_test.go -------------------------------------------------------------------------------- /pkg/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/util/util.go -------------------------------------------------------------------------------- /pkg/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/pkg/util/util_test.go -------------------------------------------------------------------------------- /test/end-to-end/e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/test/end-to-end/e2e.sh -------------------------------------------------------------------------------- /vendor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor.conf -------------------------------------------------------------------------------- /vendor/github.com/antchfx/xpath/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/antchfx/xpath/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/antchfx/xpath/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/antchfx/xpath/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/antchfx/xpath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/antchfx/xpath/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/antchfx/xpath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/antchfx/xpath/README.md -------------------------------------------------------------------------------- /vendor/github.com/antchfx/xpath/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/antchfx/xpath/build.go -------------------------------------------------------------------------------- /vendor/github.com/antchfx/xpath/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/antchfx/xpath/func.go -------------------------------------------------------------------------------- /vendor/github.com/antchfx/xpath/operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/antchfx/xpath/operator.go -------------------------------------------------------------------------------- /vendor/github.com/antchfx/xpath/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/antchfx/xpath/parse.go -------------------------------------------------------------------------------- /vendor/github.com/antchfx/xpath/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/antchfx/xpath/query.go -------------------------------------------------------------------------------- /vendor/github.com/antchfx/xpath/xpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/antchfx/xpath/xpath.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/DOCKER-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/DOCKER-LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/Makefile -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/README.markdown -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/auth.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/change.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/client.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/container.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/env.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/event.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/exec.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_notwindows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/Sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/envfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/envfile.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/hosts_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/ip.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/opts/opts_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/README.md -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/archive_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_linux.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_other.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/changes_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/diff.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/example_changes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/example_changes.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/time_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/time_linux.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/time_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/time_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/whiteouts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/whiteouts.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/wrap.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/fileutils/fileutils_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/homedir/homedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/homedir/homedir.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/idtools_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/usergroupadd_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/usergroupadd_linux.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/usergroupadd_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/idtools/usergroupadd_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/bytespipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/bytespipe.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/fmt.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/multireader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/multireader.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/readers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/readers.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/scheduler.go: -------------------------------------------------------------------------------- 1 | // +build !gccgo 2 | 3 | package ioutils 4 | 5 | func callSchedulerIfNecessary() { 6 | } 7 | -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/scheduler_gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/scheduler_gccgo.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/temp_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/temp_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/temp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/temp_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/writeflusher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/writeflusher.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/writers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ioutils/writers.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/longpath/longpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/longpath/longpath.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/pools/pools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/pools/pools.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/promise/promise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/promise/promise.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/stdcopy/stdcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/stdcopy/stdcopy.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/errors.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/events_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/events_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/filesys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/filesys.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/filesys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/filesys_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/lstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/lstat.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/lstat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/lstat_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_linux.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/mknod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/mknod.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/mknod_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/mknod_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/path_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/path_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/path_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/path_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_freebsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_linux.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_openbsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/stat_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/syscall_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/syscall_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/umask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/umask.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/umask_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/umask_windows.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_freebsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_linux.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/utimes_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/xattrs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/xattrs_linux.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/xattrs_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/xattrs_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/LICENSE.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/LICENSE.code -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/LICENSE.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/LICENSE.docs -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/README.md -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/circle.yml -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/duration.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/size.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/go-units/ulimit.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/README.md -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/cleanhttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/hashicorp/go-cleanhttp/cleanhttp.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/MAINTAINERS -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/lookup.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/lookup_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/lookup_unsupported.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/github.com/opencontainers/runc/libcontainer/user/user.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_dragonfly_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_dragonfly_386.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_linux.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_linux.pl -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_linux.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_dragonfly_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_dragonfly_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_dragonfly_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_dragonfly_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsyscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysctl_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysctl_openbsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_dragonfly_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_dragonfly_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/zsysnum_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_dragonfly_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_dragonfly_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/external/golang.org/x/sys/unix/ztypes_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/image.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/misc.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/network.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/signal.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/tar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/tar.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/tls.go -------------------------------------------------------------------------------- /vendor/github.com/fsouza/go-dockerclient/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/fsouza/go-dockerclient/volume.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/clam-scanner/.dockerignore: -------------------------------------------------------------------------------- 1 | .git -------------------------------------------------------------------------------- /vendor/github.com/openshift/clam-scanner/.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/openshift/clam-scanner/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/openshift/clam-scanner/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/openshift/clam-scanner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/openshift/clam-scanner/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/openshift/clam-scanner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/openshift/clam-scanner/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/openshift/clam-scanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/openshift/clam-scanner/README.md -------------------------------------------------------------------------------- /vendor/github.com/openshift/clam-scanner/pkg/clamav/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/openshift/clam-scanner/pkg/clamav/conn.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/clam-scanner/pkg/clamav/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/openshift/clam-scanner/pkg/clamav/scanner.go -------------------------------------------------------------------------------- /vendor/github.com/openshift/clam-scanner/pkg/clamav/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/openshift/clam-scanner/pkg/clamav/session.go -------------------------------------------------------------------------------- /vendor/github.com/subchen/go-xmldom/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor -------------------------------------------------------------------------------- /vendor/github.com/subchen/go-xmldom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/subchen/go-xmldom/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/subchen/go-xmldom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/subchen/go-xmldom/README.md -------------------------------------------------------------------------------- /vendor/github.com/subchen/go-xmldom/document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/subchen/go-xmldom/document.go -------------------------------------------------------------------------------- /vendor/github.com/subchen/go-xmldom/dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/subchen/go-xmldom/dom.go -------------------------------------------------------------------------------- /vendor/github.com/subchen/go-xmldom/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/subchen/go-xmldom/glide.lock -------------------------------------------------------------------------------- /vendor/github.com/subchen/go-xmldom/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/subchen/go-xmldom/glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/subchen/go-xmldom/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/subchen/go-xmldom/node.go -------------------------------------------------------------------------------- /vendor/github.com/subchen/go-xmldom/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/subchen/go-xmldom/print.go -------------------------------------------------------------------------------- /vendor/github.com/subchen/go-xmldom/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/github.com/subchen/go-xmldom/query.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/internal/xml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/internal/xml/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/internal/xml/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/internal/xml/marshal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/internal/xml/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/internal/xml/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/internal/xml/typeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/internal/xml/typeinfo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/internal/xml/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/internal/xml/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/litmus_test_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/litmus_test_server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openshift/image-inspector/HEAD/vendor/golang.org/x/net/webdav/xml.go --------------------------------------------------------------------------------