]> git.feebdaed.xyz Git - 0xmirror/kubernetes.git/commit
build: remove deprecated '// +build' tag
authorPatrick Ohly <patrick.ohly@intel.com>
Mon, 1 Dec 2025 14:54:18 +0000 (15:54 +0100)
committerPatrick Ohly <patrick.ohly@intel.com>
Thu, 18 Dec 2025 11:16:21 +0000 (12:16 +0100)
commitad79e479c2314d1de91e54bc5630c52027f12e21
tree8992edbcc89f46a9d652462d001683d4abff2a58
parent6bcb5beba31c6dc6a137a4d799037e51d4a95f4d
build: remove deprecated '// +build' tag

This has been replaced by `//build:...` for a long time now.

Removal of the old build tag was automated with:

    for i in $(git grep -l '^// +build' | grep -v -e '^vendor/'); do if ! grep -q '^// Code generated' "$i"; then sed -i -e '/^\/\/ +build/d' "$i"; fi; done
412 files changed:
build/tools.go
cluster/images/etcd/migrate/integration_test.go
cluster/images/etcd/migrate/util_others.go
cluster/images/etcd/migrate/utils_windows.go
cmd/kube-proxy/app/init_linux.go
cmd/kube-proxy/app/init_other.go
cmd/kube-proxy/app/init_windows.go
cmd/kube-proxy/app/server_linux.go
cmd/kube-proxy/app/server_linux_test.go
cmd/kube-proxy/app/server_other.go
cmd/kube-proxy/app/server_windows.go
cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults_unix.go
cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults_windows.go
cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults_unix.go
cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults_windows.go
cmd/kubeadm/app/apis/kubeadm/validation/util_unix.go
cmd/kubeadm/app/apis/kubeadm/validation/util_windows.go
cmd/kubeadm/app/cmd/certs_test.go
cmd/kubeadm/app/cmd/phases/reset/unmount.go
cmd/kubeadm/app/cmd/phases/reset/unmount_linux.go
cmd/kubeadm/app/cmd/phases/reset/unmount_linux_test.go
cmd/kubeadm/app/cmd/util_other_test.go
cmd/kubeadm/app/cmd/util_windows_test.go
cmd/kubeadm/app/componentconfigs/kubelet_unix.go
cmd/kubeadm/app/componentconfigs/kubelet_unix_test.go
cmd/kubeadm/app/componentconfigs/kubelet_windows.go
cmd/kubeadm/app/componentconfigs/kubelet_windows_test.go
cmd/kubeadm/app/constants/constants_unix.go
cmd/kubeadm/app/constants/constants_windows.go
cmd/kubeadm/app/phases/controlplane/manifests_test.go
cmd/kubeadm/app/phases/controlplane/volumes_test.go
cmd/kubeadm/app/phases/copycerts/testutil_umask.go
cmd/kubeadm/app/phases/copycerts/testutil_umask_noop.go
cmd/kubeadm/app/phases/etcd/local_test.go
cmd/kubeadm/app/preflight/checks_darwin.go
cmd/kubeadm/app/preflight/checks_linux.go
cmd/kubeadm/app/preflight/checks_other.go
cmd/kubeadm/app/preflight/checks_unix.go
cmd/kubeadm/app/preflight/checks_windows.go
cmd/kubeadm/app/util/chroot_unix.go
cmd/kubeadm/app/util/chroot_windows.go
cmd/kubeadm/app/util/copy_unix.go
cmd/kubeadm/app/util/copy_windows.go
cmd/kubeadm/app/util/initsystem/initsystem_unix.go
cmd/kubeadm/app/util/initsystem/initsystem_windows.go
cmd/kubeadm/app/util/runtime/runtime_unix.go
cmd/kubeadm/app/util/runtime/runtime_windows.go
cmd/kubeadm/app/util/staticpod/utils_linux.go
cmd/kubeadm/app/util/staticpod/utils_linux_test.go
cmd/kubeadm/app/util/staticpod/utils_others.go
cmd/kubeadm/app/util/users/users_linux.go
cmd/kubeadm/app/util/users/users_linux_test.go
cmd/kubeadm/app/util/users/users_other.go
cmd/kubelet/app/init_others.go
cmd/kubelet/app/init_windows.go
cmd/kubelet/app/options/globalflags_linux.go
cmd/kubelet/app/options/globalflags_other.go
cmd/kubelet/app/options/osflags_others.go
cmd/kubelet/app/options/osflags_windows.go
cmd/kubelet/app/server_others.go
cmd/kubelet/app/server_unsupported.go
cmd/kubelet/app/server_windows.go
pkg/kubelet/allocation/features_linux.go
pkg/kubelet/allocation/features_unsupported.go
pkg/kubelet/allocation/features_windows.go
pkg/kubelet/apis/config/validation/validation_linux.go
pkg/kubelet/apis/config/validation/validation_others.go
pkg/kubelet/apis/config/validation/validation_others_test.go
pkg/kubelet/apis/config/validation/validation_windows.go
pkg/kubelet/apis/config/validation/validation_windows_test.go
pkg/kubelet/cadvisor/cadvisor_linux.go
pkg/kubelet/cadvisor/cadvisor_linux_test.go
pkg/kubelet/cadvisor/cadvisor_unsupported.go
pkg/kubelet/cadvisor/cadvisor_windows.go
pkg/kubelet/cadvisor/helpers_linux.go
pkg/kubelet/cadvisor/helpers_unsupported.go
pkg/kubelet/cadvisor/util_test.go
pkg/kubelet/cm/cgroup_manager_linux_test.go
pkg/kubelet/cm/cgroup_manager_test.go
pkg/kubelet/cm/cgroup_manager_unsupported.go
pkg/kubelet/cm/container_manager_linux.go
pkg/kubelet/cm/container_manager_linux_test.go
pkg/kubelet/cm/container_manager_unsupported.go
pkg/kubelet/cm/container_manager_windows.go
pkg/kubelet/cm/cpumanager/cpu_manager_others.go
pkg/kubelet/cm/cpumanager/cpu_manager_windows.go
pkg/kubelet/cm/helpers_linux_test.go
pkg/kubelet/cm/helpers_unsupported.go
pkg/kubelet/cm/internal_container_lifecycle_linux.go
pkg/kubelet/cm/internal_container_lifecycle_unsupported.go
pkg/kubelet/cm/internal_container_lifecycle_windows.go
pkg/kubelet/cm/internal_container_lifecycle_windows_test.go
pkg/kubelet/cm/node_container_manager_linux.go
pkg/kubelet/cm/node_container_manager_linux_test.go
pkg/kubelet/cm/pod_container_manager_linux_test.go
pkg/kubelet/cm/qos_container_manager_linux_test.go
pkg/kubelet/cm/util/cgroups_unsupported.go
pkg/kubelet/config/file_linux.go
pkg/kubelet/config/file_linux_test.go
pkg/kubelet/config/file_unsupported.go
pkg/kubelet/eviction/defaults_linux.go
pkg/kubelet/eviction/defaults_others.go
pkg/kubelet/eviction/defaults_windows.go
pkg/kubelet/eviction/helpers_others.go
pkg/kubelet/eviction/helpers_windows.go
pkg/kubelet/eviction/memory_threshold_notifier_others.go
pkg/kubelet/eviction/memory_threshold_notifier_test.go
pkg/kubelet/eviction/memory_threshold_notifier_windows.go
pkg/kubelet/eviction/threshold_notifier_unsupported.go
pkg/kubelet/kubelet_network_linux.go
pkg/kubelet/kubelet_network_others.go
pkg/kubelet/kubelet_node_status_others.go
pkg/kubelet/kubelet_node_status_windows.go
pkg/kubelet/kubelet_pods_linux_test.go
pkg/kubelet/kubelet_volumes_linux_test.go
pkg/kubelet/kuberuntime/helpers_linux.go
pkg/kubelet/kuberuntime/helpers_unsupported.go
pkg/kubelet/kuberuntime/kuberuntime_container_linux.go
pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go
pkg/kubelet/kuberuntime/kuberuntime_container_unsupported.go
pkg/kubelet/kuberuntime/kuberuntime_container_windows.go
pkg/kubelet/kuberuntime/kuberuntime_container_windows_test.go
pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux.go
pkg/kubelet/kuberuntime/kuberuntime_sandbox_linux_test.go
pkg/kubelet/kuberuntime/kuberuntime_sandbox_unsupported.go
pkg/kubelet/kuberuntime/kuberuntime_sandbox_windows.go
pkg/kubelet/kuberuntime/security_context_others.go
pkg/kubelet/kuberuntime/security_context_others_test.go
pkg/kubelet/kuberuntime/security_context_windows.go
pkg/kubelet/kuberuntime/security_context_windows_test.go
pkg/kubelet/lifecycle/features_linux.go
pkg/kubelet/lifecycle/features_unsupported.go
pkg/kubelet/lifecycle/features_windows.go
pkg/kubelet/network/dns/dns_other.go
pkg/kubelet/network/dns/dns_other_test.go
pkg/kubelet/network/dns/dns_windows.go
pkg/kubelet/network/dns/dns_windows_test.go
pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go
pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go
pkg/kubelet/nodeshutdown/nodeshutdown_manager_others.go
pkg/kubelet/nodeshutdown/nodeshutdown_manager_windows.go
pkg/kubelet/nodeshutdown/nodeshutdown_manager_windows_test.go
pkg/kubelet/nodeshutdown/systemd/inhibit_linux.go
pkg/kubelet/nodeshutdown/systemd/inhibit_linux_test.go
pkg/kubelet/nodeshutdown/systemd/inhibit_others.go
pkg/kubelet/oom/oom_watcher_linux.go
pkg/kubelet/oom/oom_watcher_unsupported.go
pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_others.go
pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_others_test.go
pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_windows.go
pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher_windows_test.go
pkg/kubelet/server/stats/summary_sys_containers.go
pkg/kubelet/server/stats/summary_sys_containers_windows.go
pkg/kubelet/server/stats/summary_test.go
pkg/kubelet/server/stats/summary_windows_test.go
pkg/kubelet/stats/cri_stats_provider_linux.go
pkg/kubelet/stats/cri_stats_provider_others.go
pkg/kubelet/stats/cri_stats_provider_windows.go
pkg/kubelet/stats/pidlimit/pidlimit_linux.go
pkg/kubelet/stats/pidlimit/pidlimit_unsupported.go
pkg/kubelet/sysctl/allowlist_test.go
pkg/kubelet/userns/userns_manager.go
pkg/kubelet/userns/userns_manager_disabled_test.go
pkg/kubelet/userns/userns_manager_switch_test.go
pkg/kubelet/userns/userns_manager_test.go
pkg/kubelet/util/boottime_util_darwin.go
pkg/kubelet/util/boottime_util_darwin_test.go
pkg/kubelet/util/boottime_util_freebsd.go
pkg/kubelet/util/boottime_util_freebsd_test.go
pkg/kubelet/util/boottime_util_linux.go
pkg/kubelet/util/boottime_util_linux_test.go
pkg/kubelet/util/util_linux.go
pkg/kubelet/util/util_others.go
pkg/kubelet/util/util_unix.go
pkg/kubelet/util/util_unix_test.go
pkg/kubelet/util/util_unsupported.go
pkg/kubelet/util/util_windows.go
pkg/kubelet/util/util_windows_test.go
pkg/kubelet/watchdog/watchdog_linux.go
pkg/kubelet/watchdog/watchdog_linux_test.go
pkg/kubelet/watchdog/watchdog_unsupported.go
pkg/kubelet/winstats/cpu_topology.go
pkg/kubelet/winstats/cpu_topology_test.go
pkg/kubelet/winstats/network_stats.go
pkg/kubelet/winstats/network_stats_test.go
pkg/kubelet/winstats/perfcounter_nodestats_test.go
pkg/kubelet/winstats/perfcounter_nodestats_windows.go
pkg/kubelet/winstats/perfcounters.go
pkg/kubelet/winstats/perfcounters_test.go
pkg/kubelet/winstats/version.go
pkg/kubelet/winstats/winstats.go
pkg/kubelet/winstats/winstats_test.go
pkg/probe/dialer_others.go
pkg/probe/dialer_windows.go
pkg/proxy/conntrack/cleanup.go
pkg/proxy/conntrack/cleanup_test.go
pkg/proxy/conntrack/conntrack.go
pkg/proxy/conntrack/conntrack_test.go
pkg/proxy/conntrack/fake.go
pkg/proxy/conntrack/filter.go
pkg/proxy/conntrack/filter_test.go
pkg/proxy/iptables/number_generated_rules_test.go
pkg/proxy/iptables/proxier.go
pkg/proxy/iptables/proxier_test.go
pkg/proxy/ipvs/graceful_termination.go
pkg/proxy/ipvs/graceful_termination_test.go
pkg/proxy/ipvs/ipset.go
pkg/proxy/ipvs/ipset/ipset.go
pkg/proxy/ipvs/ipset/ipset_test.go
pkg/proxy/ipvs/ipset/testing/fake.go
pkg/proxy/ipvs/ipset/testing/fake_test.go
pkg/proxy/ipvs/ipset/types.go
pkg/proxy/ipvs/ipset_test.go
pkg/proxy/ipvs/netlink_linux.go
pkg/proxy/ipvs/proxier.go
pkg/proxy/ipvs/proxier_test.go
pkg/proxy/ipvs/testing/fake.go
pkg/proxy/ipvs/testing/fake_test.go
pkg/proxy/ipvs/testing/util.go
pkg/proxy/ipvs/util/ipvs.go
pkg/proxy/ipvs/util/ipvs_linux.go
pkg/proxy/ipvs/util/ipvs_linux_test.go
pkg/proxy/ipvs/util/ipvs_test.go
pkg/proxy/ipvs/util/testing/fake.go
pkg/proxy/ipvs/util/testing/fake_test.go
pkg/proxy/nftables/helpers_test.go
pkg/proxy/nftables/proxier.go
pkg/proxy/nftables/proxier_test.go
pkg/proxy/util/nfacct/handler.go
pkg/proxy/util/nfacct/nfacct_linux.go
pkg/proxy/util/nfacct/nfacct_linux_test.go
pkg/proxy/util/nfacct/nfacct_others.go
pkg/proxy/util/utils_linux.go
pkg/proxy/winkernel/hcnutils.go
pkg/proxy/winkernel/hns.go
pkg/proxy/winkernel/hns_test.go
pkg/proxy/winkernel/proxier.go
pkg/proxy/winkernel/proxier_test.go
pkg/proxy/winkernel/testing/hcnutils_mock.go
pkg/routes/const_other.go
pkg/scheduler/backend/cache/debugger/signal.go
pkg/scheduler/framework/runtime/util_others_test.go
pkg/scheduler/framework/runtime/util_windows_test.go
pkg/security/apparmor/validate_disabled.go
pkg/util/coverage/coverage.go
pkg/util/coverage/coverage_disabled.go
pkg/util/filesystem/util_unix.go
pkg/util/filesystem/util_windows.go
pkg/util/filesystem/util_windows_test.go
pkg/util/flock/flock_other.go
pkg/util/flock/flock_unix.go
pkg/util/iptables/iptables.go
pkg/util/iptables/iptables_linux.go
pkg/util/iptables/iptables_test.go
pkg/util/iptables/monitor_test.go
pkg/util/iptables/save_restore.go
pkg/util/iptables/save_restore_test.go
pkg/util/iptables/testing/fake.go
pkg/util/iptables/testing/fake_test.go
pkg/util/iptables/testing/parse.go
pkg/util/iptables/testing/parse_test.go
pkg/util/oom/oom_linux.go
pkg/util/oom/oom_linux_test.go
pkg/util/oom/oom_unsupported.go
pkg/util/procfs/procfs_linux.go
pkg/util/procfs/procfs_linux_test.go
pkg/util/procfs/procfs_unsupported.go
pkg/util/rlimit/rlimit_linux.go
pkg/util/rlimit/rlimit_unsupported.go
pkg/volume/emptydir/empty_dir_linux.go
pkg/volume/emptydir/empty_dir_test.go
pkg/volume/emptydir/empty_dir_unsupported.go
pkg/volume/fc/fc_util_linux_test.go
pkg/volume/iscsi/iscsi_util_test.go
pkg/volume/local/local_linux_test.go
pkg/volume/local/local_test.go
pkg/volume/metrics_block_linux_test.go
pkg/volume/metrics_du_unix_test.go
pkg/volume/metrics_du_windows_test.go
pkg/volume/util/atomic_writer_linux.go
pkg/volume/util/atomic_writer_test.go
pkg/volume/util/atomic_writer_unsupported.go
pkg/volume/util/device_util_linux.go
pkg/volume/util/device_util_linux_test.go
pkg/volume/util/device_util_unsupported.go
pkg/volume/util/fs/fs.go
pkg/volume/util/fs/fs_unsupported.go
pkg/volume/util/fs/fs_windows.go
pkg/volume/util/fsquota/common/quota_common_linux.go
pkg/volume/util/fsquota/common/quota_common_linux_impl.go
pkg/volume/util/fsquota/project.go
pkg/volume/util/fsquota/quota_linux.go
pkg/volume/util/fsquota/quota_linux_test.go
pkg/volume/util/fsquota/quota_unsupported.go
pkg/volume/util/hostutil/hostutil_linux.go
pkg/volume/util/hostutil/hostutil_linux_test.go
pkg/volume/util/hostutil/hostutil_unsupported.go
pkg/volume/util/hostutil/hostutil_windows.go
pkg/volume/util/subpath/subpath_linux.go
pkg/volume/util/subpath/subpath_linux_test.go
pkg/volume/util/subpath/subpath_unsupported.go
pkg/volume/util/subpath/subpath_windows.go
pkg/volume/util/subpath/subpath_windows_test.go
pkg/volume/util/volumepathhandler/volume_path_handler_linux.go
pkg/volume/util/volumepathhandler/volume_path_handler_unsupported.go
pkg/volume/volume_linux.go
pkg/volume/volume_linux_test.go
pkg/volume/volume_unsupported.go
pkg/windows/service/service.go
staging/src/k8s.io/apiextensions-apiserver/examples/client-go/hack/tools.go
staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/fuzz_norace.go
staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/fuzz_race.go
staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time_fuzz.go
staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_fuzz.go
staging/src/k8s.io/apimachinery/pkg/util/intstr/instr_fuzz.go
staging/src/k8s.io/apimachinery/pkg/util/json/json_test.go
staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go
staging/src/k8s.io/apiserver/pkg/server/options/serving_unix.go
staging/src/k8s.io/apiserver/pkg/server/options/serving_unix_test.go
staging/src/k8s.io/apiserver/pkg/server/options/serving_windows.go
staging/src/k8s.io/apiserver/pkg/server/signal_posix.go
staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service_unix_test.go
staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go
staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service_unix_test.go
staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v1beta1/kms_plugin_mock.go
staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v2/kms_plugin_mock.go
staging/src/k8s.io/code-generator/tools.go
staging/src/k8s.io/component-base/cli/withoutrace.go
staging/src/k8s.io/component-base/cli/withrace.go
staging/src/k8s.io/component-base/logs/api/v1/options_no_slog.go
staging/src/k8s.io/component-base/logs/api/v1/options_slog.go
staging/src/k8s.io/component-base/logs/example/k8s2slog/k8s2slog.go
staging/src/k8s.io/component-base/logs/example/slog2k8s/slog2k8s.go
staging/src/k8s.io/component-base/metrics/processstarttime_others.go
staging/src/k8s.io/component-base/metrics/processstarttime_windows.go
staging/src/k8s.io/cri-client/pkg/fake/endpoint.go
staging/src/k8s.io/cri-client/pkg/fake/endpoint_windows.go
staging/src/k8s.io/cri-client/pkg/logs/logs_other.go
staging/src/k8s.io/cri-client/pkg/logs/logs_windows.go
staging/src/k8s.io/cri-client/pkg/util/util_unix.go
staging/src/k8s.io/cri-client/pkg/util/util_unix_test.go
staging/src/k8s.io/cri-client/pkg/util/util_unsupported.go
staging/src/k8s.io/cri-client/pkg/util/util_windows.go
staging/src/k8s.io/cri-client/pkg/util/util_windows_test.go
staging/src/k8s.io/kube-aggregator/hack/tools.go
staging/src/k8s.io/kubectl/pkg/cmd/skiplookerr_go118.go
staging/src/k8s.io/kubectl/pkg/cmd/skiplookerr_go119.go
staging/src/k8s.io/kubectl/pkg/cmd/util/editor/launcher_others.go
staging/src/k8s.io/kubectl/pkg/util/term/resizeevents.go
staging/src/k8s.io/kubectl/pkg/util/umask.go
staging/src/k8s.io/kubectl/pkg/util/umask_windows.go
staging/src/k8s.io/metrics/hack/tools.go
staging/src/k8s.io/mount-utils/mount_helper_unix.go
staging/src/k8s.io/mount-utils/mount_helper_unix_test.go
staging/src/k8s.io/mount-utils/mount_helper_windows.go
staging/src/k8s.io/mount-utils/mount_helper_windows_test.go
staging/src/k8s.io/mount-utils/mount_linux.go
staging/src/k8s.io/mount-utils/mount_linux_test.go
staging/src/k8s.io/mount-utils/mount_unsupported.go
staging/src/k8s.io/mount-utils/mount_windows.go
staging/src/k8s.io/mount-utils/mount_windows_test.go
staging/src/k8s.io/mount-utils/resizefs_linux.go
staging/src/k8s.io/mount-utils/resizefs_linux_test.go
staging/src/k8s.io/mount-utils/resizefs_unsupported.go
staging/src/k8s.io/sample-apiserver/hack/tools.go
staging/src/k8s.io/sample-controller/hack/tools.go
staging/src/k8s.io/sample-controller/pkg/signals/signal_posix.go
test/e2e/common/node/framework/cgroups/cgroups_test.go
test/e2e_node/benchmark_util.go
test/e2e_node/cgroup_driver_from_cri_test.go
test/e2e_node/container_manager_test.go
test/e2e_node/container_restart_test.go
test/e2e_node/criproxy_test.go
test/e2e_node/density_test.go
test/e2e_node/e2e_node_suite_test.go
test/e2e_node/image_pull_test.go
test/e2e_node/lock_contention_linux_test.go
test/e2e_node/node_container_manager_test.go
test/e2e_node/node_problem_detector_linux.go
test/e2e_node/node_shutdown_linux_test.go
test/e2e_node/os_label_rename_test.go
test/e2e_node/resource_collector.go
test/e2e_node/resource_usage_test.go
test/e2e_node/restart_all_containers_test.go
test/e2e_node/restart_test.go
test/e2e_node/seccompdefault_test.go
test/e2e_node/user_namespaces_test.go
test/e2e_node/util_criproxy_linux.go
test/e2e_node/util_machineinfo_linux.go
test/e2e_node/util_machineinfo_unsupported.go
test/e2e_node/util_sriov_linux.go
test/e2e_node/util_sriov_unsupported.go
test/e2e_node/util_xfs_linux.go
test/e2e_node/util_xfs_unsupported.go
test/images/agnhost/dns/dns.go
test/images/agnhost/dns/dns_windows.go
test/images/agnhost/mounttest/mt_utils.go
test/images/agnhost/mounttest/mt_utils_windows.go
test/images/resource-consumer/consume-cpu/consume_cpu.go
test/images/resource-consumer/consume-cpu/consume_cpu_windows.go
test/images/resource-consumer/utils.go
test/images/resource-consumer/utils_windows.go
test/integration/apiserver/tracing/tracing_test.go
test/integration/controlplane/transformation/kms_transformation_test.go
test/integration/controlplane/transformation/kmsv2_transformation_test.go
test/utils/ktesting/examples/gomega/example_test.go
test/utils/ktesting/examples/logging/example_test.go
test/utils/ktesting/examples/with_ktesting/example_test.go
test/utils/ktesting/examples/without_ktesting/example_test.go
test/utils/ktesting/signals_non_win.go
test/utils/ktesting/signals_win.go
third_party/forked/libcontainer/apparmor/apparmor_unsupported.go