├── .circleci └── config.yml ├── .gitignore ├── .travis.yml ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── cmd ├── inspect │ ├── display.go │ ├── main.go │ ├── nodeinfo.go │ └── podinfo.go ├── nvidia │ └── main.go └── podgetter │ └── main.go ├── demo └── binpack-1 │ ├── binpack-1.yaml │ └── job.yaml ├── device-plugin-ds.yaml ├── device-plugin-rbac.yaml ├── pkg ├── gpu │ └── nvidia │ │ ├── allocate.go │ │ ├── const.go │ │ ├── coredump.go │ │ ├── gpumanager.go │ │ ├── nvidia.go │ │ ├── podmanager.go │ │ ├── podutils.go │ │ ├── server.go │ │ └── watchers.go └── kubelet │ └── client │ ├── client.go │ └── client_test.go └── vendor ├── github.com ├── NVIDIA │ ├── gpu-monitoring-tools │ │ ├── LICENSE │ │ └── bindings │ │ │ └── go │ │ │ └── nvml │ │ │ ├── bindings.go │ │ │ ├── nvml.go │ │ │ ├── nvml.h │ │ │ ├── nvml_dl.c │ │ │ └── nvml_dl.h │ └── nvidia-docker │ │ ├── LICENSE │ │ ├── build │ │ ├── deb │ │ │ ├── copyright │ │ │ └── nvidia-docker.service │ │ └── rpm │ │ │ └── SOURCES │ │ │ ├── LICENSE │ │ │ └── nvidia-docker.service │ │ └── src │ │ └── nvml │ │ ├── bindings.go │ │ ├── nvml.go │ │ ├── nvml_dl.c │ │ └── nvml_dl.h ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── fsnotify │ └── fsnotify │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fen.go │ │ ├── fsnotify.go │ │ ├── inotify.go │ │ ├── inotify_poller.go │ │ ├── kqueue.go │ │ ├── open_mode_bsd.go │ │ ├── open_mode_darwin.go │ │ └── windows.go ├── ghodss │ └── yaml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fields.go │ │ └── yaml.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── GOLANG_CONTRIBUTORS │ │ ├── LICENSE │ │ ├── gogoproto │ │ ├── Makefile │ │ ├── doc.go │ │ ├── gogo.pb.go │ │ ├── gogo.pb.golden │ │ ├── gogo.proto │ │ └── helper.go │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── discard.go │ │ ├── duration.go │ │ ├── duration_gogo.go │ │ ├── encode.go │ │ ├── encode_gogo.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── extensions_gogo.go │ │ ├── lib.go │ │ ├── lib_gogo.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_reflect_gogo.go │ │ ├── pointer_unsafe.go │ │ ├── pointer_unsafe_gogo.go │ │ ├── properties.go │ │ ├── properties_gogo.go │ │ ├── skip_gogo.go │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ └── timestamp_gogo.go │ │ ├── protoc-gen-gogo │ │ └── descriptor │ │ │ ├── Makefile │ │ │ ├── descriptor.go │ │ │ ├── descriptor.pb.go │ │ │ ├── descriptor_gostring.gen.go │ │ │ └── helper.go │ │ └── sortkeys │ │ └── sortkeys.go ├── golang │ ├── glog │ │ ├── LICENSE │ │ ├── README │ │ ├── glog.go │ │ └── glog_file.go │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── clone.go │ │ ├── decode.go │ │ ├── discard.go │ │ ├── encode.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── table_marshal.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── text.go │ │ └── text_parser.go │ │ └── ptypes │ │ ├── any.go │ │ ├── any │ │ ├── any.pb.go │ │ └── any.proto │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration │ │ ├── duration.pb.go │ │ └── duration.proto │ │ ├── timestamp.go │ │ └── timestamp │ │ ├── timestamp.pb.go │ │ └── timestamp.proto ├── google │ ├── btree │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.go │ │ └── btree_mem.go │ └── gofuzz │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ └── fuzz.go ├── googleapis │ └── gnostic │ │ ├── LICENSE │ │ ├── OpenAPIv2 │ │ ├── OpenAPIv2.go │ │ ├── OpenAPIv2.pb.go │ │ ├── OpenAPIv2.proto │ │ ├── README.md │ │ └── openapi-2.0.json │ │ ├── compiler │ │ ├── README.md │ │ ├── context.go │ │ ├── error.go │ │ ├── extension-handler.go │ │ ├── helpers.go │ │ ├── main.go │ │ └── reader.go │ │ └── extensions │ │ ├── COMPILE-EXTENSION.sh │ │ ├── README.md │ │ ├── extension.pb.go │ │ ├── extension.proto │ │ └── extensions.go ├── gregjones │ └── httpcache │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── diskcache │ │ └── diskcache.go │ │ └── httpcache.go ├── hashicorp │ └── golang-lru │ │ ├── .gitignore │ │ ├── 2q.go │ │ ├── LICENSE │ │ ├── README.md │ │ ├── arc.go │ │ ├── doc.go │ │ ├── go.mod │ │ ├── lru.go │ │ └── simplelru │ │ ├── lru.go │ │ └── lru_interface.go ├── imdario │ └── mergo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ ├── mergo.go │ │ └── testdata │ │ └── license.yml ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── adapter.go │ │ ├── any.go │ │ ├── any_array.go │ │ ├── any_bool.go │ │ ├── any_float.go │ │ ├── any_int32.go │ │ ├── any_int64.go │ │ ├── any_invalid.go │ │ ├── any_nil.go │ │ ├── any_number.go │ │ ├── any_object.go │ │ ├── any_str.go │ │ ├── any_uint32.go │ │ ├── any_uint64.go │ │ ├── build.sh │ │ ├── config.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── iter.go │ │ ├── iter_array.go │ │ ├── iter_float.go │ │ ├── iter_int.go │ │ ├── iter_object.go │ │ ├── iter_skip.go │ │ ├── iter_skip_sloppy.go │ │ ├── iter_skip_strict.go │ │ ├── iter_str.go │ │ ├── jsoniter.go │ │ ├── pool.go │ │ ├── reflect.go │ │ ├── reflect_array.go │ │ ├── reflect_dynamic.go │ │ ├── reflect_extension.go │ │ ├── reflect_json_number.go │ │ ├── reflect_json_raw_message.go │ │ ├── reflect_map.go │ │ ├── reflect_marshaler.go │ │ ├── reflect_native.go │ │ ├── reflect_optional.go │ │ ├── reflect_slice.go │ │ ├── reflect_struct_decoder.go │ │ ├── reflect_struct_encoder.go │ │ ├── stream.go │ │ ├── stream_float.go │ │ ├── stream_int.go │ │ ├── stream_str.go │ │ └── test.sh ├── modern-go │ ├── concurrent │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── executor.go │ │ ├── go_above_19.go │ │ ├── go_below_19.go │ │ ├── log.go │ │ ├── test.sh │ │ └── unbounded_executor.go │ └── reflect2 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go_above_17.go │ │ ├── go_above_19.go │ │ ├── go_below_17.go │ │ ├── go_below_19.go │ │ ├── reflect2.go │ │ ├── reflect2_amd64.s │ │ ├── reflect2_kind.go │ │ ├── relfect2_386.s │ │ ├── relfect2_amd64p32.s │ │ ├── relfect2_arm.s │ │ ├── relfect2_arm64.s │ │ ├── relfect2_mips64x.s │ │ ├── relfect2_mipsx.s │ │ ├── relfect2_ppc64x.s │ │ ├── relfect2_s390x.s │ │ ├── safe_field.go │ │ ├── safe_map.go │ │ ├── safe_slice.go │ │ ├── safe_struct.go │ │ ├── safe_type.go │ │ ├── test.sh │ │ ├── type_map.go │ │ ├── unsafe_array.go │ │ ├── unsafe_eface.go │ │ ├── unsafe_field.go │ │ ├── unsafe_iface.go │ │ ├── unsafe_link.go │ │ ├── unsafe_map.go │ │ ├── unsafe_ptr.go │ │ ├── unsafe_slice.go │ │ ├── unsafe_struct.go │ │ └── unsafe_type.go ├── petar │ └── GoLLRB │ │ ├── AUTHORS │ │ ├── LICENSE │ │ └── llrb │ │ ├── avgvar.go │ │ ├── iterator.go │ │ ├── llrb-stats.go │ │ ├── llrb.go │ │ └── util.go ├── peterbourgon │ └── diskv │ │ ├── LICENSE │ │ ├── README.md │ │ ├── compression.go │ │ ├── diskv.go │ │ └── index.go └── spf13 │ └── pflag │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bool.go │ ├── bool_slice.go │ ├── bytes.go │ ├── count.go │ ├── duration.go │ ├── duration_slice.go │ ├── flag.go │ ├── float32.go │ ├── float64.go │ ├── golangflag.go │ ├── int.go │ ├── int16.go │ ├── int32.go │ ├── int64.go │ ├── int8.go │ ├── int_slice.go │ ├── ip.go │ ├── ip_slice.go │ ├── ipmask.go │ ├── ipnet.go │ ├── string.go │ ├── string_array.go │ ├── string_slice.go │ ├── string_to_int.go │ ├── string_to_string.go │ ├── uint.go │ ├── uint16.go │ ├── uint32.go │ ├── uint64.go │ ├── uint8.go │ └── uint_slice.go ├── golang.org └── x │ ├── crypto │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── ssh │ │ └── terminal │ │ ├── terminal.go │ │ ├── util.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ ├── net │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ ├── context.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ └── pre_go19.go │ ├── http2 │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── configure_transport.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go17_not18.go │ │ ├── go18.go │ │ ├── go19.go │ │ ├── gotrack.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── not_go16.go │ │ ├── not_go17.go │ │ ├── not_go18.go │ │ ├── not_go19.go │ │ ├── pipe.go │ │ ├── server.go │ │ ├── transport.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ └── writesched_random.go │ ├── idna │ │ ├── idna.go │ │ ├── punycode.go │ │ ├── tables.go │ │ ├── trie.go │ │ └── trieval.go │ ├── internal │ │ └── timeseries │ │ │ └── timeseries.go │ ├── lex │ │ └── httplex │ │ │ └── httplex.go │ └── trace │ │ ├── events.go │ │ ├── histogram.go │ │ ├── trace.go │ │ ├── trace_go16.go │ │ └── trace_go17.go │ ├── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.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_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── fcntl.go │ │ ├── fcntl_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ioctl.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── openbsd_pledge.go │ │ ├── pagesize_unix.go │ │ ├── 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_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_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── timestruct.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.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_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace386_linux.go │ │ ├── zptracearm_linux.go │ │ ├── zptracemips_linux.go │ │ ├── zptracemipsle_linux.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.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_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.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_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.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_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ └── windows │ │ ├── aliases.go │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ └── zsyscall_windows.go │ ├── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── collate │ │ ├── build │ │ │ ├── builder.go │ │ │ ├── colelem.go │ │ │ ├── contract.go │ │ │ ├── order.go │ │ │ ├── table.go │ │ │ └── trie.go │ │ ├── collate.go │ │ ├── index.go │ │ ├── maketables.go │ │ ├── option.go │ │ ├── sort.go │ │ └── tables.go │ ├── internal │ │ ├── colltab │ │ │ ├── collelem.go │ │ │ ├── colltab.go │ │ │ ├── contract.go │ │ │ ├── iter.go │ │ │ ├── numeric.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ └── weighter.go │ │ ├── gen │ │ │ ├── code.go │ │ │ └── gen.go │ │ ├── tag │ │ │ └── tag.go │ │ ├── triegen │ │ │ ├── compact.go │ │ │ ├── print.go │ │ │ └── triegen.go │ │ └── ucd │ │ │ └── ucd.go │ ├── language │ │ ├── Makefile │ │ ├── common.go │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_index.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── index.go │ │ ├── language.go │ │ ├── lookup.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── secure │ │ └── bidirule │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ ├── transform │ │ └── transform.go │ └── unicode │ │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── gen.go │ │ ├── gen_ranges.go │ │ ├── gen_trieval.go │ │ ├── prop.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ └── trieval.go │ │ ├── cldr │ │ ├── base.go │ │ ├── cldr.go │ │ ├── collate.go │ │ ├── decode.go │ │ ├── makexml.go │ │ ├── resolve.go │ │ ├── slice.go │ │ └── xml.go │ │ ├── norm │ │ ├── composition.go │ │ ├── forminfo.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── maketables.go │ │ ├── normalize.go │ │ ├── readwriter.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ ├── trie.go │ │ └── triegen.go │ │ └── rangetable │ │ ├── gen.go │ │ ├── merge.go │ │ ├── rangetable.go │ │ ├── tables10.0.0.go │ │ └── tables9.0.0.go │ └── time │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── rate │ └── rate.go ├── google.golang.org ├── genproto │ ├── LICENSE │ └── googleapis │ │ └── rpc │ │ └── status │ │ └── status.pb.go └── grpc │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── backoff.go │ ├── balancer.go │ ├── balancer │ ├── balancer.go │ ├── base │ │ ├── balancer.go │ │ └── base.go │ └── roundrobin │ │ └── roundrobin.go │ ├── balancer_conn_wrappers.go │ ├── balancer_v1_wrapper.go │ ├── call.go │ ├── clientconn.go │ ├── codec.go │ ├── codegen.sh │ ├── codes │ ├── code_string.go │ └── codes.go │ ├── connectivity │ └── connectivity.go │ ├── credentials │ ├── credentials.go │ ├── go16.go │ ├── go17.go │ ├── go18.go │ └── go19.go │ ├── dialoptions.go │ ├── doc.go │ ├── encoding │ ├── encoding.go │ └── proto │ │ └── proto.go │ ├── go.mod │ ├── go.sum │ ├── go16.go │ ├── go17.go │ ├── grpclog │ ├── grpclog.go │ ├── logger.go │ └── loggerv2.go │ ├── install_gae.sh │ ├── interceptor.go │ ├── internal │ ├── backoff │ │ └── backoff.go │ ├── channelz │ │ ├── funcs.go │ │ ├── types.go │ │ ├── types_linux.go │ │ ├── types_nonlinux.go │ │ ├── util_linux_go19.go │ │ └── util_nonlinux_pre_go19.go │ ├── envconfig │ │ └── envconfig.go │ ├── grpcrand │ │ └── grpcrand.go │ ├── internal.go │ └── transport │ │ ├── bdp_estimator.go │ │ ├── controlbuf.go │ │ ├── defaults.go │ │ ├── flowcontrol.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── handler_server.go │ │ ├── http2_client.go │ │ ├── http2_server.go │ │ ├── http_util.go │ │ ├── log.go │ │ └── transport.go │ ├── keepalive │ └── keepalive.go │ ├── metadata │ └── metadata.go │ ├── naming │ ├── dns_resolver.go │ ├── go17.go │ ├── go18.go │ └── naming.go │ ├── peer │ └── peer.go │ ├── picker_wrapper.go │ ├── pickfirst.go │ ├── proxy.go │ ├── resolver │ ├── dns │ │ ├── dns_resolver.go │ │ ├── go19.go │ │ └── pre_go19.go │ ├── passthrough │ │ └── passthrough.go │ └── resolver.go │ ├── resolver_conn_wrapper.go │ ├── rpc_util.go │ ├── server.go │ ├── service_config.go │ ├── stats │ ├── handlers.go │ └── stats.go │ ├── status │ ├── go16.go │ ├── go17.go │ └── status.go │ ├── stream.go │ ├── tap │ └── tap.go │ ├── trace.go │ ├── version.go │ └── vet.sh ├── gopkg.in ├── inf.v0 │ ├── LICENSE │ ├── dec.go │ └── rounder.go └── yaml.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── go.mod │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── k8s.io ├── api ├── LICENSE ├── admissionregistration │ ├── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── apps │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ ├── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta2 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── authentication │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── authorization │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── autoscaling │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v2beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── batch │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ ├── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v2alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── certificates │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── core │ └── v1 │ │ ├── annotation_key_constants.go │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── objectreference.go │ │ ├── register.go │ │ ├── resource.go │ │ ├── taint.go │ │ ├── toleration.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── events │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── extensions │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── networking │ └── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── policy │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── rbac │ ├── v1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ ├── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── scheduling │ ├── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go ├── settings │ └── v1alpha1 │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go └── storage │ ├── v1 │ ├── doc.go │ ├── generated.pb.go │ ├── generated.proto │ ├── register.go │ ├── types.go │ ├── types_swagger_doc_generated.go │ └── zz_generated.deepcopy.go │ ├── v1alpha1 │ ├── doc.go │ ├── generated.pb.go │ ├── generated.proto │ ├── register.go │ ├── types.go │ ├── types_swagger_doc_generated.go │ └── zz_generated.deepcopy.go │ └── v1beta1 │ ├── doc.go │ ├── generated.pb.go │ ├── generated.proto │ ├── register.go │ ├── types.go │ ├── types_swagger_doc_generated.go │ └── zz_generated.deepcopy.go ├── apiextensions-apiserver ├── LICENSE └── pkg │ └── features │ └── kube_features.go ├── apimachinery ├── LICENSE ├── pkg │ ├── api │ │ ├── errors │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ └── errors.go │ │ ├── meta │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── firsthit_restmapper.go │ │ │ ├── help.go │ │ │ ├── interfaces.go │ │ │ ├── lazy.go │ │ │ ├── meta.go │ │ │ ├── multirestmapper.go │ │ │ ├── priority.go │ │ │ └── restmapper.go │ │ └── resource │ │ │ ├── OWNERS │ │ │ ├── amount.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── math.go │ │ │ ├── quantity.go │ │ │ ├── quantity_proto.go │ │ │ ├── scale_int.go │ │ │ ├── suffix.go │ │ │ └── zz_generated.deepcopy.go │ ├── apis │ │ └── meta │ │ │ ├── internalversion │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1 │ │ │ ├── OWNERS │ │ │ ├── controller_ref.go │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── group_version.go │ │ │ ├── helpers.go │ │ │ ├── labels.go │ │ │ ├── meta.go │ │ │ ├── micro_time.go │ │ │ ├── micro_time_proto.go │ │ │ ├── register.go │ │ │ ├── time.go │ │ │ ├── time_proto.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── unstructured │ │ │ │ ├── helpers.go │ │ │ │ ├── unstructured.go │ │ │ │ ├── unstructured_list.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── watch.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ └── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── deepcopy.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ ├── conversion │ │ ├── converter.go │ │ ├── deep_equal.go │ │ ├── doc.go │ │ ├── helper.go │ │ └── queryparams │ │ │ ├── convert.go │ │ │ └── doc.go │ ├── fields │ │ ├── doc.go │ │ ├── fields.go │ │ ├── requirements.go │ │ └── selector.go │ ├── labels │ │ ├── doc.go │ │ ├── labels.go │ │ ├── selector.go │ │ └── zz_generated.deepcopy.go │ ├── runtime │ │ ├── codec.go │ │ ├── codec_check.go │ │ ├── conversion.go │ │ ├── converter.go │ │ ├── doc.go │ │ ├── embedded.go │ │ ├── error.go │ │ ├── extension.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── register.go │ │ ├── schema │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── group_version.go │ │ │ └── interfaces.go │ │ ├── scheme.go │ │ ├── scheme_builder.go │ │ ├── serializer │ │ │ ├── codec_factory.go │ │ │ ├── json │ │ │ │ ├── json.go │ │ │ │ └── meta.go │ │ │ ├── negotiated_codec.go │ │ │ ├── protobuf │ │ │ │ ├── doc.go │ │ │ │ └── protobuf.go │ │ │ ├── protobuf_extension.go │ │ │ ├── recognizer │ │ │ │ └── recognizer.go │ │ │ ├── streaming │ │ │ │ └── streaming.go │ │ │ └── versioning │ │ │ │ └── versioning.go │ │ ├── swagger_doc_generator.go │ │ ├── types.go │ │ ├── types_proto.go │ │ └── zz_generated.deepcopy.go │ ├── selection │ │ └── operator.go │ ├── types │ │ ├── doc.go │ │ ├── namespacedname.go │ │ ├── nodename.go │ │ ├── patch.go │ │ └── uid.go │ ├── util │ │ ├── cache │ │ │ ├── cache.go │ │ │ └── lruexpirecache.go │ │ ├── clock │ │ │ └── clock.go │ │ ├── diff │ │ │ └── diff.go │ │ ├── errors │ │ │ ├── doc.go │ │ │ └── errors.go │ │ ├── framer │ │ │ └── framer.go │ │ ├── intstr │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ └── intstr.go │ │ ├── json │ │ │ └── json.go │ │ ├── mergepatch │ │ │ ├── OWNERS │ │ │ ├── errors.go │ │ │ └── util.go │ │ ├── net │ │ │ ├── http.go │ │ │ ├── interface.go │ │ │ ├── port_range.go │ │ │ ├── port_split.go │ │ │ └── util.go │ │ ├── runtime │ │ │ └── runtime.go │ │ ├── sets │ │ │ ├── byte.go │ │ │ ├── doc.go │ │ │ ├── empty.go │ │ │ ├── int.go │ │ │ ├── int64.go │ │ │ └── string.go │ │ ├── strategicpatch │ │ │ ├── OWNERS │ │ │ ├── errors.go │ │ │ ├── meta.go │ │ │ ├── patch.go │ │ │ └── types.go │ │ ├── validation │ │ │ ├── field │ │ │ │ ├── errors.go │ │ │ │ └── path.go │ │ │ └── validation.go │ │ ├── wait │ │ │ ├── doc.go │ │ │ └── wait.go │ │ └── yaml │ │ │ └── decoder.go │ ├── version │ │ ├── doc.go │ │ ├── helpers.go │ │ └── types.go │ └── watch │ │ ├── doc.go │ │ ├── filter.go │ │ ├── mux.go │ │ ├── streamwatcher.go │ │ ├── until.go │ │ ├── watch.go │ │ └── zz_generated.deepcopy.go └── third_party │ └── forked │ └── golang │ ├── json │ ├── OWNERS │ └── fields.go │ └── reflect │ └── deep_equal.go ├── apiserver ├── LICENSE └── pkg │ ├── features │ ├── OWNERS │ └── kube_features.go │ └── util │ └── feature │ └── feature_gate.go ├── client-go ├── LICENSE ├── discovery │ ├── cached_discovery.go │ ├── discovery_client.go │ ├── helper.go │ ├── round_tripper.go │ └── unstructured.go ├── informers │ ├── admissionregistration │ │ ├── interface.go │ │ ├── v1alpha1 │ │ │ ├── initializerconfiguration.go │ │ │ └── interface.go │ │ └── v1beta1 │ │ │ ├── interface.go │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ └── validatingwebhookconfiguration.go │ ├── apps │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── interface.go │ │ │ ├── replicaset.go │ │ │ └── statefulset.go │ │ ├── v1beta1 │ │ │ ├── controllerrevision.go │ │ │ ├── deployment.go │ │ │ ├── interface.go │ │ │ └── statefulset.go │ │ └── v1beta2 │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── interface.go │ │ │ ├── replicaset.go │ │ │ └── statefulset.go │ ├── autoscaling │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── horizontalpodautoscaler.go │ │ │ └── interface.go │ │ └── v2beta1 │ │ │ ├── horizontalpodautoscaler.go │ │ │ └── interface.go │ ├── batch │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── interface.go │ │ │ └── job.go │ │ ├── v1beta1 │ │ │ ├── cronjob.go │ │ │ └── interface.go │ │ └── v2alpha1 │ │ │ ├── cronjob.go │ │ │ └── interface.go │ ├── certificates │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── certificatesigningrequest.go │ │ │ └── interface.go │ ├── core │ │ ├── interface.go │ │ └── v1 │ │ │ ├── componentstatus.go │ │ │ ├── configmap.go │ │ │ ├── endpoints.go │ │ │ ├── event.go │ │ │ ├── interface.go │ │ │ ├── limitrange.go │ │ │ ├── namespace.go │ │ │ ├── node.go │ │ │ ├── persistentvolume.go │ │ │ ├── persistentvolumeclaim.go │ │ │ ├── pod.go │ │ │ ├── podtemplate.go │ │ │ ├── replicationcontroller.go │ │ │ ├── resourcequota.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ └── serviceaccount.go │ ├── events │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── event.go │ │ │ └── interface.go │ ├── extensions │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── ingress.go │ │ │ ├── interface.go │ │ │ ├── podsecuritypolicy.go │ │ │ └── replicaset.go │ ├── factory.go │ ├── generic.go │ ├── internalinterfaces │ │ └── factory_interfaces.go │ ├── networking │ │ ├── interface.go │ │ └── v1 │ │ │ ├── interface.go │ │ │ └── networkpolicy.go │ ├── policy │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── interface.go │ │ │ ├── poddisruptionbudget.go │ │ │ └── podsecuritypolicy.go │ ├── rbac │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── interface.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── v1alpha1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── interface.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ └── v1beta1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── interface.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ ├── scheduling │ │ ├── interface.go │ │ ├── v1alpha1 │ │ │ ├── interface.go │ │ │ └── priorityclass.go │ │ └── v1beta1 │ │ │ ├── interface.go │ │ │ └── priorityclass.go │ ├── settings │ │ ├── interface.go │ │ └── v1alpha1 │ │ │ ├── interface.go │ │ │ └── podpreset.go │ └── storage │ │ ├── interface.go │ │ ├── v1 │ │ ├── interface.go │ │ └── storageclass.go │ │ ├── v1alpha1 │ │ ├── interface.go │ │ └── volumeattachment.go │ │ └── v1beta1 │ │ ├── interface.go │ │ ├── storageclass.go │ │ └── volumeattachment.go ├── kubernetes │ ├── clientset.go │ ├── doc.go │ ├── import.go │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ └── typed │ │ ├── admissionregistration │ │ ├── v1alpha1 │ │ │ ├── admissionregistration_client.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ └── initializerconfiguration.go │ │ └── v1beta1 │ │ │ ├── admissionregistration_client.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apps │ │ ├── v1 │ │ │ ├── apps_client.go │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── replicaset.go │ │ │ └── statefulset.go │ │ ├── v1beta1 │ │ │ ├── apps_client.go │ │ │ ├── controllerrevision.go │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── scale.go │ │ │ └── statefulset.go │ │ └── v1beta2 │ │ │ ├── apps_client.go │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── replicaset.go │ │ │ ├── scale.go │ │ │ └── statefulset.go │ │ ├── authentication │ │ ├── v1 │ │ │ ├── authentication_client.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── tokenreview.go │ │ │ └── tokenreview_expansion.go │ │ └── v1beta1 │ │ │ ├── authentication_client.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── tokenreview.go │ │ │ └── tokenreview_expansion.go │ │ ├── authorization │ │ ├── v1 │ │ │ ├── authorization_client.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── localsubjectaccessreview.go │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectaccessreview.go │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectrulesreview.go │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ ├── subjectaccessreview.go │ │ │ └── subjectaccessreview_expansion.go │ │ └── v1beta1 │ │ │ ├── authorization_client.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── localsubjectaccessreview.go │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectaccessreview.go │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectrulesreview.go │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ ├── subjectaccessreview.go │ │ │ └── subjectaccessreview_expansion.go │ │ ├── autoscaling │ │ ├── v1 │ │ │ ├── autoscaling_client.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ └── horizontalpodautoscaler.go │ │ └── v2beta1 │ │ │ ├── autoscaling_client.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ ├── v1 │ │ │ ├── batch_client.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ └── job.go │ │ ├── v1beta1 │ │ │ ├── batch_client.go │ │ │ ├── cronjob.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ └── v2alpha1 │ │ │ ├── batch_client.go │ │ │ ├── cronjob.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ ├── certificates │ │ └── v1beta1 │ │ │ ├── certificates_client.go │ │ │ ├── certificatesigningrequest.go │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ ├── doc.go │ │ │ └── generated_expansion.go │ │ ├── core │ │ └── v1 │ │ │ ├── componentstatus.go │ │ │ ├── configmap.go │ │ │ ├── core_client.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── event.go │ │ │ ├── event_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── limitrange.go │ │ │ ├── namespace.go │ │ │ ├── namespace_expansion.go │ │ │ ├── node.go │ │ │ ├── node_expansion.go │ │ │ ├── persistentvolume.go │ │ │ ├── persistentvolumeclaim.go │ │ │ ├── pod.go │ │ │ ├── pod_expansion.go │ │ │ ├── podtemplate.go │ │ │ ├── replicationcontroller.go │ │ │ ├── resourcequota.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ ├── service_expansion.go │ │ │ ├── serviceaccount.go │ │ │ └── serviceaccount_expansion.go │ │ ├── events │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_client.go │ │ │ └── generated_expansion.go │ │ ├── extensions │ │ └── v1beta1 │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── doc.go │ │ │ ├── extensions_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── ingress.go │ │ │ ├── podsecuritypolicy.go │ │ │ ├── replicaset.go │ │ │ ├── scale.go │ │ │ └── scale_expansion.go │ │ ├── networking │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── networking_client.go │ │ │ └── networkpolicy.go │ │ ├── policy │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── eviction.go │ │ │ ├── eviction_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── poddisruptionbudget.go │ │ │ ├── podsecuritypolicy.go │ │ │ └── policy_client.go │ │ ├── rbac │ │ ├── v1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── rbac_client.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── v1alpha1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── rbac_client.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ └── v1beta1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── rbac_client.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── scheduling │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── priorityclass.go │ │ │ └── scheduling_client.go │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── priorityclass.go │ │ │ └── scheduling_client.go │ │ ├── settings │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── podpreset.go │ │ │ └── settings_client.go │ │ └── storage │ │ ├── v1 │ │ ├── doc.go │ │ ├── generated_expansion.go │ │ ├── storage_client.go │ │ └── storageclass.go │ │ ├── v1alpha1 │ │ ├── doc.go │ │ ├── generated_expansion.go │ │ ├── storage_client.go │ │ └── volumeattachment.go │ │ └── v1beta1 │ │ ├── doc.go │ │ ├── generated_expansion.go │ │ ├── storage_client.go │ │ ├── storageclass.go │ │ └── volumeattachment.go ├── listers │ ├── admissionregistration │ │ ├── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── initializerconfiguration.go │ │ └── v1beta1 │ │ │ ├── expansion_generated.go │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ └── validatingwebhookconfiguration.go │ ├── apps │ │ ├── v1 │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── daemonset_expansion.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── expansion_generated.go │ │ │ ├── replicaset.go │ │ │ ├── replicaset_expansion.go │ │ │ ├── statefulset.go │ │ │ └── statefulset_expansion.go │ │ ├── v1beta1 │ │ │ ├── controllerrevision.go │ │ │ ├── deployment.go │ │ │ ├── expansion_generated.go │ │ │ ├── scale.go │ │ │ ├── statefulset.go │ │ │ └── statefulset_expansion.go │ │ └── v1beta2 │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── daemonset_expansion.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── expansion_generated.go │ │ │ ├── replicaset.go │ │ │ ├── replicaset_expansion.go │ │ │ ├── scale.go │ │ │ ├── statefulset.go │ │ │ └── statefulset_expansion.go │ ├── autoscaling │ │ ├── v1 │ │ │ ├── expansion_generated.go │ │ │ └── horizontalpodautoscaler.go │ │ └── v2beta1 │ │ │ ├── expansion_generated.go │ │ │ └── horizontalpodautoscaler.go │ ├── batch │ │ ├── v1 │ │ │ ├── expansion_generated.go │ │ │ ├── job.go │ │ │ └── job_expansion.go │ │ ├── v1beta1 │ │ │ ├── cronjob.go │ │ │ └── expansion_generated.go │ │ └── v2alpha1 │ │ │ ├── cronjob.go │ │ │ └── expansion_generated.go │ ├── certificates │ │ └── v1beta1 │ │ │ ├── certificatesigningrequest.go │ │ │ └── expansion_generated.go │ ├── core │ │ └── v1 │ │ │ ├── componentstatus.go │ │ │ ├── configmap.go │ │ │ ├── endpoints.go │ │ │ ├── event.go │ │ │ ├── expansion_generated.go │ │ │ ├── limitrange.go │ │ │ ├── namespace.go │ │ │ ├── node.go │ │ │ ├── node_expansion.go │ │ │ ├── persistentvolume.go │ │ │ ├── persistentvolumeclaim.go │ │ │ ├── pod.go │ │ │ ├── podtemplate.go │ │ │ ├── replicationcontroller.go │ │ │ ├── replicationcontroller_expansion.go │ │ │ ├── resourcequota.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ ├── service_expansion.go │ │ │ └── serviceaccount.go │ ├── events │ │ └── v1beta1 │ │ │ ├── event.go │ │ │ └── expansion_generated.go │ ├── extensions │ │ └── v1beta1 │ │ │ ├── daemonset.go │ │ │ ├── daemonset_expansion.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── expansion_generated.go │ │ │ ├── ingress.go │ │ │ ├── podsecuritypolicy.go │ │ │ ├── replicaset.go │ │ │ ├── replicaset_expansion.go │ │ │ └── scale.go │ ├── networking │ │ └── v1 │ │ │ ├── expansion_generated.go │ │ │ └── networkpolicy.go │ ├── policy │ │ └── v1beta1 │ │ │ ├── eviction.go │ │ │ ├── expansion_generated.go │ │ │ ├── poddisruptionbudget.go │ │ │ ├── poddisruptionbudget_expansion.go │ │ │ └── podsecuritypolicy.go │ ├── rbac │ │ ├── v1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── expansion_generated.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── v1alpha1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── expansion_generated.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ └── v1beta1 │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── expansion_generated.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ ├── scheduling │ │ ├── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── priorityclass.go │ │ └── v1beta1 │ │ │ ├── expansion_generated.go │ │ │ └── priorityclass.go │ ├── settings │ │ └── v1alpha1 │ │ │ ├── expansion_generated.go │ │ │ └── podpreset.go │ └── storage │ │ ├── v1 │ │ ├── expansion_generated.go │ │ └── storageclass.go │ │ ├── v1alpha1 │ │ ├── expansion_generated.go │ │ └── volumeattachment.go │ │ └── v1beta1 │ │ ├── expansion_generated.go │ │ ├── storageclass.go │ │ └── volumeattachment.go ├── pkg │ ├── apis │ │ └── clientauthentication │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ ├── v1beta1 │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ └── version │ │ ├── .gitattributes │ │ ├── base.go │ │ ├── def.bzl │ │ ├── doc.go │ │ └── version.go ├── plugin │ └── pkg │ │ └── client │ │ └── auth │ │ └── exec │ │ └── exec.go ├── rest │ ├── OWNERS │ ├── client.go │ ├── config.go │ ├── plugin.go │ ├── request.go │ ├── transport.go │ ├── url_utils.go │ ├── urlbackoff.go │ ├── watch │ │ ├── decoder.go │ │ └── encoder.go │ └── zz_generated.deepcopy.go ├── tools │ ├── auth │ │ └── clientauth.go │ ├── cache │ │ ├── OWNERS │ │ ├── controller.go │ │ ├── delta_fifo.go │ │ ├── doc.go │ │ ├── expiration_cache.go │ │ ├── expiration_cache_fakes.go │ │ ├── fake_custom_store.go │ │ ├── fifo.go │ │ ├── heap.go │ │ ├── index.go │ │ ├── listers.go │ │ ├── listwatch.go │ │ ├── mutation_cache.go │ │ ├── mutation_detector.go │ │ ├── reflector.go │ │ ├── reflector_metrics.go │ │ ├── shared_informer.go │ │ ├── store.go │ │ ├── thread_safe_store.go │ │ └── undelta_store.go │ ├── clientcmd │ │ ├── api │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── latest │ │ │ │ └── latest.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1 │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── auth_loaders.go │ │ ├── client_config.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── flag.go │ │ ├── helpers.go │ │ ├── loader.go │ │ ├── merged_client_builder.go │ │ ├── overrides.go │ │ └── validation.go │ ├── metrics │ │ ├── OWNERS │ │ └── metrics.go │ ├── pager │ │ └── pager.go │ └── reference │ │ └── ref.go ├── transport │ ├── OWNERS │ ├── cache.go │ ├── config.go │ ├── round_trippers.go │ └── transport.go └── util │ ├── buffer │ └── ring_growing.go │ ├── cert │ ├── cert.go │ ├── csr.go │ ├── io.go │ └── pem.go │ ├── connrotation │ └── connrotation.go │ ├── flowcontrol │ ├── backoff.go │ └── throttle.go │ ├── homedir │ └── homedir.go │ ├── integer │ └── integer.go │ └── retry │ ├── OWNERS │ └── util.go ├── kube-openapi ├── LICENSE └── pkg │ └── util │ └── proto │ ├── doc.go │ ├── document.go │ └── openapi.go └── kubernetes ├── .bazelrc ├── .kazelcfg.json ├── BUILD.bazel ├── Godeps └── LICENSES ├── LICENSE ├── Makefile ├── Makefile.generated_files ├── WORKSPACE ├── cluster ├── gce │ ├── cos │ ├── custom │ └── ubuntu └── juju │ └── layers │ ├── kubeapi-load-balancer │ └── copyright │ ├── kubernetes-master │ ├── actions │ │ ├── namespace-delete │ │ └── namespace-list │ └── copyright │ └── kubernetes-worker │ └── copyright ├── logo └── LICENSE ├── pkg ├── features │ ├── BUILD │ ├── OWNERS │ └── kube_features.go ├── kubelet │ └── apis │ │ ├── BUILD │ │ ├── deviceplugin │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── api.pb.go │ │ │ ├── api.proto │ │ │ └── constants.go │ │ ├── well_known_annotations.go │ │ ├── well_known_annotations_windows.go │ │ └── well_known_labels.go └── util │ └── node │ ├── BUILD │ └── node.go ├── staging └── src │ └── k8s.io │ ├── api │ └── LICENSE │ ├── apiextensions-apiserver │ └── LICENSE │ ├── apimachinery │ └── LICENSE │ ├── apiserver │ └── LICENSE │ ├── cli-runtime │ └── LICENSE │ ├── client-go │ └── LICENSE │ ├── code-generator │ └── LICENSE │ ├── csi-api │ └── LICENSE │ ├── kube-aggregator │ └── LICENSE │ ├── kube-controller-manager │ └── LICENSE │ ├── kube-proxy │ └── LICENSE │ ├── kube-scheduler │ └── LICENSE │ ├── kubelet │ └── LICENSE │ ├── metrics │ └── LICENSE │ ├── sample-apiserver │ └── LICENSE │ ├── sample-cli-plugin │ └── LICENSE │ └── sample-controller │ └── LICENSE └── third_party ├── forked ├── golang │ ├── LICENSE │ └── PATENTS ├── gonum │ └── graph │ │ └── LICENSE └── shell2junit │ └── LICENSE ├── intemp └── LICENSE └── swagger-ui └── LICENSE /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/README.md -------------------------------------------------------------------------------- /cmd/inspect/display.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/cmd/inspect/display.go -------------------------------------------------------------------------------- /cmd/inspect/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/cmd/inspect/main.go -------------------------------------------------------------------------------- /cmd/inspect/nodeinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/cmd/inspect/nodeinfo.go -------------------------------------------------------------------------------- /cmd/inspect/podinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/cmd/inspect/podinfo.go -------------------------------------------------------------------------------- /cmd/nvidia/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/cmd/nvidia/main.go -------------------------------------------------------------------------------- /cmd/podgetter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/cmd/podgetter/main.go -------------------------------------------------------------------------------- /demo/binpack-1/binpack-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/demo/binpack-1/binpack-1.yaml -------------------------------------------------------------------------------- /demo/binpack-1/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/demo/binpack-1/job.yaml -------------------------------------------------------------------------------- /device-plugin-ds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/device-plugin-ds.yaml -------------------------------------------------------------------------------- /device-plugin-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/device-plugin-rbac.yaml -------------------------------------------------------------------------------- /pkg/gpu/nvidia/allocate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/pkg/gpu/nvidia/allocate.go -------------------------------------------------------------------------------- /pkg/gpu/nvidia/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/pkg/gpu/nvidia/const.go -------------------------------------------------------------------------------- /pkg/gpu/nvidia/coredump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/pkg/gpu/nvidia/coredump.go -------------------------------------------------------------------------------- /pkg/gpu/nvidia/gpumanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/pkg/gpu/nvidia/gpumanager.go -------------------------------------------------------------------------------- /pkg/gpu/nvidia/nvidia.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/pkg/gpu/nvidia/nvidia.go -------------------------------------------------------------------------------- /pkg/gpu/nvidia/podmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/pkg/gpu/nvidia/podmanager.go -------------------------------------------------------------------------------- /pkg/gpu/nvidia/podutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/pkg/gpu/nvidia/podutils.go -------------------------------------------------------------------------------- /pkg/gpu/nvidia/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/pkg/gpu/nvidia/server.go -------------------------------------------------------------------------------- /pkg/gpu/nvidia/watchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/pkg/gpu/nvidia/watchers.go -------------------------------------------------------------------------------- /pkg/kubelet/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/pkg/kubelet/client/client.go -------------------------------------------------------------------------------- /pkg/kubelet/client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/pkg/kubelet/client/client_test.go -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/nvidia-docker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/NVIDIA/nvidia-docker/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/nvidia-docker/build/deb/nvidia-docker.service: -------------------------------------------------------------------------------- 1 | ../common/nvidia-docker.service -------------------------------------------------------------------------------- /vendor/github.com/NVIDIA/nvidia-docker/build/rpm/SOURCES/nvidia-docker.service: -------------------------------------------------------------------------------- 1 | ../../common/nvidia-docker.service -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/README.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/fen.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/fsnotify.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/inotify.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/kqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/kqueue.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/fsnotify/fsnotify/windows.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/ghodss/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/gogoproto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/gogoproto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/gogoproto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/gogoproto/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/discard.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/duration.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/lib_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/skip_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/skip_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/text_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gogo/protobuf/proto/timestamp.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/proto/discard.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /vendor/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/btree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/google/btree/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/btree/btree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/google/btree/btree.go -------------------------------------------------------------------------------- /vendor/github.com/google/btree/btree_mem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/google/btree/btree_mem.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/google/gofuzz/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/google/gofuzz/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/googleapis/gnostic/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gregjones/httpcache/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gregjones/httpcache/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gregjones/httpcache/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gregjones/httpcache/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/gregjones/httpcache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gregjones/httpcache/README.md -------------------------------------------------------------------------------- /vendor/github.com/gregjones/httpcache/httpcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/gregjones/httpcache/httpcache.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/hashicorp/golang-lru/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/2q.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/hashicorp/golang-lru/2q.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/hashicorp/golang-lru/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/hashicorp/golang-lru/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/arc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/hashicorp/golang-lru/arc.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/hashicorp/golang-lru/doc.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hashicorp/golang-lru 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/golang-lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/hashicorp/golang-lru/lru.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/imdario/mergo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/imdario/mergo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/imdario/mergo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/imdario/mergo/README.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/imdario/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/adapter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_array.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_bool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_int32.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_int64.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_invalid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_invalid.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_nil.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_number.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_object.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_uint32.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/any_uint64.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/build.sh -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/config.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/iter_array.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/iter_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/iter_int.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/iter_object.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/iter_skip.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/iter_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/jsoniter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/jsoniter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/reflect.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/reflect_map.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/stream.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/stream_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/stream_int.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/stream_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/concurrent/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/concurrent/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/concurrent/README.md -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/concurrent/executor.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/concurrent/log.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/concurrent/test.sh -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/README.md -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/reflect2.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/safe_field.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/safe_map.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/safe_slice.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/safe_type.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/test.sh -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/type_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/type_map.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/unsafe_map.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/modern-go/reflect2/unsafe_ptr.go -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/petar/GoLLRB/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/petar/GoLLRB/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/llrb/avgvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/petar/GoLLRB/llrb/avgvar.go -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/llrb/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/petar/GoLLRB/llrb/iterator.go -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/llrb/llrb-stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/petar/GoLLRB/llrb/llrb-stats.go -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/llrb/llrb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/petar/GoLLRB/llrb/llrb.go -------------------------------------------------------------------------------- /vendor/github.com/petar/GoLLRB/llrb/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/petar/GoLLRB/llrb/util.go -------------------------------------------------------------------------------- /vendor/github.com/peterbourgon/diskv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/peterbourgon/diskv/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/peterbourgon/diskv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/peterbourgon/diskv/README.md -------------------------------------------------------------------------------- /vendor/github.com/peterbourgon/diskv/diskv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/peterbourgon/diskv/diskv.go -------------------------------------------------------------------------------- /vendor/github.com/peterbourgon/diskv/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/peterbourgon/diskv/index.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/string_to_int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_to_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/string_to_string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/client_conn_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/client_conn_pool.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17_not18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/go17_not18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched_random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/http2/writesched_random.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lex/httplex/httplex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/lex/httplex/httplex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/trace/trace_go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/net/trace/trace_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace386_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zptrace386_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracearm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zptracearm_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracemips_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zptracemips_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/asm_windows_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/memory_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/syscall_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/sys/windows/types_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/build/builder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/colelem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/build/colelem.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/build/contract.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/build/order.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/build/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/build/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/collate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/maketables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/maketables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/option.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/collate/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/colltab/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/internal/colltab/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/colltab/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/internal/colltab/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/colltab/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/internal/colltab/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/gen/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/internal/gen/code.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/internal/gen/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/triegen/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/internal/triegen/print.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/ucd/ucd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/internal/ucd/ucd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/Makefile -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/coverage.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/gen_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/gen_common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/gen_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/gen_index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/language.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/lookup.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bracket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/bidi/bracket.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/bidi/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/bidi/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/cldr/base.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/cldr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/cldr/cldr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/cldr/collate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/cldr/decode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/makexml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/cldr/makexml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/cldr/resolve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/cldr/slice.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/cldr/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/forminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/norm/forminfo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/norm/normalize.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/norm/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/codes/codes.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/dialoptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/dialoptions.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/go16.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/grpclog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/grpclog/logger.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/install_gae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/install_gae.sh -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/interceptor.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/naming/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/naming/go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/naming/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/naming/go18.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/naming/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/naming/naming.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/picker_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/picker_wrapper.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/service_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/service_config.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stats/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/stats/handlers.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/stats/stats.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/status/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/status/go16.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/status/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/status/go17.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/status/status.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1beta1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1beta1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1beta2/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1beta2/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1beta2/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/authentication/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/authentication/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/authentication/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/authentication/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/authorization/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/authorization/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/authorization/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/authorization/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/autoscaling/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/autoscaling/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/autoscaling/v2beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/autoscaling/v2beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v1beta1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v1beta1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v2alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v2alpha1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/batch/v2alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/certificates/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/certificates/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/certificates/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/certificates/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/core/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/core/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/objectreference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/core/v1/objectreference.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/events/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/events/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/extensions/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/extensions/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/extensions/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/extensions/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/networking/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/networking/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/networking/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/policy/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/policy/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1alpha1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1alpha1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1alpha1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1beta1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1beta1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/scheduling/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/scheduling/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/scheduling/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/scheduling/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/settings/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/settings/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/settings/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/settings/v1alpha1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/settings/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/settings/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/storage/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/storage/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/storage/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/storage/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/storage/v1alpha1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/storage/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/storage/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/storage/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/api/storage/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apiextensions-apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apiextensions-apiserver/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/help.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/lazy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/lazy.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/meta.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/fields/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/fields/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/fields/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/fields/fields.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/labels/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/labels/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/labels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/labels/labels.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/codec.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/error.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/types/patch.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/uid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/types/uid.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/net/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/util/net/http.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/net/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/util/net/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/int.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/wait/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/util/wait/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/version/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/version/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/version/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/version/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/watch/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/watch/filter.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/watch/mux.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/until.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/watch/until.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apimachinery/pkg/watch/watch.go -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apiserver/pkg/features/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/apiserver/pkg/features/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/discovery/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/discovery/helper.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/informers/factory.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/informers/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/informers/generic.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/kubernetes/clientset.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/kubernetes/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/kubernetes/import.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/listers/batch/v1/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/listers/batch/v1/job.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/listers/core/v1/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/listers/core/v1/node.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/listers/core/v1/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/listers/core/v1/pod.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/listers/rbac/v1/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/listers/rbac/v1/role.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/pkg/version/base.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/def.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/pkg/version/def.bzl -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/pkg/version/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/pkg/version/version.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/rest/transport.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/url_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/rest/url_utils.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/urlbackoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/rest/urlbackoff.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/watch/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/rest/watch/decoder.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/watch/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/rest/watch/encoder.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/cache/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/cache/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/cache/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/cache/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/cache/fifo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/cache/fifo.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/cache/heap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/cache/heap.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/cache/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/cache/index.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/cache/listers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/cache/listers.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/cache/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/cache/store.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/clientcmd/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/clientcmd/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/clientcmd/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/clientcmd/flag.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/metrics/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/metrics/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/pager/pager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/pager/pager.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/reference/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/tools/reference/ref.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/transport/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/transport/cache.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/transport/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/transport/transport.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/util/cert/cert.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/util/cert/csr.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/util/cert/pem.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/homedir/homedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/util/homedir/homedir.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/integer/integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/util/integer/integer.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/retry/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/client-go/util/retry/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/.bazelrc: -------------------------------------------------------------------------------- 1 | build/root/.bazelrc -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/.kazelcfg.json: -------------------------------------------------------------------------------- 1 | build/root/.kazelcfg.json -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/BUILD.bazel: -------------------------------------------------------------------------------- 1 | build/root/BUILD.root -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Godeps/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/kubernetes/Godeps/LICENSES -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/kubernetes/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Makefile: -------------------------------------------------------------------------------- 1 | build/root/Makefile -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/Makefile.generated_files: -------------------------------------------------------------------------------- 1 | build/root/Makefile.generated_files -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/WORKSPACE: -------------------------------------------------------------------------------- 1 | build/root/WORKSPACE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/gce/cos: -------------------------------------------------------------------------------- 1 | gci -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/gce/custom: -------------------------------------------------------------------------------- 1 | gci -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/gce/ubuntu: -------------------------------------------------------------------------------- 1 | gci -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/layers/kubernetes-master/actions/namespace-delete: -------------------------------------------------------------------------------- 1 | namespace-create -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/cluster/juju/layers/kubernetes-master/actions/namespace-list: -------------------------------------------------------------------------------- 1 | namespace-create -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/logo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/kubernetes/logo/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/features/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/kubernetes/pkg/features/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/features/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/kubernetes/pkg/features/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/kubelet/apis/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/kubernetes/pkg/kubelet/apis/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/node/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/kubernetes/pkg/util/node/BUILD -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/pkg/util/node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seculayer/gpushare-device-plugin/HEAD/vendor/k8s.io/kubernetes/pkg/util/node/node.go --------------------------------------------------------------------------------