mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-22 21:21:31 +00:00
ad0f7a5305
Upgrade to Go 1.20.5, Hydra v2 SDK, rules-go v0.44.2 (with proper resolves), protobuf v25.3 and mass upgrade of Go dependencies.
19 lines
522 B
Python
19 lines
522 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "flowcontrol",
|
|
srcs = [
|
|
"backoff.go",
|
|
"throttle.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/k8s.io/client-go/util/flowcontrol",
|
|
importpath = "k8s.io/client-go/util/flowcontrol",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/golang.org/x/time/rate",
|
|
"//vendor/k8s.io/utils/clock",
|
|
"//vendor/k8s.io/utils/clock/testing",
|
|
"//vendor/k8s.io/utils/integer",
|
|
],
|
|
)
|