github.com/AndrienkoAleksandr/go@v0.0.19/src/testing/testing_other.go (about) 1 // Copyright 2021 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build !windows 6 7 package testing 8 9 // isWindowsRetryable reports whether err is a Windows error code 10 // that may be fixed by retrying a failed filesystem operation. 11 func isWindowsRetryable(err error) bool { 12 return false 13 }