HomeSort by relevance Sort by last modified time
    Searched full:race (Results 26 - 50 of 1768) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/
race.bash 6 # race.bash tests the standard library under the race detector.
12 echo 'race detector is only supported on linux/amd64, freebsd/amd64 and darwin/amd64' 1>&2
39 echo 'race.bash must be run from $GOROOT/src' 1>&2
43 go install -race std
44 go tool dist test -no-rebuild -race
race.bat 5 :: race.bash tests the standard library under the race detector.
13 echo race.bat must be run from go\src
27 echo Race detector is only supported on windows/amd64.
33 echo # go install -race std
34 go install -race std
37 go tool dist test -no-rebuild -race
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_suppressions_test.cc 61 static const char *kTestSuppressionTypes[] = {"race", "thread", "mutex",
84 ctx_.Parse("race:foo\n"
85 " race:bar\n" // NOLINT
86 "race:baz \n" // NOLINT
88 "race:quz\n"); // NOLINT
89 CheckSuppressions(4, {"race", "race", "race", "race"},
96 " race:bar \n" // NOLIN
    [all...]
  /external/valgrind/
glibc-2.34567-NPTL-helgrind.supp 33 # Helgrind:Race
43 Helgrind:Race
49 Helgrind:Race
57 Helgrind:Race
92 Helgrind:Race
98 Helgrind:Race
104 Helgrind:Race
109 Helgrind:Race
114 Helgrind:Race
119 Helgrind:Race
    [all...]
  /prebuilts/go/darwin-x86/src/
race.bat 5 :: race.bash tests the standard library under the race detector.
13 echo race.bat must be run from go\src
27 echo Race detector is only supported on windows/amd64.
33 echo # go install -race std
34 go install -race std
37 go tool dist test -no-rebuild -race
  /external/valgrind/helgrind/
README_YARD.txt 2 YARD, Yet Another Race Detector, built on the Helgrind framework
8 The YARD race detector lives in svn://svn.valgrind.org/branches/YARD.
10 It uses a new and relatively simple race detection engine, based on
16 * Modularity. The entire race detection engine is placed in a
25 * Ability to report both call stacks involved in a race, without
  /prebuilts/go/darwin-x86/doc/articles/
race_detector.html 2 "Title": "Data Race Detector",
10 A data race occurs when two goroutines access the same variable concurrently and at least one of the accesses is a write.
15 Here is an example of a data race that can lead to crashes and memory corruption:
37 To help diagnose such bugs, Go includes a built-in data race detector.
38 To use it, add the <code>-race</code> flag to the go command:
42 $ go test -race mypkg // to test the package
43 $ go run -race mysrc.go // to run the source file
44 $ go build -race mycmd // to build the command
45 $ go install -race mypkg // to install the package
51 When the race detector finds a data race in the program, it prints a report
    [all...]
  /prebuilts/go/linux-x86/doc/articles/
race_detector.html 2 "Title": "Data Race Detector",
10 A data race occurs when two goroutines access the same variable concurrently and at least one of the accesses is a write.
15 Here is an example of a data race that can lead to crashes and memory corruption:
37 To help diagnose such bugs, Go includes a built-in data race detector.
38 To use it, add the <code>-race</code> flag to the go command:
42 $ go test -race mypkg // to test the package
43 $ go run -race mysrc.go // to run the source file
44 $ go build -race mycmd // to build the command
45 $ go install -race mypkg // to install the package
51 When the race detector finds a data race in the program, it prints a report
    [all...]
  /external/compiler-rt/test/tsan/
benign_race.cc 26 &Global, sizeof(Global), "Race on Global");
29 "Race on WTFGlobal");
39 // CHECK-NOT: WARNING: ThreadSanitizer: data race
pthread_atfork_deadlock.c 4 // When the data race was reported, pthread_atfork() handler used to be
5 // executed which caused another race report in the same thread, which resulted
30 // CHECK: ThreadSanitizer: data race
atomic_race.cc 63 // CHECK: ThreadSanitizer: data race
66 // CHECK: ThreadSanitizer: data race
69 // CHECK: ThreadSanitizer: data race
72 // CHECK: ThreadSanitizer: data race
75 // CHECK: ThreadSanitizer: data race
77 // CHECK: ThreadSanitizer: data race
79 // CHECK: ThreadSanitizer: data race
81 // CHECK: ThreadSanitizer: data race
simple_race.cc 28 // CHECK: WARNING: ThreadSanitizer: data race
29 // CHECK: SUMMARY: ThreadSanitizer: data race{{.*}}Thread
  /prebuilts/go/darwin-x86/src/runtime/
norace_linux_test.go 5 // The file contains tests that can not run under race detector for some reason.
6 // +build !race
24 // Can't be run with -race because it inserts calls into newOSProcCreated()
norace_test.go 5 // The file contains tests that can not run under race detector for some reason.
6 // +build !race
15 // Syscall tests split stack between Entersyscall and Exitsyscall under race detector.
  /prebuilts/go/linux-x86/src/runtime/
norace_linux_test.go 5 // The file contains tests that can not run under race detector for some reason.
6 // +build !race
24 // Can't be run with -race because it inserts calls into newOSProcCreated()
norace_test.go 5 // The file contains tests that can not run under race detector for some reason.
6 // +build !race
15 // Syscall tests split stack between Entersyscall and Exitsyscall under race detector.
  /prebuilts/go/darwin-x86/src/regexp/
exec2_test.go 5 // +build !race
13 // This test is excluded when running under the race detector because
  /prebuilts/go/linux-x86/src/regexp/
exec2_test.go 5 // +build !race
13 // This test is excluded when running under the race detector because
  /external/valgrind/helgrind/tests/
hg04_race.c 1 /* A simple race */
  /prebuilts/go/darwin-x86/src/fmt/
norace_test.go 5 // +build !race
race_test.go 5 // +build race
  /prebuilts/go/darwin-x86/src/net/http/
race.go 5 // +build race
  /prebuilts/go/darwin-x86/src/sync/atomic/
race.s 5 // +build race
  /prebuilts/go/linux-x86/src/fmt/
norace_test.go 5 // +build !race
race_test.go 5 // +build race

Completed in 481 milliseconds

12 3 4 5 6 7 8 91011>>