-
DATA RACE:
Write at ... Goroutine created at: scheduleHandler() -
DATA RACE:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -ex | |
| prune () { | |
| find . -name "*_test.go" -delete | |
| go mod tidy | |
| } | |
| # Set up initial commit on branch, using v1.7.0 as root. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| go version go1.20.3 linux/amd64 | |
| installing golangci-lint and logcheck plugin from hack/tools into /nvme/gopath/src/k8s.io/kubernetes/_output/local/bin | |
| running env LOGCHECK_CONFIG=/nvme/gopath/src/k8s.io/kubernetes/hack/logcheck.conf /nvme/gopath/src/k8s.io/kubernetes/_output/local/bin/golangci-lint run --config=/nvme/gopath/src/k8s.io/kubernetes/hack/golangci-strict.yaml ./... | |
| build/pause/windows/wincat/wincat.go:55:18: Error return value of `conn.CloseRead` is not checked (errcheck) | |
| conn.CloseRead() | |
| ^ | |
| build/pause/windows/wincat/wincat.go:67:19: Error return value of `conn.CloseWrite` is not checked (errcheck) | |
| conn.CloseWrite() | |
| ^ | |
| test/e2e_node/environment/conformance.go:44:10: Error return value of `flag.Set` is not checked (errcheck) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh -x | |
| die () { | |
| echo >&2 "\nERROR: $@\n" | |
| exit 1 | |
| } | |
| FILTER_BRANCH_SQUELCH_WARNING=1 | |
| export FILTER_BRANCH_SQUELCH_WARNING |
NewerOlder