1
0

rebase: update kube version to 1.23

Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
Humble Chirammal
2022-02-10 09:17:46 +05:30
parent aa70554ae0
commit 656623a00f
2548 changed files with 330622 additions and 161734 deletions

12
vendor/golang.org/x/sys/unix/ptrace_darwin.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build darwin && !ios
// +build darwin,!ios
package unix
func ptrace(request int, pid int, addr uintptr, data uintptr) error {
return ptrace1(request, pid, addr, data)
}