├── LICENSE ├── README.md ├── deck.pdf ├── go.mod ├── go.sum ├── gotchas.md ├── main.go ├── pkg ├── apis │ └── demo │ │ ├── register.go │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── register.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go ├── client │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── demo │ │ │ └── v1alpha1 │ │ │ ├── demo_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_demo_client.go │ │ │ └── fake_podset.go │ │ │ ├── generated_expansion.go │ │ │ └── podset.go │ ├── informers │ │ └── externalversions │ │ │ ├── demo │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── interface.go │ │ │ │ └── podset.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ └── demo │ │ └── v1alpha1 │ │ ├── expansion_generated.go │ │ └── podset.go ├── controller │ └── controller.go └── signals │ └── signal.go ├── presentation.pdf ├── resources ├── cr.yaml └── crd.yaml └── vendor ├── github.com ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── decode.go │ │ ├── decode_gogo.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 │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ └── timestamp_gogo.go │ │ └── sortkeys │ │ └── sortkeys.go ├── golang │ └── 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 │ └── 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 ├── imdario │ └── mergo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── map.go │ │ ├── merge.go │ │ └── mergo.go ├── 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 └── 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 │ ├── 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_aix.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ ├── net │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── context │ │ ├── context.go │ │ ├── ctxhttp │ │ │ └── ctxhttp.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ └── pre_go19.go │ ├── http │ │ └── httpguts │ │ │ ├── guts.go │ │ │ └── httplex.go │ ├── http2 │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README │ │ ├── ciphers.go │ │ ├── client_conn_pool.go │ │ ├── databuffer.go │ │ ├── errors.go │ │ ├── flow.go │ │ ├── frame.go │ │ ├── go111.go │ │ ├── gotrack.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── hpack.go │ │ │ ├── huffman.go │ │ │ └── tables.go │ │ ├── http2.go │ │ ├── not_go111.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 │ ├── oauth2 │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── internal │ │ ├── client_appengine.go │ │ ├── doc.go │ │ ├── oauth2.go │ │ ├── token.go │ │ └── transport.go │ ├── oauth2.go │ ├── token.go │ └── transport.go │ ├── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── 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_freebsd_arm64.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_netbsd_arm64.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_aix_ppc.go │ │ ├── dev_aix_ppc64.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_darwin.go │ │ ├── fcntl_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ioctl.go │ │ ├── mkall.sh │ │ ├── mkasm_darwin.go │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.go │ │ ├── mksyscall_aix_ppc.go │ │ ├── mksyscall_aix_ppc64.go │ │ ├── mksyscall_solaris.go │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum.go │ │ ├── openbsd_pledge.go │ │ ├── openbsd_unveil.go │ │ ├── pagesize_unix.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_libSystem.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_arm64.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_riscv64.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_netbsd_arm64.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 │ │ ├── syscall_unix_gc_ppc64x.go │ │ ├── timestruct.go │ │ ├── types_aix.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.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_freebsd_arm64.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_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_netbsd_arm64.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_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_386.1_11.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_386.s │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_amd64.s │ │ ├── zsyscall_darwin_arm.1_11.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm.s │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_darwin_arm64.s │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_freebsd_arm64.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_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_netbsd_arm64.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_freebsd_arm64.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_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_netbsd_arm64.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.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_freebsd_arm64.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_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_netbsd_arm64.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 │ │ ├── asm_windows_arm.s │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mkerrors.bash │ │ ├── mkerrors.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 │ │ ├── types_windows_arm.go │ │ ├── zerrors_windows.go │ │ └── zsyscall_windows.go │ ├── text │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── 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 │ │ └── 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 │ └── time │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── rate │ └── rate.go ├── google.golang.org └── appengine │ ├── LICENSE │ ├── internal │ ├── api.go │ ├── api_classic.go │ ├── api_common.go │ ├── app_id.go │ ├── base │ │ ├── api_base.pb.go │ │ └── api_base.proto │ ├── datastore │ │ ├── datastore_v3.pb.go │ │ └── datastore_v3.proto │ ├── identity.go │ ├── identity_classic.go │ ├── identity_flex.go │ ├── identity_vm.go │ ├── internal.go │ ├── log │ │ ├── log_service.pb.go │ │ └── log_service.proto │ ├── main.go │ ├── main_common.go │ ├── main_vm.go │ ├── metadata.go │ ├── net.go │ ├── regen.sh │ ├── remote_api │ │ ├── remote_api.pb.go │ │ └── remote_api.proto │ ├── transaction.go │ └── urlfetch │ │ ├── urlfetch_service.pb.go │ │ └── urlfetch_service.proto │ └── urlfetch │ └── urlfetch.go ├── 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 │ │ └── 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 │ ├── auditregistration │ │ └── v1alpha1 │ │ │ ├── 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 │ │ └── v2beta2 │ │ │ ├── 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 │ ├── coordination │ │ ├── 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 │ ├── 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 │ │ │ ├── well_known_labels.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 │ │ └── v1beta1 │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── node │ │ ├── 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 │ ├── 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 │ │ ├── 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 │ ├── 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 ├── 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 │ │ │ │ └── v1 │ │ │ │ ├── OWNERS │ │ │ │ ├── controller_ref.go │ │ │ │ ├── conversion.go │ │ │ │ ├── deepcopy.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 │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── clock │ │ │ │ └── clock.go │ │ │ ├── errors │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ ├── framer │ │ │ │ └── framer.go │ │ │ ├── intstr │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ └── intstr.go │ │ │ ├── json │ │ │ │ └── json.go │ │ │ ├── naming │ │ │ │ └── from_stack.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 │ │ │ │ ├── int32.go │ │ │ │ ├── int64.go │ │ │ │ └── string.go │ │ │ ├── validation │ │ │ │ ├── field │ │ │ │ │ ├── errors.go │ │ │ │ │ └── path.go │ │ │ │ └── validation.go │ │ │ └── yaml │ │ │ │ └── decoder.go │ │ ├── version │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ └── types.go │ │ └── watch │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── mux.go │ │ │ ├── streamwatcher.go │ │ │ ├── watch.go │ │ │ └── zz_generated.deepcopy.go │ └── third_party │ │ └── forked │ │ └── golang │ │ └── reflect │ │ └── deep_equal.go ├── client-go │ ├── LICENSE │ ├── discovery │ │ ├── discovery_client.go │ │ ├── doc.go │ │ └── helper.go │ ├── kubernetes │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── import.go │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── admissionregistration │ │ │ └── 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 │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── auditregistration │ │ │ └── v1alpha1 │ │ │ │ ├── auditregistration_client.go │ │ │ │ ├── auditsink.go │ │ │ │ ├── doc.go │ │ │ │ └── generated_expansion.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 │ │ │ └── v2beta2 │ │ │ │ ├── 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 │ │ │ ├── coordination │ │ │ ├── v1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.go │ │ │ └── v1beta1 │ │ │ │ ├── coordination_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── lease.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 │ │ │ │ ├── networkpolicy.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ └── replicaset.go │ │ │ ├── networking │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── networking_client.go │ │ │ │ └── networkpolicy.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ └── networking_client.go │ │ │ ├── node │ │ │ ├── v1alpha1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.go │ │ │ └── v1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── node_client.go │ │ │ │ └── runtimeclass.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 │ │ │ ├── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── 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 │ │ │ └── volumeattachment.go │ │ │ ├── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── volumeattachment.go │ │ │ └── v1beta1 │ │ │ ├── csidriver.go │ │ │ ├── csinode.go │ │ │ ├── doc.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ ├── storageclass.go │ │ │ └── volumeattachment.go │ ├── pkg │ │ ├── apis │ │ │ └── clientauthentication │ │ │ │ ├── OWNERS │ │ │ │ ├── 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 │ │ │ ├── OWNERS │ │ │ └── clientauth.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 │ │ └── reference │ │ │ └── ref.go │ ├── transport │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ ├── token_source.go │ │ └── transport.go │ └── util │ │ ├── cert │ │ ├── OWNERS │ │ ├── cert.go │ │ ├── csr.go │ │ ├── io.go │ │ └── pem.go │ │ ├── connrotation │ │ └── connrotation.go │ │ ├── flowcontrol │ │ ├── backoff.go │ │ └── throttle.go │ │ ├── homedir │ │ └── homedir.go │ │ └── keyutil │ │ ├── OWNERS │ │ └── key.go ├── klog │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── RELEASE.md │ ├── SECURITY_CONTACTS │ ├── code-of-conduct.md │ ├── klog.go │ └── klog_file.go └── utils │ ├── LICENSE │ └── integer │ └── integer.go ├── modules.txt └── sigs.k8s.io └── yaml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── code-of-conduct.md ├── fields.go ├── yaml.go └── yaml_go110.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/README.md -------------------------------------------------------------------------------- /deck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/deck.pdf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/go.sum -------------------------------------------------------------------------------- /gotchas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/gotchas.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/main.go -------------------------------------------------------------------------------- /pkg/apis/demo/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/apis/demo/register.go -------------------------------------------------------------------------------- /pkg/apis/demo/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/apis/demo/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/demo/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/apis/demo/v1alpha1/register.go -------------------------------------------------------------------------------- /pkg/apis/demo/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/apis/demo/v1alpha1/types.go -------------------------------------------------------------------------------- /pkg/apis/demo/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/apis/demo/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/client/clientset/versioned/clientset.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/client/clientset/versioned/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/client/clientset/versioned/fake/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/fake/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/client/clientset/versioned/fake/register.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/client/clientset/versioned/scheme/doc.go -------------------------------------------------------------------------------- /pkg/client/clientset/versioned/scheme/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/client/clientset/versioned/scheme/register.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/client/informers/externalversions/factory.go -------------------------------------------------------------------------------- /pkg/client/informers/externalversions/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/client/informers/externalversions/generic.go -------------------------------------------------------------------------------- /pkg/client/listers/demo/v1alpha1/podset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/client/listers/demo/v1alpha1/podset.go -------------------------------------------------------------------------------- /pkg/controller/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/controller/controller.go -------------------------------------------------------------------------------- /pkg/signals/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/pkg/signals/signal.go -------------------------------------------------------------------------------- /presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/presentation.pdf -------------------------------------------------------------------------------- /resources/cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/resources/cr.yaml -------------------------------------------------------------------------------- /resources/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/resources/crd.yaml -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/decode_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/decode_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/duration.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/encode_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/lib_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/message_set.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/properties.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/skip_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/skip_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/text_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/text_parser.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/proto/timestamp.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/sortkeys/sortkeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/gogo/protobuf/sortkeys/sortkeys.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/proto/discard.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/ptypes/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/golang/protobuf/ptypes/duration.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/google/gofuzz/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/google/gofuzz/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/googleapis/gnostic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/googleapis/gnostic/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/imdario/mergo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/imdario/mergo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/imdario/mergo/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/imdario/mergo/README.md -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/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/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/adapter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_array.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_bool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_int32.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_int64.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_invalid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_invalid.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_nil.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_number.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_object.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_uint32.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/any_uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/any_uint64.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/build.sh -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/config.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/iter_array.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/iter_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/iter_int.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/iter_object.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/iter_skip.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/iter_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/iter_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/jsoniter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/jsoniter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/reflect.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/reflect_array.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/reflect_map.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect_native.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/reflect_native.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/reflect_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/reflect_slice.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/stream.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/stream_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/stream_int.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/stream_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/json-iterator/go/stream_str.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/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/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/concurrent/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/concurrent/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/concurrent/README.md -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/concurrent/executor.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/concurrent/log.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/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/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/README.md -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_above_17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/go_above_17.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_above_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/go_above_19.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_below_17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/go_below_17.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/go_below_19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/go_below_19.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/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/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/safe_field.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/safe_map.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/safe_slice.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/safe_struct.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/safe_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/safe_type.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/test.sh -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/type_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/type_map.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/unsafe_array.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_eface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/unsafe_eface.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/unsafe_field.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/unsafe_iface.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/unsafe_link.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/unsafe_map.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/unsafe_ptr.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/unsafe_slice.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/unsafe_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/modern-go/reflect2/unsafe_type.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/crypto/ssh/terminal/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpguts/guts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http/httpguts/guts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpguts/httplex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http/httpguts/httplex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/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/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/client_conn_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/client_conn_pool.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched_priority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/writesched_priority.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/writesched_random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/http2/writesched_random.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/go.mod -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/go.sum -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/internal/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/internal/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/internal/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/internal/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/internal/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/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/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/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/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkasm_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/mkasm_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/mksyscall_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/mksyscall_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/mksyscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/mksysnum.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_unveil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/openbsd_unveil.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/types_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace386_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zptrace386_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracearm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zptracearm_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracemips_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zptracemips_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracemipsle_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zptracemipsle_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/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/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/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/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/asm_windows_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/asm_windows_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/memory_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkerrors.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/mkerrors.bash -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkerrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/mkerrors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/sys/windows/types_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bracket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/unicode/bidi/bracket.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/unicode/bidi/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/unicode/bidi/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/forminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/unicode/norm/forminfo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/triegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/text/unicode/norm/triegen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/google.golang.org/appengine/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/authentication/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/authentication/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/authentication/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/authentication/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authentication/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/authentication/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/authorization/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/authorization/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/authorization/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/authorization/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/authorization/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/authorization/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/autoscaling/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/autoscaling/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/autoscaling/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/autoscaling/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/autoscaling/v2beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/autoscaling/v2beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/autoscaling/v2beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/autoscaling/v2beta2/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2beta2/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/autoscaling/v2beta2/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/autoscaling/v2beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/autoscaling/v2beta2/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v2alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v2alpha1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v2alpha1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v2alpha1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/batch/v2alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/batch/v2alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/certificates/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/certificates/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/certificates/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/certificates/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/coordination/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/coordination/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/coordination/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/coordination/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/coordination/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/coordination/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/coordination/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/coordination/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/core/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/core/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/objectreference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/core/v1/objectreference.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/core/v1/well_known_labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/core/v1/well_known_labels.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/events/v1beta1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/events/v1beta1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/events/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/events/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/events/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/extensions/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/extensions/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/extensions/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/extensions/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/extensions/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/extensions/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/networking/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/networking/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/networking/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/networking/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/networking/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/networking/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/networking/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/node/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/node/v1alpha1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/node/v1alpha1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/node/v1alpha1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/node/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/node/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/node/v1beta1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/node/v1beta1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/node/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/node/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/node/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/policy/v1beta1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/policy/v1beta1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/policy/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/policy/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/policy/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/scheduling/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/scheduling/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/scheduling/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/scheduling/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/scheduling/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/scheduling/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/scheduling/v1alpha1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/scheduling/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/scheduling/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/scheduling/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/scheduling/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/scheduling/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/settings/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/settings/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/settings/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/settings/v1alpha1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/settings/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/settings/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1alpha1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1alpha1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1alpha1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1alpha1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1beta1/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/generated.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1beta1/generated.pb.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/generated.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1beta1/generated.proto -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1beta1/register.go -------------------------------------------------------------------------------- /vendor/k8s.io/api/storage/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/api/storage/v1beta1/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/errors/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/api/errors/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/errors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/api/errors/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/errors.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/help.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/lazy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/lazy.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/api/meta/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/api/meta/meta.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/conversion/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/conversion/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/fields/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/fields/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/fields/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/fields/fields.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/fields/selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/fields/selector.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/labels/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/labels/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/labels/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/labels/labels.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/labels/selector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/labels/selector.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/codec.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/error.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/helper.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/scheme.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/runtime/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/runtime/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/types/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/nodename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/types/nodename.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/types/patch.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/types/uid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/types/uid.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/errors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/util/errors/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/json/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/util/json/json.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/net/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/util/net/http.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/net/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/util/net/util.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/byte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/byte.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/empty.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/int.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/int32.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/util/sets/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/util/sets/int64.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/version/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/version/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/version/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/version/helpers.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/version/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/version/types.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/watch/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/watch/filter.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/watch/mux.go -------------------------------------------------------------------------------- /vendor/k8s.io/apimachinery/pkg/watch/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/apimachinery/pkg/watch/watch.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/discovery/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/discovery/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/discovery/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/discovery/helper.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/kubernetes/clientset.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/kubernetes/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/kubernetes/import.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/kubernetes/scheme/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/kubernetes/scheme/doc.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/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/pkg/version/base.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/def.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/pkg/version/def.bzl -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/pkg/version/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/pkg/version/version.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/rest/transport.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/url_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/rest/url_utils.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/urlbackoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/rest/urlbackoff.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/watch/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/rest/watch/decoder.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/rest/watch/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/rest/watch/encoder.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/auth/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/tools/auth/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/auth/clientauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/tools/auth/clientauth.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/clientcmd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/tools/clientcmd/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/clientcmd/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/tools/clientcmd/doc.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/clientcmd/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/tools/clientcmd/flag.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/clientcmd/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/tools/clientcmd/loader.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/metrics/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/tools/metrics/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/tools/metrics/metrics.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/tools/reference/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/tools/reference/ref.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/transport/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/transport/cache.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/transport/config.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/token_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/transport/token_source.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/transport/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/transport/transport.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/util/cert/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/util/cert/cert.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/util/cert/csr.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/cert/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/util/cert/pem.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/homedir/homedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/util/homedir/homedir.go -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/keyutil/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/util/keyutil/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/client-go/util/keyutil/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/client-go/util/keyutil/key.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/klog/.travis.yml -------------------------------------------------------------------------------- /vendor/k8s.io/klog/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/klog/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/klog/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/klog/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/klog/OWNERS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/klog/README.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/klog/RELEASE.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/klog/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/k8s.io/klog/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/klog/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/klog/klog.go -------------------------------------------------------------------------------- /vendor/k8s.io/klog/klog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/klog/klog_file.go -------------------------------------------------------------------------------- /vendor/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /vendor/k8s.io/utils/integer/integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/k8s.io/utils/integer/integer.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/OWNERS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/README.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/RELEASE.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/SECURITY_CONTACTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/SECURITY_CONTACTS -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/code-of-conduct.md -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/fields.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/sigs.k8s.io/yaml/yaml_go110.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishin/podset-operator/HEAD/vendor/sigs.k8s.io/yaml/yaml_go110.go --------------------------------------------------------------------------------