Lines Matching full:go

25 Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/1663832
28 Reviewed-on: https://go-review.googlesource.com/c/go/+/455360
37 src/go/build/deps_test.go | 1 +
38 src/internal/safefilepath/path.go | 21 +++++
39 src/internal/safefilepath/path_other.go | 23 ++++++
40 src/internal/safefilepath/path_test.go | 88 +++++++++++++++++++++
41 src/internal/safefilepath/path_windows.go | 95 +++++++++++++++++++++++
42 src/net/http/fs.go | 8 +-
43 src/net/http/fs_test.go | 28 +++++++
44 src/os/file.go | 36 +++++++--
45 src/os/os_test.go | 38 +++++++++
47 create mode 100644 src/internal/safefilepath/path.go
48 create mode 100644 src/internal/safefilepath/path_other.go
49 create mode 100644 src/internal/safefilepath/path_test.go
50 create mode 100644 src/internal/safefilepath/path_windows.go
52 diff --git a/src/go/build/deps_test.go b/src/go/build/deps_test.go
54 --- a/src/go/build/deps_test.go
55 +++ b/src/go/build/deps_test.go
64 diff --git a/src/internal/safefilepath/path.go b/src/internal/safefilepath/path.go
68 +++ b/src/internal/safefilepath/path.go
70 +// Copyright 2022 The Go Authors. All rights reserved.
91 diff --git a/src/internal/safefilepath/path_other.go b/src/internal/safefilepath/path_other.go
95 +++ b/src/internal/safefilepath/path_other.go
97 +// Copyright 2022 The Go Authors. All rights reserved.
101 +//go:build !windows
120 diff --git a/src/internal/safefilepath/path_test.go b/src/internal/safefilepath/path_test.go
124 +++ b/src/internal/safefilepath/path_test.go
126 +// Copyright 2022 The Go Authors. All rights reserved.
214 diff --git a/src/internal/safefilepath/path_windows.go b/src/internal/safefilepath/path_windows.go
218 +++ b/src/internal/safefilepath/path_windows.go
220 +// Copyright 2022 The Go Authors. All rights reserved.
315 diff --git a/src/net/http/fs.go b/src/net/http/fs.go
317 --- a/src/net/http/fs.go
318 +++ b/src/net/http/fs.go
346 diff --git a/src/net/http/fs_test.go b/src/net/http/fs_test.go
348 --- a/src/net/http/fs_test.go
349 +++ b/src/net/http/fs_test.go
385 diff --git a/src/os/file.go b/src/os/file.go
387 --- a/src/os/file.go
388 +++ b/src/os/file.go
466 diff --git a/src/os/os_test.go b/src/os/os_test.go
468 --- a/src/os/os_test.go
469 +++ b/src/os/os_test.go