func path/filepath.Match
8 uses
path/filepath (current package)
match.go#L44: func Match(pattern, name string) (matched bool, err error) {
match.go#L245: if _, err := Match(pattern, ""); err != nil {
match.go#L341: matched, err := Match(pattern, n)
github.com/go-git/go-billy/v5/util
glob.go#L81: matched, err := filepath.Match(pattern, n)
github.com/go-git/go-git/v5/plumbing/format/gitignore
pattern.go#L92: if match, err := filepath.Match(p.pattern[0], name); err != nil {
pattern.go#L131: if match, err := filepath.Match(pattern, e); err != nil {
pattern.go#L142: if match, err := filepath.Match(pattern, path[0]); err != nil || !match {
golang.org/x/pkgsite/internal/frontend
styleguide.go#L199: if matched, err := filepath.Match("*.md", filepath.Base(path)); err != nil {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |