MCPcopy
hub / github.com/docker/compose / MatchesEntireDir

Method MatchesEntireDir

pkg/watch/notify.go:126–134  ·  view source on GitHub ↗
(f string)

Source from the content-addressed store, hash-verified

124}
125
126func (c CompositePathMatcher) MatchesEntireDir(f string) (bool, error) {
127 for _, t := range c.Matchers {
128 matches, err := t.MatchesEntireDir(f)
129 if matches || err != nil {
130 return matches, err
131 }
132 }
133 return false, nil
134}
135
136var _ PathMatcher = CompositePathMatcher{}

Callers

nothing calls this directly

Calls 1

MatchesEntireDirMethod · 0.65

Tested by

no test coverage detected