├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── release.yaml │ ├── update-osinfo-db.yaml │ └── validate-no-offensive-lang.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── OWNERS ├── README.md ├── automation ├── check-validations.py ├── connect_to_rhel_console.exp ├── test-linux.sh ├── test-windows.sh ├── test.sh ├── test_containerdisk_annotations.sh ├── test_defaults.sh ├── test_duplicate_templates.sh ├── unit-tests.sh ├── validate-min-memory-consistency.py ├── validate-no-offensive-lang.sh └── validate-pvc-name-stability.py ├── generate-templates.yaml ├── go.mod ├── go.sum ├── lookup_plugins ├── .gitignore └── osinfo.py ├── makefile ├── osinfo-db-override └── os │ ├── microsoft.com │ └── win-2k25.xml │ └── redhat.com │ ├── rhel-6.10.xml │ ├── rhel-7.9.xml │ ├── rhel-8.1.xml │ ├── rhel-8.6.xml │ └── rhel-9.0.xml ├── revision.sh ├── templates ├── .gitignore ├── LABELS.md ├── README.md ├── VALIDATION.md ├── centos-stream9.tpl.yaml ├── centos6.tpl.yaml ├── fedora.tpl.yaml ├── opensuse.tpl.yaml ├── rhel7.tpl.yaml ├── rhel8.tpl.yaml ├── rhel9.tpl.yaml ├── ubuntu.tpl.yaml ├── windows10.tpl.yaml ├── windows11.tpl.yaml ├── windows2k16.tpl.yaml ├── windows2k19.tpl.yaml ├── windows2k22.tpl.yaml └── windows2k25.tpl.yaml ├── test_plugins └── eol.py ├── tests └── tests_suite_test.go ├── vendor ├── github.com │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fen.go │ │ │ ├── fsnotify.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ ├── nxadm │ │ └── tail │ │ │ ├── .gitignore │ │ │ ├── CHANGES.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── ratelimiter │ │ │ ├── Licence │ │ │ ├── leakybucket.go │ │ │ ├── memory.go │ │ │ └── storage.go │ │ │ ├── tail.go │ │ │ ├── tail_posix.go │ │ │ ├── tail_windows.go │ │ │ ├── util │ │ │ └── util.go │ │ │ ├── watch │ │ │ ├── filechanges.go │ │ │ ├── inotify.go │ │ │ ├── inotify_tracker.go │ │ │ ├── polling.go │ │ │ └── watch.go │ │ │ └── winfile │ │ │ └── winfile.go │ └── onsi │ │ ├── ginkgo │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── config │ │ │ └── config.go │ │ ├── formatter │ │ │ └── formatter.go │ │ ├── ginkgo_dsl.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── internal │ │ │ ├── codelocation │ │ │ │ └── code_location.go │ │ │ ├── containernode │ │ │ │ └── container_node.go │ │ │ ├── failer │ │ │ │ └── failer.go │ │ │ ├── global │ │ │ │ └── init.go │ │ │ ├── leafnodes │ │ │ │ ├── benchmarker.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── it_node.go │ │ │ │ ├── measure_node.go │ │ │ │ ├── runner.go │ │ │ │ ├── setup_nodes.go │ │ │ │ ├── suite_nodes.go │ │ │ │ ├── synchronized_after_suite_node.go │ │ │ │ └── synchronized_before_suite_node.go │ │ │ ├── remote │ │ │ │ ├── aggregator.go │ │ │ │ ├── forwarding_reporter.go │ │ │ │ ├── output_interceptor.go │ │ │ │ ├── output_interceptor_unix.go │ │ │ │ ├── output_interceptor_win.go │ │ │ │ └── server.go │ │ │ ├── spec │ │ │ │ ├── spec.go │ │ │ │ └── specs.go │ │ │ ├── spec_iterator │ │ │ │ ├── index_computer.go │ │ │ │ ├── parallel_spec_iterator.go │ │ │ │ ├── serial_spec_iterator.go │ │ │ │ ├── sharded_parallel_spec_iterator.go │ │ │ │ └── spec_iterator.go │ │ │ ├── specrunner │ │ │ │ ├── random_id.go │ │ │ │ └── spec_runner.go │ │ │ ├── suite │ │ │ │ └── suite.go │ │ │ ├── testingtproxy │ │ │ │ └── testing_t_proxy.go │ │ │ └── writer │ │ │ │ ├── fake_writer.go │ │ │ │ └── writer.go │ │ ├── reporters │ │ │ ├── default_reporter.go │ │ │ ├── fake_reporter.go │ │ │ ├── junit_reporter.go │ │ │ ├── reporter.go │ │ │ ├── stenographer │ │ │ │ ├── console_logging.go │ │ │ │ ├── fake_stenographer.go │ │ │ │ ├── stenographer.go │ │ │ │ └── support │ │ │ │ │ ├── go-colorable │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── colorable_others.go │ │ │ │ │ ├── colorable_windows.go │ │ │ │ │ └── noncolorable.go │ │ │ │ │ └── go-isatty │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── isatty_appengine.go │ │ │ │ │ ├── isatty_bsd.go │ │ │ │ │ ├── isatty_linux.go │ │ │ │ │ ├── isatty_solaris.go │ │ │ │ │ └── isatty_windows.go │ │ │ └── teamcity_reporter.go │ │ └── types │ │ │ ├── code_location.go │ │ │ ├── deprecation_support.go │ │ │ ├── synchronization.go │ │ │ └── types.go │ │ └── gomega │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── RELEASING.md │ │ ├── docker-compose.yaml │ │ ├── format │ │ └── format.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── gomega_dsl.go │ │ ├── internal │ │ ├── assertion.go │ │ ├── async_assertion.go │ │ ├── duration_bundle.go │ │ └── gomega.go │ │ ├── matchers.go │ │ ├── matchers │ │ ├── and.go │ │ ├── assignable_to_type_of_matcher.go │ │ ├── attributes_slice.go │ │ ├── be_a_directory.go │ │ ├── be_a_regular_file.go │ │ ├── be_an_existing_file.go │ │ ├── be_closed_matcher.go │ │ ├── be_element_of_matcher.go │ │ ├── be_empty_matcher.go │ │ ├── be_equivalent_to_matcher.go │ │ ├── be_false_matcher.go │ │ ├── be_identical_to.go │ │ ├── be_nil_matcher.go │ │ ├── be_numerically_matcher.go │ │ ├── be_sent_matcher.go │ │ ├── be_temporally_matcher.go │ │ ├── be_true_matcher.go │ │ ├── be_zero_matcher.go │ │ ├── consist_of.go │ │ ├── contain_element_matcher.go │ │ ├── contain_elements_matcher.go │ │ ├── contain_substring_matcher.go │ │ ├── equal_matcher.go │ │ ├── have_cap_matcher.go │ │ ├── have_http_status_matcher.go │ │ ├── have_key_matcher.go │ │ ├── have_key_with_value_matcher.go │ │ ├── have_len_matcher.go │ │ ├── have_occurred_matcher.go │ │ ├── have_prefix_matcher.go │ │ ├── have_suffix_matcher.go │ │ ├── match_error_matcher.go │ │ ├── match_json_matcher.go │ │ ├── match_regexp_matcher.go │ │ ├── match_xml_matcher.go │ │ ├── match_yaml_matcher.go │ │ ├── not.go │ │ ├── or.go │ │ ├── panic_matcher.go │ │ ├── receive_matcher.go │ │ ├── satisfy_matcher.go │ │ ├── semi_structured_data_support.go │ │ ├── succeed_matcher.go │ │ ├── support │ │ │ └── goraph │ │ │ │ ├── bipartitegraph │ │ │ │ ├── bipartitegraph.go │ │ │ │ └── bipartitegraphmatching.go │ │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ │ ├── node │ │ │ │ └── node.go │ │ │ │ └── util │ │ │ │ └── util.go │ │ ├── type_support.go │ │ └── with_transform.go │ │ └── types │ │ └── types.go ├── golang.org │ └── x │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── html │ │ │ ├── atom │ │ │ ├── atom.go │ │ │ └── table.go │ │ │ ├── charset │ │ │ └── charset.go │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── escape.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ ├── render.go │ │ │ └── token.go │ │ ├── sys │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ │ └── unsafeheader │ │ │ │ └── unsafeheader.go │ │ └── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_bsd_386.s │ │ │ ├── asm_bsd_amd64.s │ │ │ ├── asm_bsd_arm.s │ │ │ ├── asm_bsd_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_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_openbsd_mips64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── asm_zos_s390x.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 │ │ │ ├── dev_zos.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── epoll_zos.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── errors_freebsd_arm64.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── fstatfs_zos.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ioctl.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.1_12.go │ │ │ ├── syscall_darwin.1_13.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_illumos.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_gc_arm.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc.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_openbsd_arm64.go │ │ │ ├── syscall_openbsd_mips64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.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.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_ppc.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_openbsd_arm64.go │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zerrors_zos_s390x.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_386.1_13.go │ │ │ ├── zsyscall_darwin_386.1_13.s │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_386.s │ │ │ ├── zsyscall_darwin_amd64.1_13.go │ │ │ ├── zsyscall_darwin_amd64.1_13.s │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm.1_13.go │ │ │ ├── zsyscall_darwin_arm.1_13.s │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm.s │ │ │ ├── zsyscall_darwin_arm64.1_13.go │ │ │ ├── zsyscall_darwin_arm64.1_13.s │ │ │ ├── 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_illumos_amd64.go │ │ │ ├── zsyscall_linux.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_ppc.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_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsyscall_zos_s390x.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysctl_openbsd_mips64.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_ppc.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 │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ ├── zsysnum_zos_s390x.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_illumos_amd64.go │ │ │ ├── ztypes_linux.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_ppc.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_openbsd_arm64.go │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ ├── ztypes_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ └── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── htmlindex │ │ │ ├── htmlindex.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── identifier │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── euckr.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ └── tables.go │ │ ├── traditionalchinese │ │ │ ├── big5.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ └── unicode.go │ │ ├── internal │ │ ├── language │ │ │ ├── common.go │ │ │ ├── compact.go │ │ │ ├── compact │ │ │ │ ├── compact.go │ │ │ │ ├── language.go │ │ │ │ ├── parents.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── compose.go │ │ │ ├── coverage.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── tag │ │ │ └── tag.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ │ ├── language │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── language.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ │ ├── runes │ │ ├── cond.go │ │ └── runes.go │ │ └── transform │ │ └── transform.go ├── gopkg.in │ ├── tomb.v1 │ │ ├── LICENSE │ │ ├── README.md │ │ └── tomb.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 ├── kubevirt.io │ └── qe-tools │ │ ├── LICENSE │ │ └── pkg │ │ ├── ginkgo-reporters │ │ ├── README.md │ │ ├── junit_reporter.go │ │ └── polarion_reporter.go │ │ └── polarion-xml │ │ └── polarion_xml.go └── modules.txt └── version.sh /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/update-osinfo-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/.github/workflows/update-osinfo-db.yaml -------------------------------------------------------------------------------- /.github/workflows/validate-no-offensive-lang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/.github/workflows/validate-no-offensive-lang.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/README.md -------------------------------------------------------------------------------- /automation/check-validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/check-validations.py -------------------------------------------------------------------------------- /automation/connect_to_rhel_console.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/connect_to_rhel_console.exp -------------------------------------------------------------------------------- /automation/test-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/test-linux.sh -------------------------------------------------------------------------------- /automation/test-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/test-windows.sh -------------------------------------------------------------------------------- /automation/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/test.sh -------------------------------------------------------------------------------- /automation/test_containerdisk_annotations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/test_containerdisk_annotations.sh -------------------------------------------------------------------------------- /automation/test_defaults.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/test_defaults.sh -------------------------------------------------------------------------------- /automation/test_duplicate_templates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/test_duplicate_templates.sh -------------------------------------------------------------------------------- /automation/unit-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/unit-tests.sh -------------------------------------------------------------------------------- /automation/validate-min-memory-consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/validate-min-memory-consistency.py -------------------------------------------------------------------------------- /automation/validate-no-offensive-lang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/validate-no-offensive-lang.sh -------------------------------------------------------------------------------- /automation/validate-pvc-name-stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/automation/validate-pvc-name-stability.py -------------------------------------------------------------------------------- /generate-templates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/generate-templates.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/go.sum -------------------------------------------------------------------------------- /lookup_plugins/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | -------------------------------------------------------------------------------- /lookup_plugins/osinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/lookup_plugins/osinfo.py -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/makefile -------------------------------------------------------------------------------- /osinfo-db-override/os/microsoft.com/win-2k25.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/osinfo-db-override/os/microsoft.com/win-2k25.xml -------------------------------------------------------------------------------- /osinfo-db-override/os/redhat.com/rhel-6.10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/osinfo-db-override/os/redhat.com/rhel-6.10.xml -------------------------------------------------------------------------------- /osinfo-db-override/os/redhat.com/rhel-7.9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/osinfo-db-override/os/redhat.com/rhel-7.9.xml -------------------------------------------------------------------------------- /osinfo-db-override/os/redhat.com/rhel-8.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/osinfo-db-override/os/redhat.com/rhel-8.1.xml -------------------------------------------------------------------------------- /osinfo-db-override/os/redhat.com/rhel-8.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/osinfo-db-override/os/redhat.com/rhel-8.6.xml -------------------------------------------------------------------------------- /osinfo-db-override/os/redhat.com/rhel-9.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/osinfo-db-override/os/redhat.com/rhel-9.0.xml -------------------------------------------------------------------------------- /revision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/revision.sh -------------------------------------------------------------------------------- /templates/.gitignore: -------------------------------------------------------------------------------- 1 | *.retry 2 | *.pyc 3 | *.dist.yaml 4 | -------------------------------------------------------------------------------- /templates/LABELS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/LABELS.md -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/VALIDATION.md -------------------------------------------------------------------------------- /templates/centos-stream9.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/centos-stream9.tpl.yaml -------------------------------------------------------------------------------- /templates/centos6.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/centos6.tpl.yaml -------------------------------------------------------------------------------- /templates/fedora.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/fedora.tpl.yaml -------------------------------------------------------------------------------- /templates/opensuse.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/opensuse.tpl.yaml -------------------------------------------------------------------------------- /templates/rhel7.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/rhel7.tpl.yaml -------------------------------------------------------------------------------- /templates/rhel8.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/rhel8.tpl.yaml -------------------------------------------------------------------------------- /templates/rhel9.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/rhel9.tpl.yaml -------------------------------------------------------------------------------- /templates/ubuntu.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/ubuntu.tpl.yaml -------------------------------------------------------------------------------- /templates/windows10.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/windows10.tpl.yaml -------------------------------------------------------------------------------- /templates/windows11.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/windows11.tpl.yaml -------------------------------------------------------------------------------- /templates/windows2k16.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/windows2k16.tpl.yaml -------------------------------------------------------------------------------- /templates/windows2k19.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/windows2k19.tpl.yaml -------------------------------------------------------------------------------- /templates/windows2k22.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/windows2k22.tpl.yaml -------------------------------------------------------------------------------- /templates/windows2k25.tpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/templates/windows2k25.tpl.yaml -------------------------------------------------------------------------------- /test_plugins/eol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/test_plugins/eol.py -------------------------------------------------------------------------------- /tests/tests_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/tests/tests_suite_test.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/README.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/fen.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/fsnotify.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/go.mod -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/go.sum -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/inotify.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/inotify_poller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/inotify_poller.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/kqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/kqueue.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/open_mode_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/open_mode_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/fsnotify/fsnotify/windows.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .test/ 3 | examples/_* -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/CHANGES.md -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/README.md -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/go.mod -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/go.sum -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/ratelimiter/Licence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/ratelimiter/Licence -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/ratelimiter/leakybucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/ratelimiter/leakybucket.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/ratelimiter/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/ratelimiter/memory.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/ratelimiter/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/ratelimiter/storage.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/tail.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/tail_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/tail_posix.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/tail_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/tail_windows.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/util/util.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/watch/filechanges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/watch/filechanges.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/watch/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/watch/inotify.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/watch/inotify_tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/watch/inotify_tracker.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/watch/polling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/watch/polling.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/watch/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/watch/watch.go -------------------------------------------------------------------------------- /vendor/github.com/nxadm/tail/winfile/winfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/nxadm/tail/winfile/winfile.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/README.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/RELEASING.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/config/config.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/formatter/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/formatter/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/ginkgo_dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/ginkgo_dsl.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/go.mod -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/go.sum -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/codelocation/code_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/codelocation/code_location.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/containernode/container_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/containernode/container_node.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/failer/failer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/failer/failer.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/global/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/global/init.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/leafnodes/benchmarker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/leafnodes/benchmarker.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/leafnodes/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/leafnodes/interfaces.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/leafnodes/it_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/leafnodes/it_node.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/leafnodes/measure_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/leafnodes/measure_node.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/leafnodes/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/leafnodes/runner.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/leafnodes/setup_nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/leafnodes/setup_nodes.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/leafnodes/suite_nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/leafnodes/suite_nodes.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/leafnodes/synchronized_after_suite_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/leafnodes/synchronized_after_suite_node.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/leafnodes/synchronized_before_suite_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/leafnodes/synchronized_before_suite_node.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/remote/aggregator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/remote/aggregator.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/remote/forwarding_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/remote/forwarding_reporter.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/remote/output_interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/remote/output_interceptor.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/remote/output_interceptor_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/remote/output_interceptor_unix.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/remote/output_interceptor_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/remote/output_interceptor_win.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/remote/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/remote/server.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/spec/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/spec/spec.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/spec/specs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/spec/specs.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/spec_iterator/index_computer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/spec_iterator/index_computer.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/spec_iterator/parallel_spec_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/spec_iterator/parallel_spec_iterator.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/spec_iterator/serial_spec_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/spec_iterator/serial_spec_iterator.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/spec_iterator/sharded_parallel_spec_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/spec_iterator/sharded_parallel_spec_iterator.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/spec_iterator/spec_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/spec_iterator/spec_iterator.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/specrunner/random_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/specrunner/random_id.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/specrunner/spec_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/specrunner/spec_runner.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/suite/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/suite/suite.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/testingtproxy/testing_t_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/testingtproxy/testing_t_proxy.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/writer/fake_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/writer/fake_writer.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/internal/writer/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/internal/writer/writer.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/default_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/default_reporter.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/fake_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/fake_reporter.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/junit_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/junit_reporter.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/reporter.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/console_logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/console_logging.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/fake_stenographer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/fake_stenographer.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/stenographer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/stenographer.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/README.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/colorable_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/colorable_others.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/colorable_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/colorable_windows.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/noncolorable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable/noncolorable.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/README.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/isatty_appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/isatty_appengine.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/isatty_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/isatty_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/isatty_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/isatty_linux.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/isatty_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/isatty_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/isatty_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/isatty_windows.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/reporters/teamcity_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/reporters/teamcity_reporter.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/types/code_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/types/code_location.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/types/deprecation_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/types/deprecation_support.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/types/synchronization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/types/synchronization.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/ginkgo/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/ginkgo/types/types.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | . 4 | .idea 5 | gomega.iml 6 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM golang:1.15 2 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/Makefile -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/README.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/RELEASING.md -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/docker-compose.yaml -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/format/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/format/format.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/go.mod -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/go.sum -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/gomega_dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/gomega_dsl.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/internal/assertion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/internal/assertion.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/internal/async_assertion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/internal/async_assertion.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/internal/duration_bundle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/internal/duration_bundle.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/internal/gomega.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/internal/gomega.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/and.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/and.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/assignable_to_type_of_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/assignable_to_type_of_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/attributes_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/attributes_slice.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_a_directory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_a_directory.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_a_regular_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_a_regular_file.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_an_existing_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_an_existing_file.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_closed_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_closed_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_element_of_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_element_of_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_empty_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_empty_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_equivalent_to_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_equivalent_to_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_false_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_false_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_identical_to.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_identical_to.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_nil_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_nil_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_numerically_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_numerically_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_sent_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_sent_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_temporally_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_temporally_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_true_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_true_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/be_zero_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/be_zero_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/consist_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/consist_of.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/contain_element_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/contain_element_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/contain_elements_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/contain_elements_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/contain_substring_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/contain_substring_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/equal_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/equal_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/have_cap_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/have_cap_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/have_http_status_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/have_http_status_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/have_key_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/have_key_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/have_key_with_value_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/have_key_with_value_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/have_len_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/have_len_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/have_occurred_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/have_occurred_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/have_prefix_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/have_prefix_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/have_suffix_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/have_suffix_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/match_error_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/match_error_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/match_json_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/match_json_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/match_regexp_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/match_regexp_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/match_xml_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/match_xml_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/match_yaml_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/match_yaml_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/not.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/not.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/or.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/or.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/panic_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/panic_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/receive_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/receive_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/satisfy_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/satisfy_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/semi_structured_data_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/semi_structured_data_support.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/succeed_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/succeed_matcher.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraph.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraphmatching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraphmatching.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/edge/edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/support/goraph/edge/edge.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/support/goraph/util/util.go: -------------------------------------------------------------------------------- 1 | package util 2 | 3 | import "math" 4 | 5 | func Odd(n int) bool { 6 | return math.Mod(float64(n), 2.0) == 1.0 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/type_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/type_support.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/matchers/with_transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/matchers/with_transform.go -------------------------------------------------------------------------------- /vendor/github.com/onsi/gomega/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/github.com/onsi/gomega/types/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/charset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/charset/charset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go -------------------------------------------------------------------------------- /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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/asm_zos_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/epoll_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/epoll_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fstatfs_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/fstatfs_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ioctl_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pledge_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/pledge_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ptrace_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/readdirent_getdents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/readdirent_getdents.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/readdirent_getdirentries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.1_12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.1_12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.1_13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.1_13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_illumos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_illumos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/unveil_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/unveil_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace_x86_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.1_13.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.1_13.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/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/kubevirt/common-templates/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/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_illumos_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_illumos_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/charmap/charmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/charmap/charmap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/charmap/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/charmap/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/encoding.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/htmlindex/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/htmlindex/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/htmlindex/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/htmlindex/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/internal/identifier/identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/internal/identifier/identifier.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/internal/identifier/mib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/internal/identifier/mib.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/internal/internal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/japanese/all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/japanese/all.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/japanese/eucjp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/japanese/eucjp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/japanese/iso2022jp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/japanese/iso2022jp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/japanese/shiftjis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/japanese/shiftjis.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/japanese/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/japanese/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/korean/euckr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/korean/euckr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/korean/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/korean/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/simplifiedchinese/all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/simplifiedchinese/all.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/simplifiedchinese/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/simplifiedchinese/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/traditionalchinese/big5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/traditionalchinese/big5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/traditionalchinese/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/traditionalchinese/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/unicode/override.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/unicode/override.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/unicode/unicode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/encoding/unicode/unicode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/compact.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact/compact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/compact/compact.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/compact/language.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact/parents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/compact/parents.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/compact/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compact/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/compact/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/compose.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/coverage.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/language.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/lookup.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/utf8internal/utf8internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/internal/utf8internal/utf8internal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/language/coverage.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/language/language.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/tomb.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/tomb.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/tomb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/tomb.v1/tomb.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/kubevirt.io/qe-tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/kubevirt.io/qe-tools/LICENSE -------------------------------------------------------------------------------- /vendor/kubevirt.io/qe-tools/pkg/ginkgo-reporters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/kubevirt.io/qe-tools/pkg/ginkgo-reporters/README.md -------------------------------------------------------------------------------- /vendor/kubevirt.io/qe-tools/pkg/ginkgo-reporters/junit_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/kubevirt.io/qe-tools/pkg/ginkgo-reporters/junit_reporter.go -------------------------------------------------------------------------------- /vendor/kubevirt.io/qe-tools/pkg/ginkgo-reporters/polarion_reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/kubevirt.io/qe-tools/pkg/ginkgo-reporters/polarion_reporter.go -------------------------------------------------------------------------------- /vendor/kubevirt.io/qe-tools/pkg/polarion-xml/polarion_xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/kubevirt.io/qe-tools/pkg/polarion-xml/polarion_xml.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubevirt/common-templates/HEAD/version.sh --------------------------------------------------------------------------------