kubernetes/vendor/k8s.io/utils/exec
Davanum Srinivas a328ca88ad
Use btree from k8s.io/utils instead of github.com/google/btree
The google/btree package is deprecated, so switch to the maintained
fork in k8s.io/utils/third_party/forked/golang/btree.

API differences:
- NewG -> New
- BTreeG[T] -> BTree[T]

Signed-off-by: Davanum Srinivas <davanum@gmail.com>
2026-02-04 16:11:16 -05:00
..
testing Use btree from k8s.io/utils instead of github.com/google/btree 2026-02-04 16:11:16 -05:00
doc.go generated: hack/update-vendor.sh 2019-04-03 10:19:40 -04:00
exec.go Use btree from k8s.io/utils instead of github.com/google/btree 2026-02-04 16:11:16 -05:00
README.md Updating dependency k8s.io/utils to version 2df71eb 2020-05-16 07:52:56 -04:00

Exec

This package provides an interface for os/exec. It makes it easier to mock and replace in tests, especially with the FakeExec struct.