]> git.feebdaed.xyz Git - 0xmirror/kubernetes.git/commitdiff
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)
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

index ad60ce3a675e076e0f7657322a79c535b5823d98..0d3bab144030affe20d236488c3651ed002be987 100644 (file)
@@ -1,5 +1,4 @@
 //go:build tools
-// +build tools
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 968feba37976b2c6500a2487622db9fa9062fb27..6f7b255f93da73a7d6568ec7b1872c174002f5c9 100644 (file)
@@ -1,5 +1,4 @@
 //go:build integration
-// +build integration
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 79c826712a27e1a55606869e96f10665af52f851..7640bb722f8c2f715cfb25d2afb3e26e9e79bc9a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index be7cce349b8267beebc1abad1aa20a11d90d8850..47a9663019efeb4ec41fccd480c5727192ad4ddd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 7e0ff787fe1d0ea4872daf944554c6d66abc64a8..fb422d067c14c4174fc4db57421f73063f713b6a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index a9fa789926c99ebea8d9d318a7319b38e0155dad..6282e00ea08f26dc139be4d657e3d5651f5f65c2 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows && !linux
-// +build !windows,!linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 8b450cd2ff598d7bf7d6b558909b609654ca18cc..2a0c28b22978aef2631f8068fa500f6048f9b4ec 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index e9074b55c256e6aa925843acd9dde60a22dd0e36..6b98d40668f081f1cbad31181f1279f187245708 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2014 The Kubernetes Authors.
index ec2dcc8cf87874c5bc16d136d716bab418bcb201..3f0c2bd73661059ac6e8e632baa095fafe06e6fc 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 331552f048bf6410ddca1ad93f18125682badd7e..f2a89d576c388721941ea0e75e0e35d0c03e736a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows && !linux
-// +build !windows,!linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 05d1ddafd3d864598d63ffe81bb79767dab3184f..ab08abf23b0c023aab602944acd809a2ab6d9570 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 7779e64021feaa666667669f167eafa8ab00be93..f220ec70989f1833dbdde1fb064fad70833fb782 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index c2f424efc627a5b4b3ac7fe3bc7d73947c66c2ce..045bf0e7dc3fdaf0da55d8f21cf94af3110fee1d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index cb79b8d2e1869228dd5476ae14e311b4bd0f032a..5393eef1107607d8278e8b5f4a34faa7d964247a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 6926d7d8370c7f2c69002eae4409da452c8a0e97..dd4ed1e725012ed8543a7af64919cfea2bd1b9e6 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index fbaac20ab33fed3ca25b693a80269182d28420ae..4882315e29d1bf18b38bc0b4b1b23bd527c4a893 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 86abd92642c42abc136bac93aa8c87607fb041c1..1d6b5481b08f44e4b11366b6c166360ce36b688c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 7a556cd45e5532ea2b0c03e3a27e22dfac2a729d..4181d44b8780e15bcc98d55156204b87a3cf2bb6 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 42e8c543762267d7fb5ef424555964e47a093f9b..d9e2fd8a41fcf8c699a681e3d99d0778ef4c48a9 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2019 The Kubernetes Authors.
index dc16209afbb4aee17d5cdc9159a45bcc71e736a0..b092ae951e13d679213a376fd3a691c06568c7a3 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2019 The Kubernetes Authors.
index f42dff5118b1e1e4228d2ca97686fefce28c7bef..b56d46b044643a5311f6f4d207a1d0b79ca08597 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2023 The Kubernetes Authors.
index d2a2ab418322163f868b06c64be9bf726b914c9d..121e0412afe99d775fb52219fd34c742155025a4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 1eaa8e4bf5f01130fb55273210e6043a2615d829..6e7e174ffc3cf3ae86c83aac4d2233ae345a1b0a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 932deb3d32abbcf6f171b051c82da757f19f1b14..05849cbf8a10c3d6634d42a09ca06f0cd7b07de3 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index c706bb8c534d8b71ec1e1b03dbe24098f55ffed8..aad3a69d608549287e0590a62a3857c316cd5822 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 6ef641082d020c87f0cdd14fbb810e061761557f..87b877708b2da5d4907411d24468bc1bc8106d20 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index ea6c45c46411070083c8bd8aebd570c67c57f688..8023ada185df8e29e79315182940757b91327ded 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 0943d0610c0ab8a273e484f3d2a68bc9e4a07c5e..0a843e46689e3b700a437a3b2118a53cf9f6b9ca 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 48e870023bc0f59ea0421f9e3029a7ec78fad8f6..5d89692b619caaa11c521176b9de86fc57848246 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index e5d9846690a869b3e5b7ed97faef8bc13c3acf43..a1d5a332cfec56cc189bfdcaf80df2cc41c55fb3 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2016 The Kubernetes Authors.
index bcbdcb79f5fa9d60f8cc78418a3801718b6c6269..728772f61354321094ada4698c3ae2507086f9cd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index d8ece9b22ba55b50a9ffcff6e8881e7de269c3c3..b405a43387295d5a0b869b5685bae0f2d7615034 100644 (file)
@@ -1,5 +1,4 @@
 //go:build darwin || linux
-// +build darwin linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 22efc3b4ae5745509b778b58ac043d53f83e6cf4..ecd039c101181e0c087c5c68f318793339e4d146 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !darwin && !linux
-// +build !darwin,!linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index aa0bc2d56c19e45590f0395c34afa86e8bf9c1f3..7df188c90992dbe612480f435f2a5b235e3aeb03 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index bf06ae46a727a07072ca3f0a9873471fc7220516..606faa58247f7e7e02057e17aad00f433c970b38 100644 (file)
@@ -1,5 +1,4 @@
 //go:build darwin
-// +build darwin
 
 /*
 Copyright 2019 The Kubernetes Authors.
index e5aa7a907796bab61810f8469f558fa4cda2f83e..765dfc8219726fdea1d5df2773d08006ed757fcf 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 9756849ac8c82c21f9af0d22ee3f56251e30481e..26f91e4355dd6bdfe3614f482d86b1c95943bf18 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2022 The Kubernetes Authors.
index ef1119ea943f47ef40b5deb93bc5de2fb5dbd121..649abbd4f0d65cebaafd4e2775a41f13271d3233 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 562c6952a4f03c2564a33f1c62cd2d80ec5e223f..717146901e17fef659cdb179b9bcef8fd7ef4926 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index bc303b89c18d62c0f2b7755fd7ca3504c2815c67..06a84e09656ad5942afa33f280c4963273082fd6 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 871db8b4dbd4aeda47dd43e429a9e0078362322a..41b496e96869ac9a27b64777c7837972fadccfed 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 0d75b09dd0eb6e244e175503b3336c1e70a34ec9..c015a289fd7dc98fbe9ae2df24c78469b2274bac 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index e20f4f7b93651baf8a370bdf98cb33afd64a5487..d0d9df99fc4b5cfb6c0785d3e6ceb6f60aa67b5e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 2ad4fdad663780c3e63f439506cb658b0c15f9f2..355adfd83c71c50c12bc45882db43ade1fb6f038 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index cefa462b01e036d2771fe255bf4941013e38d718..0c8d4241efbdb2b410f571ae265448754e3870e5 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 5989c14290fa62c7de0876bcfa62c71c47fa6cea..41f7f3b6e5cd25d7e5f3ad963eadb5029d34e231 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 460bfcd03885a5b91f05825297218f6639676347..754591b925a2103219d1f5a506eb3fd0f1f524b9 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 27003c46f37b4a7a1494a1e2328c489b106b3607..50c0e56e6e593ff79bea5d6de327c258256029f1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 29a3e675e1ea9f95757fd84065e0606ad13af672..ea6648303fa79f8b2a13a585b95a0174c125d719 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 59e520d3856795530daa1bf8c0fee2fcf8e758de..5e8f900452150354b3dfa6eb7fb06568f1905643 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 8c70bffbd9b2eae3b2c79fe5e16e3d722003771a..8105b902ded33bb55a0438f5fe56f351e4419f48 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 1baee04ceb990234d34c140473d2bbf70f8fb6fa..9aff60ecbd58dd151ef03b757c5aa560af17aabc 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 6c2b51bda1f1685ea1bc31a361cc06ad6d485bc5..5f3d5adf879091f06f24d58d125a6394c718d890 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 1d81b9e4af8eb8d357f1eeee780cccd067467433..7993a7fb7270f60f7c71722cc4277a3f01ea14b7 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 651bb484f460b52243c94922ea4e1fedebbd343b..5488969237c00ba9d1e2f60a94cf43b749419537 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index e75e65ec37cd0ba84182f88a19fe8075bf7500b9..f428d02fbe60b8f264e77020395c865468effe3f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index f630d1024b0799bc19f6b8e7d969b98e0359ccd2..77aa2c8244c7b2794d559ff1d23b12ae17481114 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 083231a8d6e8afc69e5f61397d8cb428a81e930f..3f03bb788ed17bb0f0d47b33eabd30ec773a8438 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 1805b33d82eaeb8e37726602a784a82cac06b046..e6cd2b430ecc57e03f289a5fdeadaebf7a85cf75 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 1f96ad7e52b10045f61ffd09b1a95dadce9439da..4faf436d3e65eb6ef96939f1cd7e0b80e0800864 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index c4e74c8cb97705395f8bc78f4379040621705fc4..b3f6722859cae295908008536a853cb01de9cb9e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 781cd95cca9bfeb52967a4360c84fc3151284fd7..79261a9aa3b19e146ba65e432172f339195a95dd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index fad24ace7e3cc51a5020c4a9c10191ebf607215f..2995ed335fec2f767a841b798087d432e78cc1aa 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2025 The Kubernetes Authors.
index 127b062326f726bf2421ef125ea298885e4410a9..a81a51b4009c175a139876183274555f9b228a4a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2025 The Kubernetes Authors.
index 15b6855f39a9c5da016326877eb5747f26200db2..eda519b97418e7ed2dc7997e1596de2df24e8bc1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2025 The Kubernetes Authors.
index 76c976f6c00c10c741e6ba4915753675298a9ef3..e7a95526361f0dc182db92f31f8ddebf8ef582b1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 34adffb8443473560541e555f8f9cf0964e0c547..876c749f66081544e031f25e833389f0bdb84510 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows && !linux
-// +build !windows,!linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index a99c404262592fdbffdf3ca5b5378dfd7a33c4f0..c3eaebb2a9cc05c4438c0bb78c676ad7be0b61a0 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 510d315da0ddbec966d457ce5a8e0966ae034410..3a5b85abe99d4bcacc68cbd7166c1603129876c5 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 73435915b3bf5f88cf706d55c3aa83c3382ebbab..d697c642f8adc8ddb11da2f3ed8f7568f0f15eaa 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 2120adfcf9aa130832b5db127886b7c6802ff860..44a7686fecbacd34d25df7191c03032d73bb0850 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index c603e6d7f788c0da3bcf5ba670f607c9c62fe32a..70aab936446d43d8f2f026a0f874f58ae7c0cf91 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index e555f2e5794b041599692278bae8cc969143a90e..f662599238cec6fe8f6c0f42b9133a623af210d7 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 5e688cbe840a7ce90909e61d00e1fe7268bc84e3..007f48f2bce856a2d659d3e61e9fe5bc7d473952 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 684274787e3ab476e34f0c1dce7cd629e9a750a7..fb19f47ec442d6b166f463ac080781e927abdc24 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 7d4dd4f7c488e0465e0855a5a0eb3e742b7d913b..a8e3dca97eb053d51434f5be61855e6b64f301ff 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 375b1cf4fdbe83ee64c75cf447e1aad1bacba0bc..49da037bd6285b2b7d532c1c8f8c5b589c872b44 100644 (file)
@@ -1,5 +1,4 @@
 //go:build cgo && linux
-// +build cgo,linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 2388d4da20c09cd4f7164a6cab842ae5954338bd..41f6367e79bb4c3dc5a44390d1ee90f0fffb8aa4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index e763bec6de566610e739f04f9a7a493fa53577a7..6588aaf0b359cd037129fa629885cb48099c8272 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 2119ab922f749f348dfe6bfc79ffdb42ee2786ac..b9248c639e4adba2751834db7f88e97768168c92 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index bf2b4032bc7691c0c859fb8fba87125fbfe603df..be6f95bea5b795d95618c7c51b6b801ad81fdc3b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index b924632c65b1b4e70d6344fefc4f55ce1c05422f..0097ea159f6f2164d2eab70340f26df5685679af 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index a92f0ce89f0ac2b916a8c8bda0efcc071e48a102..8a5ff199be782cdfcda2b4ae5cb899f33eee2314 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 3b0c848fedaca351ee1a21eda21a6aed84106b93..9a7405d3e4d93b5250600adfb4e1ddc70914cba9 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 556583b1a7cc90cc1c8f85640104d33c47db29e6..753cd683593a51f49c454023bd29ead7471aec22 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index f9a239ce550e0b3bdab59d8c2260ca8f3f2a916d..7b73ff30476f751308da61947d032b27c8e64b92 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 6bc95ff6432a781e8843c0c5994ae045d14b6a30..a4b5a5c16facf6e14affd5b28da409d703676ff3 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 33df93ff8c4e5bd8cfef6be59545c63f88690978..d86722aa9f2fc7476a35400fe7238a26d77b81ba 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 91561cf7131a7073781591999d62397bb193ef8a..39bb1e76d9337c1e2a43773f74ae04c5ad29f0bf 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 4f6aa89a8ecc42a0afac170302bbdd558d90b7ee..c8cde975be5bcc5a22f126c1744d8489ec25228b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index ec960f8ead0c7a953557d76fdbb1d57fa025c64f..ee638c68687c95ab11d835c353a184f87507e2fd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 747250ead3df285997ccb7b3b5edb0092ce993dc..f31355a4d772ca34ec9100eaf6bbbfa367eb39bf 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 2981c4ebd4ec087cce2b24b7d8a1b65d3f4f4e9e..80f01de69ae0939fe76ed54aaaf6e3e1c78b7c45 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index bd3b9d616a920f7b797df4551fdac9c2162fded4..813c866c03a4590adf926b2555cc2e3624562a18 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 971cecf19eb5b5e40a847cdee7db00bd17526eeb..8fe23e842994809bcd7f67015296f16201deccdf 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index b510aefa8019c551117ffefe94e75448b5bc7b18..54439021aa5e41971e04a9020f6c68c131062eb3 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index b655f41388c0ef0d9676023ea0a44043fff7e2ce..ccf20092809a3c6ee20868952893f0b40c1c604a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index f05010f8ec0aab813f1da9743d6b0bbdd52f2ee0..20055e6a8cf3789c2333fd0d3eb74b829a0d4339 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index b7e17eb65505855e972752937cd806b7af98bdb8..cda1aee393b16cd7777939aad103a4b5bfb0a958 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 1b2c56a6660a616e2efbdac00052bae8fdfa387a..3ea4bccd74b34b0530a58280b140a43a38733b18 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 172531427cebbeeec1523759560ee67bdd18bda6..01e5b08042c40c1bf416aafc9330b07eaa428191 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 912acf178db9b4fa86a3ad32aaf352d246c51d5d..082f509d5bf7deed6ced7af146ffee7cd6d5a8d6 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index de6517f6540b36e3667e757f3947022d2662145b..c00a8d6916df4a2a740fd2497bea2f4f38ead70a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index b3e9324b518200ee7328ed6310659faaa21ab2c9..902b07d549fcc02ba978361e22b8325c7798b76f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index f37d4f82b3327c514744930061b30a24ab4fb7a1..978c17367d62f6bb41c8d51763923d0c84a8a4d2 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 140d6be17c716863ffc297927316fcbf3ff41ce7..d4050da163c6c0b3fdd523561dd612cb0ca5bcb5 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 9b1577d7b4a1da1f1d649d2377788323e51bce56..0ceae0957b99b89eceded97a0258ba9a8185e177 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 96e9b4f0717d826b319f37f5cb64996f815329b5..0984c693e12a0a87c90fdca4b58731da6db2541c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index b06a2839e698f350db7c13a30c7b80dede134c71..d692e71270c8df4f7f01b92ceec9cdca98081701 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 05cad40e860fc9827305758788abfe2d27203286..b454a3e58f53b7b21ed62d03931c4ed6e7e04f22 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 666849166c7754540464e75ac216b8446ab0efd6..bbca343daeff53f3a0c212317986c75dd7c9d8dc 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 2b4d8b5957400334bcb66b7e083563c5ed470a0a..7c411ba9af9fa39b5586e1d8d467300569f9c2d3 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 524159278e22bbee7fc98a24a20ec4e1d88a416e..a0a3832faff4ee933ea2ce1bf621346c4bdbd56c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 7b76d0a1932d524e71659ad861ca2f9682f8ee10..023e5deee3519fdbc1fb487f0a25e5cd2d6753a1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 67836a044bc7d0f13526507d7ba746a37c06f211..96e2e698355e2ee8ff154a7aa7729f1f5db147ce 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index a3b1ab2c300643624075626318f3f39023050858..b5933ee01480916b74242038cd97cdc5b2f85f7f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 95693fadda9c52a1614784c7f47038916a678191..b94aa78e9f2e979c15f1e2068481a8fe3b0c2695 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 9108be77fec5be68b64ca3dd82e8da0f056da5c3..57864761d4c7cd8502ee94043612c2d4d7f10efe 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 8162dd821632cc1b85829ce41f3cf25e204ca9ea..321d21da0ed72683eb89a6e8592ff5875aed97ab 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 2d388411016da5097f730295447328d401ee784f..9b4bb31a51c469154c43c7f1a603f70567e21c67 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index b58fdb7a35ae3dabb12fb538d3f7be5c6cfa1149..05ae4afd604976d6835d1291841df8eac6a574de 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 46dd01277b1db85a5371555e56fe1d54bba3556f..92e00f4443d0ebd00451f58eec162f70783bb36c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 35acabb9c48911837937c755b63ab4ca50132a25..a3ae9c1337466a1896e18fef56ba338a75356d94 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 8a64d07dae3f3285ee67e5a69f6bbbdf71cbae8c..0a51f2f6097052b797a29bbd3b121368f63a4250 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index e3d6a829a0aaf224d3c36a425932f07fe27b4e4b..a269c808ab2c4f8d1412846f795375ae3eabf4b2 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index d71d980c1a991b6c2ecf3eeaa0a4c7f2ede58031..a3000fe67585bec0df5126051f8624ce1ca7893d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 5b8ff561f9346dc4d5b757ea11266fd7e9491801..e16ba7b7c78d69b896f91fc973ee7a091b7963c3 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 304db4a13753ef91cbcfca0de7cac4eea2f6e4d4..20bb94edc79ad69445a27bdbad7724f870ddcf96 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index c2b3daa07b6a35489f3f6a48ae8d262d7a6ceddd..77348045d2870e12a70200edddb5fdf0406adc73 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 1f0b30ddf82eadf044ce72af8350ab8d60c3ed44..3e8dd6ea7adac5e05c1accb041d2f5039e176dcf 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 137d652d1a8502548d321644db98d8ed55528dd0..6f9bbdcb2dd3b24014f2abc8247d46ee34d47b23 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2025 The Kubernetes Authors.
index 3ece076ba381d8c8bd763e1e958123f4148eccbd..a286606e9c4077df93fb72e6d0cb1010a3971b07 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2025 The Kubernetes Authors.
index 1db1b527b3bf758b74ff9c11c28a2dd7cbca2411..e55520f1009df43683eada3992731ad36a5aed03 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2025 The Kubernetes Authors.
index 8d5f5caa7d3459ec0a38081c5c64a5aa78d32592..df2b81b86a921368c32009a06f2c4f5c14c11f1a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index a2440558334b5e8068a1af2a567c89c4d5a37c20..7085963c14fcfdf39102fd4e7b891444f518408e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index cb1651bf5e6beb15bc34c298041178fd464c916b..79d69f761a4909c9c735c418f09b7972aa6557f8 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 4ecf40f6ea80b0e4defb13a94199273bfb3fd639..127560b17b1e396a426336c0cb15a012af0da9fa 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 8a78f874cb94b2f3e75cb6d0b79405f51a7482dc..d93ec91bc4b00390283c7735cea88264bff5b19d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 9662d7f4c27c83d0795cf1d48bd30a6381d3a322..384a772e064f88cddf25b43895ac6ad928a62cf2 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2020 The Kubernetes Authors.
index ca43e737fe4e2e92e913166fe47f75f7893cf9eb..7a1185b9ce82ffcd601e5bea0a4e305b29b3c4bc 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 4c129d499dd59555cabde802d05fdaa0a8368824..50d5679f504e0337693bb3c0f0a746dbbb19773d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index f0598a7025e4e5f8b7b5145f7a3bfb89ddc60bc4..38be1d5d8c810b16212d57270c077429bb2303d4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 18b6b9be86928fdf67ba5b5516108af4e945ae4e..0223d65ba04dcd09ca109a9f6f07d2ca2bf041c8 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2020 The Kubernetes Authors.
index bd00aa70bb8f53de4063470321d22672bd1e8da2..21604ee06dc3e181c637685b335eb9fe91c2f54b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2020 The Kubernetes Authors.
index f077b00afc518fd522b13011ea5db2902f0a7c73..c35b8c9c8487be3c17e6e105adc038c0317067f3 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2020 The Kubernetes Authors.
index c0344c52a3308723ceecc438679f7927c0401855..ea14bcd90eedd9196efdebb2e1f8d6b2f1df164f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index d0abd9253b0775d7f86e9910aba91ff2dd2f0b89..38767c4a18447090134c23c382cfb4a51b0def0a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 2ecb570238ed221435aa6850727c92be2d1e62bd..7edcea12f6b9d5425585737062a53a70ac871f62 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 6d743b2309eb56ae8b710b98a9ef671fe9d71b4c..66c11e6d70c7dbd33e3e4427033132f452d9b07e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 476ae4fc0c71da261e4bbf8ac258b04bd22cbeb0..ae9edc2e03891d94e4bd478f5b63964f62369772 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index ea4586eb1cdcd24a82ad7ec75f98b4cb28c76bf7..f9b5935001f71948c65d8dcf58da130d33688090 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 8ec6ca1f30b2aad834c1d19e3855d0d71f9e2283..10fe13cd9f9a7f6a2ab74124c325cd9c5b9b22ed 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index ac6fae1f42c896dedd69656cf56dd61f383c62f4..ea07f41542bb0ebfbb4d21a369d888e6e4f36aff 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index bbca2fa501f08078d93e7aae9a0fafb46ce3a1a5..54dfecbe5654678e9635e717acc0c25fb5f13de4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2016 The Kubernetes Authors.
index db88528b5cad4692d4af312b7eaf4be8b6edf013..3fcc5291b2945450e2f58e4019587ba4c32f71a1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 6aeebd7945f41505b517ab78064994954ee20c51..81dc9c76cdb98f01179d2df5ccb6d61357c2cbbb 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 782c66bdaf15660bf7d94b0a01798b2d6063203b..4d075114db430222d3c79e3473c198df28c3d25b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 403e9d867c167c526ca3db45c8a01307d205cba0..0455a1551b5d6970fe7eb8925dcd287dc5732062 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 25e7655203211aaa7b593a17ce9b458c3d3f3901..40fa8b73b224d5339256c0219339c8ecbfb69086 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 805c276d997c1fc3b9b2f7adee158a7ff515f3ea..b195a771d15105e704c7ebc760a8f667a5b4895d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 29cd8cb0e6d0688b1ebbcc50f6557013f48b34bc..47e943bf176e78cbf9c843894cf5b47f247eef6f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index edd2e4e97d40b855e4cb49931662c614dfaefec3..da27062ab15aad1ae41946badc0f03955fbff968 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 67f633009efadc7e12481f8cacb07d07089c8ec6..7a560cf352e6df1469b782d62e92311efe28433d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 0177914023d2b63e60961ca7fb78262379d24142..3ff519b6b45a341e9a3a99f1e50c33ee5d4fc656 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 90e56418c8d5e3907e40d05d14f306ae63b9475b..cc59f2e9a425875907e4c45bdd52c65675035795 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index b6a1cc38c813a490e4b585f3230c6905f3583cd2..42fb097733bb2b23dc48155c3923f490059b8860 100644 (file)
@@ -1,5 +1,4 @@
 //go:build darwin
-// +build darwin
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 1138deeeb69e21e99cf1ea979739961518458dca..4fe1b5176165c9f87317ad627391bdbd133cae8f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build darwin
-// +build darwin
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 7d605d7611c1d7161721d4af906e0ca7c63cce51..b02f9d8d33cca254ce2da18a5a9a8deafc2851e1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build freebsd
-// +build freebsd
 
 /*
 Copyright 2020 The Kubernetes Authors.
index b79eda6cb6a403da38172bf0fad17a65ce4c4419..dcd7204f159b2c8b116c62014f3b014391138af1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build freebsd
-// +build freebsd
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 67c9b191cfe7d2e57ec310dc606fef81ec7cd372..028b01d3d5522d0d123236d9071eeec1bddcc9bc 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 9f77dfd0287ba05102b7faf56dbf9d5dbba0ea4f..882b7f8d9f2d198bb48fe5286c5b74b88c16c0b7 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 98efbb46fe260faf312f1389a24d05bd8bfdefc5..12c11cbeff750f6d191d6b83a55ca2f49b3b78ab 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index e2e1c71bac68df1d3efa04e0ee9dd519b62dda11..35541c404be3d6b88b0c1420c77ade461747f395 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 0664b6a4248d1b5ac563015dd7dbec0e3422ac76..e1a310c0a73ea40fb3fb350cd3799b59d74fa569 100644 (file)
@@ -1,5 +1,4 @@
 //go:build freebsd || linux || darwin
-// +build freebsd linux darwin
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 1206ef4128a7f91299bfaa148e53fd7a9e58def3..32c56a1c2f878083f2b6202480c4b176b58f256c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build freebsd || linux || darwin
-// +build freebsd linux darwin
 
 /*
 Copyright 2018 The Kubernetes Authors.
index e95a7c583a8999127fb9f761337a79e116aa3650..983cbf931df8ee87fadf2217c10fbd5b6f495ffe 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !freebsd && !linux && !windows && !darwin
-// +build !freebsd,!linux,!windows,!darwin
 
 /*
 Copyright 2017 The Kubernetes Authors.
index c944a7d22f2738e39deef05f6d0b5560ad036ddb..80d8211326a32791502932a61541b1a7f4ed1174 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index e3f1cf500af7975cd4cd9f08d4042aa069d15a67..319ea9fd8d53597c6ac11177a5b93b00a7ed9cfd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 912e7e5ebcc0133f9f5c2fc35af1312cf59a709a..9237950961a954075e34adfdd6d66c6fb4c1241d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 36f273a9d61f030493414dfeca6d4f1d62ea4a14..39ab8dc6508424ba172d0fb6e5759bfadc0bb548 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 2595549e6ec77adaf1685b188d72e22959f28f61..b0c000acb5f967efb1484461caec8e1705468295 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 771e2315ae76d3141e569224ff9558552dd1e4e9..bee3f5f60d0e932791d9c5a2b823e51c95ab2d6f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 33f3f1c85488726da12c6785841bf68409bc64ac..06bb16162ab331e46c9e7c8b96c644a6a92997a2 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 6ce7a730a56e6a8350b153d2dd4c31c9fb1ab9ea..ee23c41bdd5b7b939e57bd58181bf1d7b40b6b53 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 124de535f967f010b2f631ad907d45a9db5823f6..cb1740c3009ca1c1643906b869d9ab79258665bc 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index a16393b18f15199d543ea68d4f3d64d825e4e234..e6832c1b4bbde563eb90a1cd917201fe6e508f37 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 7083aea47ec2467ada2c91752626e000bc300dfa..f3c67052eabd65999399e98ad3a9a523c8eae5fe 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 4b483d41d86fb8ff2f67a3e76f5296593a65ca77..8d37b31bedd01407d8be64c32f66fafda47d28dd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index ecb93e678785e68fa421590ade5f3e47c5142b0b..077cd6a8d3340e48d44cd222b71a701b9da010fd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 80e9442f8ceac0aaf0a89ec8b147478fe55f4e85..fbee466151e4460e97ad795b57c646ab745b1395 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 12ee8edfa96bffeaa01bcede05cc1e9a00cec263..1169c7c80b8baaf9750ab696c9688de00a7b66d4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 29776f89394e3bd5ab20b1243565cd502c548fc0..a0b84a7593528ba9d2d693ff37d0cde46fb2d2ed 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 7b02daff340eba8b87d090d425dc65be5a2fb9db..63a529a43dda72c442a1380d93a5dbc2fbbf5246 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index ab0d020478c57915534b6655cdf56cb21a3d67d1..6bad852237e4ebdbd4d7c39f5dca6fcb77134beb 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 4953adf7f30f8ba65f07ccaf48b63a66a2c1da8b..8035fcbdb90ab3898624b390ad510acedd14f5fa 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 93e6eca157a9f21df2ce3f5d6dc718fcbbf435c3..98afa791064bc78b77025052abbf845616841243 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2023 The Kubernetes Authors.
index bf41a050db55b023856dfbedc452cb60c2c5d15e..e276d32aa88bff11a8ea932c74f0ddda3e2d4178 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index ff20a02da83d4c04877f37665d7827d411af18c9..19e9281da8ef5b646e62db9dd06f10b7b9f60c91 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 4183aa5bb3a18d60622e025b8a51b97c2c0f0f38..8374f775226b6bdf6e5c33dba6277bc67851a9f3 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 95ddfb9c3dcd56628d4e77081145f6d7c6d4101e..6b451f828a6731af0e23a7e31f02f96ac0233d27 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 400e8d56c9afda2b17687e78609d5954cf7b18b6..ad85afd7f53c7352dba2bb3bec51f78411baee7a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index dd318d2081406e1c89f4e7e23ad3a08fd5eaf14f..008c239e92da740c23cda92704bf654fe9ac8f15 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 35dc6e6658692ef8ce7cc4d7c68b53f949f48899..a155c815610654eefbd52fb94a8826195b1cf60f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 88b1eeec1391b6b1d827b0982f1c56517983789d..99e63c428bb104d8130dbbda789734fed6abee80 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 45eaebb5158f639911138c0bbda3f701137e6994..93d6174e3caeb0d4e790dc0119f0e03e412e87e7 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 3b3d0d6c58ebceb720b3a527a59aa296e631d9c5..8eb02c19b62e1156863708b8a9c6e185e27bb52e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 193fc634b636d5ee87b6b0a28620d2e3642d7213..306f8a680d8868f06e07a72021ec0682338c028f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 041e92781671091d8b09a068f82281fe4ed96731..c2b5c74707ec6923c438bc5f9d5a12cf532a60ae 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index a2e45327519beca382126c9c45a6efe57f71285c..a03ebba243905ffffc4b03848a9768ae96a09df4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 84377a832ee1ae4f72e96e623b15412b9aedf206..a4a9608b60fed726d60cf84eb2c071a4e7221688 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index a77215ae6a7b8bac38ab9695cbf9ea1000d5b083..84ef3b1f8f36aeb5b987405bdd31bb9b6f86ed9b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 45632d278943fdbbdfbec779e72060bd999a1cd9..e40a7cdc3a7b8bdc3a0350d9486082a8b290f673 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 6f5842f2e9631e42be298c341485483b1d16d957..35806ea9f9f0976a51fccc550147b01217587aa0 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 632b5078ad3a2ca651c21397027dfb2f65e4bf90..fcf009e69f0f3f289ec743ec8175fab07fd094bf 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index df8a6e89d62136a6d6ec5a14938f6773ea4ada99..1671b531e7db42b3138859fc2577a852498c40e8 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 114e3409df512b9586329b08102023e7c037e9ee..a27bf1f89b0b947410c80f5eec0f6aecf3a2e0b4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 7b7544fa9c72454fdc2deadb010db322ad63111e..ab22d5f1eb778ff641c495063ea169b3a5b75fba 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 227facceb0c9e2aa2a354e753bce8d4e71a2f891..06ce335d11f44a9f348d96f6479e2e04c92665fa 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 599532e1d8933ae26290a522a1031b6867a6b066..29baf19c08c9d13d0756f8df23875277a608c2a1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index ac8853c440691a745bccdf44d31fa9e663c8cdbf..3c1805856617be15b35cb7994955b0a129a35a62 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index e038fad07b64206a74a0cb13443b69be08b0e66f..ed447ba1c7e1b4ca316e4d2132afed8a874b306e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index f3595f260aa61740799291743b5c6cfe8dcd556b..06bca7d88b09bcb0b20edf7441aa3364574d34cb 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 7cf3b25d6156969d5da9d00d17fa547ddb2dcee9..782c543d22fd02f13152bd3774cac885ae3e6003 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 2d946517d0485b3e3eb2ed7bbd1ba46b1856274a..bed59256dd1f31de4fae058558be26bb3f05e24a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 69aac3b1c85e23e67cbafe523fd9f2704bd71967..23fec029e682a4a7c649cdff4771a597436d2c79 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 7cc34bf403b8988b702182b17d14b9fc199d0b15..d2344b3f7edf01a8d87cef5a7582be8fecec3357 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 6b533cb131f496939981c5358428aa72252a6983..355bc5a5d81c1f91fbf3c5b371f8fcda4f9cfb26 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index be9ca16a9c9ffd98393e0b3c719b4b5a4c0785b0..effee9054525738c91fe460dc09f1c091f8bf716 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index ec14ea4183362e86de9be96250eae3edd968a846..bd639a69668215eef87f5e0d302729775f2902cf 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 4a91e84aa63d0fc1c3ff8aecf73b3d74956d0b18..12a76bc5479a8ac7bb8a122c69b841c0100851f9 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 54185098dc500eded3926f032e5195ffae39cdaa..1da3471e800173706f18d10f2f3abada7216b326 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux && !s390x
-// +build linux,!s390x
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 0ca20a2d37b26867dbe1ab5146307886a9263d9f..198c43893365872f884e12bfba6691821246391f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 6d43a01aae5153e775e743d275ea13a6610f7f2b..f83a3cf3174d9dec0884df80ffe3b55e09866eaa 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2025 The Kubernetes Authors.
index 5c86a113bc09b8856462e10122b1ab0f0d5c20db..a73c54ac7640833f46a948d05709b16e073e65db 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 80bb208adff10741436b9e94092d38889a37d910..69319b0ff08069f8306744ba76e992d176fae9e3 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index b859ad639efb610f03420223c23239de635e5175..bbc653870a65324be203f423400a612ec45b3362 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 35558bbce95e8bc9ce3c66ebc4879976c0708c50..6c37c7af6cd3cbe72f713dde55cd6a86d6b94009 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index aaa39ded01caa68b7724aff4672c69805e4983eb..7c317a0fb78ce514452c30a53410c3e2bec5cefb 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 26843f2f0042ac2b3d017d24408804c742233b7e..f24622011086106a1afd903e2e5a6a54a52be413 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index fff6446e54ff0e4f48c9b6026f2867bb81c27d7e..458e506e81860f27e8f16e8bea590b7ba3d6fec2 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index df5c83cea0d02ffef9c1d27a4e3d990cbe0da76a..78acf3acb451b80266525e9a77674d48c505ceba 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index af5f3d1af53bf78ba8c1b032ec4b707dba463389..07cb13fa09b25605e985295432b30a033c94454e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index ccb3bca33216f773ef5d54569e74d39cf961da03..031c13c04490b95f951a3eaaa6144a0c8e4827b2 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 91a82c2ef82dcce0aaa75eb32319231cdc568d3d..af10414ac19ccb596be700922e4c1d16ba3baa9f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index f8e3891708923e9469271d50e4c45712d10f1267..7d27119596475bcf737c8d31747a314001fa4bc2 100644 (file)
@@ -1,5 +1,4 @@
 //go:build coverage
-// +build coverage
 
 /*
 Copyright 2018 The Kubernetes Authors.
index f1c89a4d544acfffa7af1d783e113ffb4e4e9a69..d95ea5867816eaad5303460696897ee10ec48010 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !coverage
-// +build !coverage
 
 /*
 Copyright 2018 The Kubernetes Authors.
index d27d2640f33e225aeb62a7ca08ee074b745d5962..351f9ffff9a9c4cbac130e942af93b74a0a9030f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build freebsd || linux || darwin
-// +build freebsd linux darwin
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 95616d34f6c617808ca4de224cf2a752f8cf6792..0d0799909a42cfcd3f96e7ca49c486cce6f05774 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index d3cb238c0c7ac91771697c53a7dcc33e887da411..0bb622a47acfcda0194df6e2ec76265389618e89 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 33c7a0799ce83824b198384e4f768e5053fdb8f4..1def472197a3bd031f828ba469c94214e4f898c6 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !darwin && !freebsd && !openbsd && !netbsd && !dragonfly
-// +build !linux,!darwin,!freebsd,!openbsd,!netbsd,!dragonfly
 
 /*
 Copyright 2016 The Kubernetes Authors.
index d44c1a8d569587b30afbd5d8c8ed71752b0ceb90..747b9e766cec90380b4155790292aa10683512c7 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux || darwin || freebsd || openbsd || netbsd || dragonfly
-// +build linux darwin freebsd openbsd netbsd dragonfly
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 8476c1ca78d1b60dccbc6d9676e48e47c14d4b65..52b81f1ec82ae3e2097eebb31cf3a26981e5deff 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2014 The Kubernetes Authors.
index e307917307563549c758df1b720e67e16c9a3595..b038791ff6254b861dcf1be80f665c7068f4a2f0 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index e98abff487aff6b08b31aba011503df11578c6fc..0e89fd4fd19592d63661b9a6e17236ddb9634981 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2014 The Kubernetes Authors.
index f0aa9187eb148668d2d2239d98f9ce903342730e..52fc1e5fea5e1827ef5442add55eac2fc7bf8d3d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2019 The Kubernetes Authors.
index d507adde737890183c8e8f7780be3b51ad39cbaa..d56deed2cc0ef746a8c892497a790c20c3f40a4e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 26da4bb3e1cffdf09bb2192a807b2215dca2ef81..10f6b741e89b5eb6fee3da11802ce08e23f5b42b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 4658d73263d428422c6aabf2397cbf8cca97571d..78c0c2070ec213762cf60dffcdc4f8c1b43e232c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index b2edaa59549275675b26f667123e02d5b6e4b39f..de6c6a51265f21c317db1cbb74e1bfc702707d78 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2022 The Kubernetes Authors.
index d7957e8c76029547b14b11aaad6b15b543efa0f2..76b17455d541cb0e49ca34460f3e74f7fa281151 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 5d320018b4d86d8638bb7440a9037419e9416faa..1afcb210975fdde4e27b4c61672c55bb8ff2c04b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 380967f9c00d77031710d2a93ff3b93ac41e9ce4..fcfb37cd1b4449f1415b2791016e34f4eddbca0a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index e724da7e90f521747efe0ba6eac3f5f1b85feb82..60b271b13e38aec6031c7a7e0559cdf7825197f9 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 1e4b926e24e7036a8dbb78b155689175d4a27ac0..0e16bd7477e6b1f51a71253f90c8c11d7c895d7d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 041291bce9e3115c0cd1c2298f4032c9edbe2d7c..8c9a98191bb0bd9be479cc635db562fce18fe3ad 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index b021afd9c2d7b0e876f7d42dad0cca1e8e5d3b6a..759e5fd2fa3e9bb6daafd105ae304db4b4da13a4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 7ff7a49fa0b000e32dbf218b812c9c97865baee5..f8e3d36d7a761d6aa6c6536947fe34f0c86f2977 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 3a42a14ff9081094363b5a13f14b053120b537a3..158379bc88416bf25acadb66d52dd06ab7060b5d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 96eb9904278ccbe3ee2d51ca568584be4b1f8d77..6025ab3fb312d022e890446587a15dd3c5300c43 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 381ad4bf6665f49074acbe583d6dc52ae48e81fa..9e9fec7c66f1fd65681113baf85a5d4c95a0e3d9 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 73826145871d224bd76f2f69e8ae410db43e64e0..86dca71ac55a52a21e74bce20ef995f1175d8d45 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 106d296d99256a867836ee3f6eee5cab89508cbf..dc710e8265f4f6fd85a5964b7d50f93e2194a5b1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index eebfce74c2eb90e0c2f647a4919c129e42c93bc2..0aa0d617b6b4f8f9ee136a7d9a55a8f89faaa0d0 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 4d3906b509faf292c5f8a51bab1fe292650d340a..689f56eaa02237a3ef9cb23e6e0d4dfc1273f93d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 08daebf04e2017bcd085d0bd8b4ab2303f302207..d02698bf04114b634c1c644a1cc5ac85ace5b8dd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux || darwin
-// +build linux darwin
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 7777997f3b696f063d6ddd4d8e1ac30b5da26c01..39d4795ed6f109e5cd52ca1d9b023cd27261d205 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux || darwin || windows
-// +build linux darwin windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index d5e6951142e9a3881f391d08b734e6aba61a7d2e..76062452f0a8d9569665117ee4c66c526ba4063a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index ea35b669170f6765c462ae2ca2ba4924104606f7..a09afe8815e95317335ade7a80d0c801c8bbc0aa 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 42217e2b6e4b0071775e31d1e8f13e1ffc8d9e22..4418a5e5a438299abd36f22e7230c2a092b23c0b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index c12a0f4cd317e268fff538e79e9cb5b330f36546..15f4cd77403f063e96c027e3fa130080edde5e95 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index dfe01d92f5b653024403d74da3e4f9981caf16b3..b328f2313badc71925f212cecc55d6f1ba8880a9 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index cdfb83e639725c1ab426a06bf50a2e1ebb45bb39..2a5ec11a1386a2ab0ed208c27d2c30b7079a3bca 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 18cbec072f420d0b2328b5f0eda3aec11f66702d..b9e5be201f5d771b0c4603260da4800fc527fdb8 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index bb3d113f1a550cb29db6c131e85091bf82591965..982b6b06acc0ef38051d9036aeb0e2761a526b9e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index ea4786aff6f43d6f05466235ff2697465c07d8ca..cbbf035e85b51ab283806c6f0d274de85e3026f1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 64301fd5de16a56f3d5014c6568b828bb5d0bc55..fea83301b4c53ce5b1388ae3f06640c32827793b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux || darwin
-// +build linux darwin
 
 /*
 Copyright 2014 The Kubernetes Authors.
index f66df0d0666f73aa471a673da51809ec526454fb..82065e316018ae51c1113d298458dc3f8f8b6a0e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !darwin && !windows
-// +build !linux,!darwin,!windows
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 3e654d3fd3d3a13f7671e5c231b8a13eab768576..9afe97e579060e9c6ab40cb51f09b85876d23b08 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 77f845837b7dd8e74626dd83d80256c578517644..d0ef4b26a2a3638d8d4c9b0722cba3fc45e7bbf7 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index a99596623930956ad542d8d2755dee8fe23d989f..f50c2777c0771b4c0cb3534683707e652457164b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 16d25d6c3f57c53794fa56e67f02fa1d737e12f1..e1b2f0a96ae9802ddfa4711c2789f4b5bd5d1b66 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 6ddf4d4d50faaff8ef55a30a90bac23ce4efc706..da93b5d2e9a5ec5f05bdc24f59e0a7bcbdf0760c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 30c8ede4d238916042728ba2b40e5a91c1ad2461..5989b1428a1b70252057fd868b435f76291dd84c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 31d3e4f655e49d25d07320dd9579a433538d02f1..dcebb4faa4d06db39be3c7637976cd64ee16f058 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 19bcc5f14e109204683a8d2b799cb4bc6e0ef13b..f5206492d3c2806a9ac36c7bfa8ca5dbadb1e8b7 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2014 The Kubernetes Authors.
index c720f32900d8763342a853e0fe0fa6ae8c809ed5..ab9a6736fdb81b9b359f84b4a3abbf493a067b2c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2014 The Kubernetes Authors.
index c5ff9c0b5e1e474d6d15016fc713e2b15b8246ef..2fd765938a25f3aa1f628835d7b3335483ea575c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2014 The Kubernetes Authors.
index b702d1e7e9bceae88db1aa09b541b7a575277cbc..fcaebdf7d151af9d4fa8a3eab8453ec12e25482d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index f1958cd6050d0f07837b738826fdbefc006a6660..0ed994d1266222ee270a3e9bf4927a744bf63e86 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 987d6967d6620f0ea17dd45eca0e56c8bd63f068..f07aba319c91a37aac927d9f8493be95cd285791 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 1771bc16b8e242fd157d77fc519eaa0566cd4499..b294ffdfd6d569ae1ae12b4d5e6d2e1cc44f0cc9 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 14b52a365fcd6c247615397e040db01c7aca845f..06ff952d99c0654b2a67b751527fad74fb444142 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 682fcd4f59da43ede67195be50343ed27b8661e1..050143d96e7749eedb6e7c58b7c27fff68304109 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 541d0b65d354fa0e555b0d679475da4f90603891..b1256a2152c1d6d10636a88754ba62fca78e2dff 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 66fb2fe1f42aa76e6eb35955c144d3dd83b7830e..ec78ef8da10c34bc8a34e6774fc7d5b398243386 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2018 The Kubernetes Authors.
index c3caf8c66c6d5fbf17b8c09d436dfe9a93c41789..48e6a8f385e281fc9244e3c3c7c6a9e3ff3794fe 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index c133b69bcc1bbd14b9d8d7a5ca98e97ee1a16fc7..bf1d29041140ba0ee613f97fffab72d9e787f053 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2020 The Kubernetes Authors.
index ef46dac618dd777eba8168f0599dbe55b5774783..e73bb4a14aace87ba2ebadea867286f8391a0839 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 15e004a1fae5f2fcb1d5990c94a0d18251100bf0..818a736a0bc7d4eb45a2f5944bb5a9fd412e47e4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 73ab6ef11b396e006fbd23f1e51090efe58dc8f7..3e2ab980786ca5e8b9f489f63ff214d73ffca491 100644 (file)
@@ -1,5 +1,4 @@
 //go:build tools
-// +build tools
 
 /*
 Copyright 2019 The Kubernetes Authors.
index c655b3ab71e78c8d0103a3077e991424a143d8ab..23057619b16b2a18f27e87aa87244fea7c99626c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !race
-// +build !race
 
 /*
 Copyright 2021 The Kubernetes Authors.
index fa252960f0103718a8a71b09e772b0db9385ffc2..f7ebb8c170d0855459d842d0d6f6972b410dd004 100644 (file)
@@ -1,5 +1,4 @@
 //go:build race
-// +build race
 
 /*
 Copyright 2021 The Kubernetes Authors.
index a5f437b4b38abf7a4b948a21a9f6e00cb2b62f54..338ea9be722320fe16607ed45ec1308d39a5b03b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !notest
-// +build !notest
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 48fb978450e25185e15ff4cefc6a00185bf3b33a..14ec5f058681e313ecfb773634488877417bea2a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !notest
-// +build !notest
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 2d6f6a0ccca65fcff1edb53acd4950b3950b25f2..494325c1f3dc037359afb6d9b7c7f7bba30826a7 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !notest
-// +build !notest
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 9464eb7f3f70aeb22019818c3bc5e98df0a4e43c..8caaa274a7e149665dfd8e77b33c3bfdcc2436dd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build go1.8
-// +build go1.8
 
 /*
 Copyright 2015 The Kubernetes Authors.
index c6673b29cb6f094fa746387c4e9a0bbb3e793544..8cced587d2cf782133b2cdb50c9d674c537c593e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build go1.8
-// +build go1.8
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 483eac79b235a2075d1beb1074ba85c328c29471..6f484ac3764d2f2b28a1c269fb7e556ed1818c40 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index bfc4815329f4995e095cac63d1d687efffa3a8c1..db23538ebae651a5249afab3b240cac579e6b71c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 844de618833aca33c883b324ac6b4c8b5ef0c5fd..f8fb14109877933a36a4d396a9142021025651b1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 7acb2038a1b36638146da47da9febeefbb2b33ad..fc0ab2d6716bedd879d15155ff3ef672b6eeeeae 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 4080b2c5907b3cc0e1b0e155b28c8f2cff370755..394ad78d4c6c18661f1177ad5cbb73d82ede3119 100644 (file)
@@ -1,5 +1,4 @@
 //go:build tools
-// +build tools
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 4ae2749a134b2db4c0c9b71556e788b151f4011e..3f1f6ab5536f9dfab8abed8d60e2acb6a4526bef 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !race
-// +build !race
 
 /*
 Copyright 2025 The Kubernetes Authors.
index a71cec991d99f5158315deeee804d2a492f68ca5..122d338240fa5dcce57bd165a1fdd7fb150d4acd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build race
-// +build race
 
 /*
 Copyright 2025 The Kubernetes Authors.
index 816948e0a6f56285d062d3d91a19010e35dd5901..ef4d5603d09a73aee6dca14b8bd8d64a645ace1e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !go1.21
-// +build !go1.21
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 31765e644db6a88f6d053648cb238cfd1d9ff009..6e8f1b44235e9e7386c952b65a4a76d238d05282 100644 (file)
@@ -1,5 +1,4 @@
 //go:build go1.21
-// +build go1.21
 
 /*
 Copyright 2023 The Kubernetes Authors.
index c39ef9fe7a60f92537a610b9be778ddba1c83696..6b19bd4a132e8c1b48ec6b798146678d86955140 100644 (file)
@@ -1,5 +1,4 @@
 //go:build go1.21
-// +build go1.21
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 440141e0900877ea006f8de5494b8bced0a9b0d6..cade87e664b64408caedf193f0776f88a77ce1ac 100644 (file)
@@ -1,5 +1,4 @@
 //go:build go1.21
-// +build go1.21
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 611a12906b27ffc2107f01a83d49f4ef7e0aa04d..5e9c867587658bd9505bfa0711cf3f454eaf0c04 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index afee6f9b13cd87626dfbaf93f470070d23e80efb..9a38abd33ce148d83e80bbb2480a5aea7829cc08 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 62961ea29f1425e92dd3a46fbd1f5dca15ec4d0b..956c2079f4ff49137f112f75febe94708a3716bd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index b119a5c37fe41453a5b9f185783436b6eb541f1d..d92ad155ad8cf02c594a43ff62db7d0dbdbfcd25 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 4aa17b4a20746dac06fdc6dbc0e9b1d69288cad3..cc477e553ac645b77d93d5e05eccf723b612f3a8 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 83d07d8df790e37f095d19f715c75c539cbf6d80..479c76572a9e5b36dfa4ff78d1eea358ef07974f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 73df89045f4f1427a12af49445b40f979f83b1df..3310590384d9a9cc12bc266e5eddf19eb7b5f072 100644 (file)
@@ -1,5 +1,4 @@
 //go:build freebsd || linux || darwin
-// +build freebsd linux darwin
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 2c93823d4560ce0a701f7534551e60be0cd32888..b23b5a9522bb206ed17487e88973df301b32e852 100644 (file)
@@ -1,5 +1,4 @@
 //go:build freebsd || linux || darwin
-// +build freebsd linux darwin
 
 /*
 Copyright 2018 The Kubernetes Authors.
index bfb729897bd4018a4403ae8378c4016f2cec595f..21c2a5b7ff0cfd284ae40d9ac6c9a8229fd977e4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !freebsd && !linux && !windows && !darwin
-// +build !freebsd,!linux,!windows,!darwin
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 96d0634ef0b409a74da09e996a13937fc76d9e65..e83119e8c930635962cb7125e22ab914422f730b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 986f59c8863b4fa820f5de6fe5b979fde999091a..cea9909a1060d58693884d3e3de9173c7b7ba353 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2018 The Kubernetes Authors.
index 73ab6ef11b396e006fbd23f1e51090efe58dc8f7..3e2ab980786ca5e8b9f489f63ff214d73ffca491 100644 (file)
@@ -1,5 +1,4 @@
 //go:build tools
-// +build tools
 
 /*
 Copyright 2019 The Kubernetes Authors.
index acde131244474cd9a6eda336100135ba2436a33d..74db1a2a100b66cdd65f3089053a939e203af584 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !go1.19
-// +build !go1.19
 
 /*
 Copyright 2022 The Kubernetes Authors.
index f24c5646d517e730af81e9928a591a0511eb3df9..c69de20fa191f254da4ea364068800073d69d495 100644 (file)
@@ -1,5 +1,4 @@
 //go:build go1.19
-// +build go1.19
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 4298a3329cc7d74eac4729ecf797782009bede5e..495e09af55f15dd6dc01beb2abe2e52b2d545e3a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 04b8cdab24e1e5d00e976983d526d2e72b802f85..2c99cc9a656066554358827693acdb491dbe5925 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 3f0c4e83e65910f93e99535663f9ced0830e9ecf..3b4b06c40a05764643e2b359113a353f55a654f2 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 67f6efb974afae83b6d608a7932e643fb7f8e04c..a2985cb415c638e8786d970e57c7b40434d22646 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 73ab6ef11b396e006fbd23f1e51090efe58dc8f7..3e2ab980786ca5e8b9f489f63ff214d73ffca491 100644 (file)
@@ -1,5 +1,4 @@
 //go:build tools
-// +build tools
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 6c74eb9ca7ccd79d0a5ff6de77599967f9085196..8b2a4d6f2f0c0b5da3a6e6db90f05a17ae53cf5f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 71662b583151911dbf8aeb8cfa6ca9591833a1f4..9e22c10eae6be33d2dd68f368bf362279b6dd69a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 995fd5a0cd73b8985e988322134f4a19de2d5203..8eed7a94c32201b597797173217b24ba9c5345f4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index b4f3d1ee17a12e3014ad12539e54d274b24fa4bd..ed1b44693bee7f63443112d829a3571cc6d4ed4b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 9c0b6d554f33244dc86ecec482ca5ccde9cead1e..c74a4f2f2c2ce4b141932ad0c0ac25eb635d7a67 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 4c49db5867aae64d63d16276d42b056664112074..ae512d9016d101c6a5afb5aad7600e77c5193db0 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 0345904a010287233ab456e5c148019bc2688255..9dc7d81d171b0c3ced310c43f847a2c3c5da701b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux && !windows
-// +build !linux,!windows
 
 /*
 Copyright 2014 The Kubernetes Authors.
index 682cb0f01141b795e7d83a2869bd2ae04d4fef71..d63c182ccaebe5b3f3f00cf4abf6d170f4932cb6 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index ddb44409e8270c1680ac79c2c24f9fce4be4672f..8f951d4656901dd3918302dc96cc8ec5b5ef93c7 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 3eaf46a49a1dde904088877bf38b3df1d9b5f4ab..79712c005d3549c7e3b711507ee2010a1d65b59d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 9a39a574bd690cabfde4fa901c699057472e36bf..b17061e87ab07a71b025f0a1b07b2004a70818a7 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 88b8b2410b8979c8d2b49198e98c73979468bb29..813e4a3eb55bd9e9fe47a1aa38080ad420be6578 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 73ab6ef11b396e006fbd23f1e51090efe58dc8f7..3e2ab980786ca5e8b9f489f63ff214d73ffca491 100644 (file)
@@ -1,5 +1,4 @@
 //go:build tools
-// +build tools
 
 /*
 Copyright 2019 The Kubernetes Authors.
index 73ab6ef11b396e006fbd23f1e51090efe58dc8f7..3e2ab980786ca5e8b9f489f63ff214d73ffca491 100644 (file)
@@ -1,5 +1,4 @@
 //go:build tools
-// +build tools
 
 /*
 Copyright 2019 The Kubernetes Authors.
index a0f00a7321308990bbfa989ce85dae936b2bb2e6..2b24faa4280e34cab3dbc21261e4893c4417f620 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 43a526b0fcb180b8cb745408eb7544bf1c6973f9..d2860f69c70e26227a17948d475b163e6e2edbee 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2025 The Kubernetes Authors.
index fafb9eaf07d0f30deab8bf0eb4ea7941b54f8f35..1b10f2d50a2b87a84a7987c5c8f5e4a56f05eed1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index d40143ca988da89a02e5cb6093a50857d84f4716..4b406fc8e5e814c67ced874005040c997928e51d 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2025 The Kubernetes Authors.
index ad14b5cfea010adbe631b94649aad87b54e4d5a4..7f0c22dedc3bd81a869a72b7483099989ef7d0f5 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 40dd999a4585b4eeaa5d7ecdfcb10e488e70a5b8..710b6eafc0e0be6c7ccb23933a6d44a874ad6997 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 6e15a088869519f41afd77dab9b4a88667199db9..8bfbb1c918945e7e043d91612b0bb7f8681b4e73 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index 621bf3e662ca08f2c6839c91cf3305d8261870fb..38f161974bf24952c280afc667718219f4095252 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 4e6b2f03e0dee6f6f7478e2293a2b3c155319eda..0249eb512d63e8897814cfc51c9a2fc451ec4a35 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 6a8bd8700ec70fd87d2a423dfa5b34a71d5c47e3..9dff28df374b4db897a7148acec7d2b1c301e28c 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index df1009b9f73cad8b728506f7f531bf1013033e5f..605434ad7be799a04b4e01c4dfb8a8eb1377880b 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 603fb5b9d2fedb130982d81ba45866132ba923c6..d72f95f0284961e281356f7498322703ed0d4484 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index a7c9e8ca7bb4c84a430f6fe25fa479638f135cc1..17dc30d38eb9929eb3022be103643be85abddabf 100644 (file)
@@ -1,5 +1,4 @@
 //go:build cgo && linux
-// +build cgo,linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 51878480b5d133d4a3f848d1ba2b5a0df0f7aa1c..dc94e47c457f5f20a6f89c6b31f499d991db3fca 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index cb868d45d8ef4870df878c22135bf3c5bb3a74f9..80da7f0f07287023abf7a6fbe8ee3c036cab1e02 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 5780a8eab6183ca61f2d21310d319ddb01b9c32d..71b17bf2baec843eae1109c3d8a2c288c45f0d52 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index c1ce59e1bce00e75058ab7a9de369c44f780a6a3..f189a71538e6d3e6ac5011c84ce5b135d0eaeaa9 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 5de189108b9bb57bb75e065505ecdf62186e4949..85f9440bfbad3ebb543e561fe6ca811ceed98bcb 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright The Kubernetes Authors.
index ca3224f42d4a7b22ee161f6f7414fdf5769e1ff4..a9dda81c6ab7553a72b621d7fa3dfc6a999e0c37 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2015 The Kubernetes Authors.
index 2f0792dd2a8c5209d129bd49752ff2f25b99a9e7..85cca21145d2216b04e068ae0742db780ca44d59 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2022 The Kubernetes Authors.
index c576e0bf4e9b67e8d1cc38ced02bb99fd831cabe..9a81d6347139a00f0e7af2bd2ce2419be8874c62 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2024 The Kubernetes Authors.
index a33b6a06c2c3db89d1cd66fbc67a6cd4f1144d65..04cca964df8f008e313a3d7d9dfc28ede4e4e43f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2020 The Kubernetes Authors.
index 721a4b8d7017883b7f72cc5d62305575ce328397..38e0ef7607c9923bcb6c5c61f12f4e7dc4b59040 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index a9eed499316859a24680cc3d1a2947639c355b95..7863d27846392e01185f95e6b2076ae0ee296e7f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2017 The Kubernetes Authors.
index 1c516baf08343c0efb98548574858adf27f44a2d..a0b4aeaa0c07317f93abde0e79b851573d0f625f 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 812b833f5bed30c77b20544b68c09bc5cf427eb2..6214f98d14043b6fa4cebfcd064ac00565e299c8 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2021 The Kubernetes Authors.
index a3b02346a9da335bd91f12d587d2b966ae1c1b06..7ffe7f7ceb3428963ef679ed772aaba0588685dd 100644 (file)
@@ -1,5 +1,4 @@
 //go:build linux
-// +build linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 32176ef6f5d5c72feb726d059db58f0f5f3af9b6..731292237bbd4391a5d561e1e359ef58a90d81ed 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 /*
 Copyright 2016 The Kubernetes Authors.
index 902461b3e9151926b6ddd45a8ed235950a3ff099..22fca9a1ead9160475e3f3bfdd906b60d4212df1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index c29de8abb201697ef9a132bda145e9cfe82b7b7d..32d6f7a2056b8aaee9d455928e13df42d9ce255a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index e78c1811fed4d64ba0ce76d22a8c65e0797e3dd1..e0fe8440007cdc9512176dab4b2df4f28d09b23e 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index c533048bb4a37163f1f60641249d07b5a4bc170a..1946636a35ee01781023d7c634f72a594c7e8a07 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2019 The Kubernetes Authors.
index dcf244f7c125a2d735bbede1b605b5a38493a3b8..6e6c47409f7cb3cf1301a767c760148e9d291e97 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2015 The Kubernetes Authors.
index e1ced8f2ef29746973b020a386c043fbdc43048b..6245b5903697e881fd93b34250418b42fd2fbeb4 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index d54b6b76e098bb53e3973190aa0c9db2904c3861..462442813419b123ab386b82d76e233b91fa8d9a 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index d4a2abe4852bbc02f9b548a9f28e24786a1d0302..fdda44818792c04b92d30c2f6978933301fd02de 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 5eda6be4279ca5d63069f5371f964b9c19cf72d4..06c0e6b50eef9daee5d59b5269eb08e372c1e2d2 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2021 The Kubernetes Authors.
index 8f7c4074986f007aae2dabf186d33fc7b4b56972..00f57c5c74e4f57635b8844e6e4bc7ce96dcdfd1 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2017 The Kubernetes Authors.
index e8602480ca781b12cfbca96c43df3117d20c9fb0..a8ea2d0e99a4817d4b37a7703cf06404434af887 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2022 The Kubernetes Authors.
index 48150766f86eb5d01ff384ebd3a69456520e36e2..331e2e4703ee49e0b02cd451b4c83964d9935695 100644 (file)
@@ -1,5 +1,4 @@
 //go:build example
-// +build example
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 6202838e56ea95330ebf08c7f5ca2b11adca034b..f377dc4ae1a1973b28586cbc76c7d7006d1fe929 100644 (file)
@@ -1,5 +1,4 @@
 //go:build example
-// +build example
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 576f310c34c360bfd0bd30f4ed9ec72cf9602970..99739960be6fe3975e60406cf32544e9d21043b9 100644 (file)
@@ -1,5 +1,4 @@
 //go:build example
-// +build example
 
 /*
 Copyright 2023 The Kubernetes Authors.
index d0bc37eac3b0493438ee9d17c7cb63e683edc218..ee50ba7fca639805ff66c088efcc47c785136934 100644 (file)
@@ -1,5 +1,4 @@
 //go:build example
-// +build example
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 34300d79cecc8c9d1622999672d18c4edde93a6f..cb11d7c0dc1703382f82bd78a2d87550b2efdad0 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !windows
-// +build !windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 23533fb5bb992cc7fe8dd32b8d9488baedfe2506..6ff7e49d4f2ecbac754a48f371c0ae04a28b8bc0 100644 (file)
@@ -1,5 +1,4 @@
 //go:build windows
-// +build windows
 
 /*
 Copyright 2023 The Kubernetes Authors.
index 28be1d2e875a4799716fff0f9d3fa3cae7d7dfbd..59068c7f3d6f0079fec1769402964023d5049688 100644 (file)
@@ -1,5 +1,4 @@
 //go:build !linux
-// +build !linux
 
 package apparmor