github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/lib/israce/israce.go (about) 1 //go:build race 2 3 // Package israce reports if the Go race detector is enabled. 4 // 5 // From https://stackoverflow.com/questions/44944959/how-can-i-check-if-the-race-detector-is-enabled-at-runtime 6 package israce 7 8 // Enabled reports if the race detector is enabled. 9 const Enabled = true