Browse Source

remove obsolete build tag

Signed-off-by: tyltr <tylitianrui@126.com>
pull/13416/head
tyltr 10 months ago
parent
commit
f97fa2736c
  1. 1
      cmd/prometheus/main_unix_test.go
  2. 1
      config/config_default_test.go
  3. 1
      plugins/generate.go
  4. 1
      promql/fuzz.go
  5. 1
      promql/fuzz_test.go
  6. 1
      scripts/tools.go
  7. 1
      tsdb/chunks/head_chunks_other.go
  8. 1
      tsdb/fileutil/dir_unix.go
  9. 1
      tsdb/fileutil/dir_windows.go
  10. 1
      tsdb/fileutil/flock_js.go
  11. 1
      tsdb/fileutil/flock_solaris.go
  12. 1
      tsdb/fileutil/flock_unix.go
  13. 1
      tsdb/fileutil/mmap_386.go
  14. 1
      tsdb/fileutil/mmap_amd64.go
  15. 1
      tsdb/fileutil/mmap_arm64.go
  16. 1
      tsdb/fileutil/mmap_js.go
  17. 1
      tsdb/fileutil/mmap_unix.go
  18. 1
      tsdb/fileutil/preallocate_other.go
  19. 1
      tsdb/fileutil/sync.go
  20. 1
      tsdb/fileutil/sync_darwin.go
  21. 1
      tsdb/fileutil/sync_linux.go
  22. 1
      tsdb/goversion/goversion.go
  23. 1
      tsdb/wal_test.go
  24. 1
      util/runtime/limits_default.go
  25. 1
      util/runtime/limits_windows.go
  26. 1
      util/runtime/statfs.go
  27. 1
      util/runtime/statfs_default.go
  28. 1
      util/runtime/statfs_linux_386.go
  29. 1
      util/runtime/statfs_uint32.go
  30. 1
      util/runtime/uname_default.go
  31. 1
      util/runtime/vmlimits_default.go
  32. 1
      util/runtime/vmlimits_openbsd.go
  33. 1
      web/ui/assets_embed.go
  34. 1
      web/ui/ui.go

1
cmd/prometheus/main_unix_test.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
// //
//go:build !windows //go:build !windows
// +build !windows
package main package main

1
config/config_default_test.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build !windows //go:build !windows
// +build !windows
package config package config

1
plugins/generate.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build plugins //go:build plugins
// +build plugins
package main package main

1
promql/fuzz.go

@ -13,7 +13,6 @@
// Only build when go-fuzz is in use // Only build when go-fuzz is in use
//go:build gofuzz //go:build gofuzz
// +build gofuzz
package promql package promql

1
promql/fuzz_test.go

@ -13,7 +13,6 @@
// Only build when go-fuzz is in use // Only build when go-fuzz is in use
//go:build gofuzz //go:build gofuzz
// +build gofuzz
package promql package promql

1
scripts/tools.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build tools //go:build tools
// +build tools
// Package tools tracks dependencies for tools that are required to generate the protobuf code. // Package tools tracks dependencies for tools that are required to generate the protobuf code.
// See https://github.com/golang/go/issues/25922 // See https://github.com/golang/go/issues/25922

1
tsdb/chunks/head_chunks_other.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build !windows //go:build !windows
// +build !windows
package chunks package chunks

1
tsdb/fileutil/dir_unix.go

@ -13,7 +13,6 @@
// limitations under the License. // limitations under the License.
//go:build !windows //go:build !windows
// +build !windows
package fileutil package fileutil

1
tsdb/fileutil/dir_windows.go

@ -13,7 +13,6 @@
// limitations under the License. // limitations under the License.
//go:build windows //go:build windows
// +build windows
package fileutil package fileutil

1
tsdb/fileutil/flock_js.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build js //go:build js
// +build js
package fileutil package fileutil

1
tsdb/fileutil/flock_solaris.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build solaris //go:build solaris
// +build solaris
package fileutil package fileutil

1
tsdb/fileutil/flock_unix.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd //go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
// +build darwin dragonfly freebsd linux netbsd openbsd
package fileutil package fileutil

1
tsdb/fileutil/mmap_386.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build windows //go:build windows
// +build windows
package fileutil package fileutil

1
tsdb/fileutil/mmap_amd64.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build windows //go:build windows
// +build windows
package fileutil package fileutil

1
tsdb/fileutil/mmap_arm64.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build windows //go:build windows
// +build windows
package fileutil package fileutil

1
tsdb/fileutil/mmap_js.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build js //go:build js
// +build js
package fileutil package fileutil

1
tsdb/fileutil/mmap_unix.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build !windows && !plan9 && !js //go:build !windows && !plan9 && !js
// +build !windows,!plan9,!js
package fileutil package fileutil

1
tsdb/fileutil/preallocate_other.go

@ -13,7 +13,6 @@
// limitations under the License. // limitations under the License.
//go:build !linux && !darwin //go:build !linux && !darwin
// +build !linux,!darwin
package fileutil package fileutil

1
tsdb/fileutil/sync.go

@ -13,7 +13,6 @@
// limitations under the License. // limitations under the License.
//go:build !linux && !darwin //go:build !linux && !darwin
// +build !linux,!darwin
package fileutil package fileutil

1
tsdb/fileutil/sync_darwin.go

@ -13,7 +13,6 @@
// limitations under the License. // limitations under the License.
//go:build darwin //go:build darwin
// +build darwin
package fileutil package fileutil

1
tsdb/fileutil/sync_linux.go

@ -13,7 +13,6 @@
// limitations under the License. // limitations under the License.
//go:build linux //go:build linux
// +build linux
package fileutil package fileutil

1
tsdb/goversion/goversion.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build go1.12 //go:build go1.12
// +build go1.12
// Package goversion enforces the go version supported by the tsdb module. // Package goversion enforces the go version supported by the tsdb module.
package goversion package goversion

1
tsdb/wal_test.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build !windows //go:build !windows
// +build !windows
package tsdb package tsdb

1
util/runtime/limits_default.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build !windows //go:build !windows
// +build !windows
package runtime package runtime

1
util/runtime/limits_windows.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build windows //go:build windows
// +build windows
package runtime package runtime

1
util/runtime/statfs.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build openbsd || windows || netbsd || solaris //go:build openbsd || windows || netbsd || solaris
// +build openbsd windows netbsd solaris
package runtime package runtime

1
util/runtime/statfs_default.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build !windows && !openbsd && !netbsd && !solaris && !386 //go:build !windows && !openbsd && !netbsd && !solaris && !386
// +build !windows,!openbsd,!netbsd,!solaris,!386
package runtime package runtime

1
util/runtime/statfs_linux_386.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build linux && 386 //go:build linux && 386
// +build linux,386
package runtime package runtime

1
util/runtime/statfs_uint32.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build (386 && darwin) || (386 && freebsd) //go:build (386 && darwin) || (386 && freebsd)
// +build 386,darwin 386,freebsd
package runtime package runtime

1
util/runtime/uname_default.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build !linux //go:build !linux
// +build !linux
package runtime package runtime

1
util/runtime/vmlimits_default.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build !windows && !openbsd //go:build !windows && !openbsd
// +build !windows,!openbsd
package runtime package runtime

1
util/runtime/vmlimits_openbsd.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build openbsd //go:build openbsd
// +build openbsd
package runtime package runtime

1
web/ui/assets_embed.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build builtinassets //go:build builtinassets
// +build builtinassets
package ui package ui

1
web/ui/ui.go

@ -12,7 +12,6 @@
// limitations under the License. // limitations under the License.
//go:build !builtinassets //go:build !builtinassets
// +build !builtinassets
package ui package ui

Loading…
Cancel
Save