mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-11-04 07:49:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			706 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			706 B
		
	
	
	
		
			Python
		
	
	
	
	
	
package(default_visibility = ["//visibility:public"])
 | 
						|
 | 
						|
licenses(["notice"])
 | 
						|
 | 
						|
load(
 | 
						|
    "@io_bazel_rules_go//go:def.bzl",
 | 
						|
    "go_library",
 | 
						|
)
 | 
						|
 | 
						|
go_library(
 | 
						|
    name = "go_default_library",
 | 
						|
    srcs = [
 | 
						|
        "buffer.go",
 | 
						|
        "percentiles.go",
 | 
						|
        "summary.go",
 | 
						|
    ],
 | 
						|
    tags = ["automanaged"],
 | 
						|
    deps = [
 | 
						|
        "//vendor/github.com/google/cadvisor/info/v1:go_default_library",
 | 
						|
        "//vendor/github.com/google/cadvisor/info/v2:go_default_library",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
filegroup(
 | 
						|
    name = "package-srcs",
 | 
						|
    srcs = glob(["**"]),
 | 
						|
    tags = ["automanaged"],
 | 
						|
    visibility = ["//visibility:private"],
 | 
						|
)
 | 
						|
 | 
						|
filegroup(
 | 
						|
    name = "all-srcs",
 | 
						|
    srcs = [":package-srcs"],
 | 
						|
    tags = ["automanaged"],
 | 
						|
)
 |