(name string, ignore watch.PathMatcher)
| 835 | } |
| 836 | |
| 837 | func shouldIgnore(name string, ignore watch.PathMatcher) bool { |
| 838 | shouldIgnore, _ := ignore.Matches(name) |
| 839 | // ignore files that match any ignore pattern |
| 840 | return shouldIgnore |
| 841 | } |
| 842 | |
| 843 | // gets the image creation time for a service |
| 844 | func (s *composeService) imageCreatedTime(ctx context.Context, project *types.Project, serviceName string) (time.Time, error) { |
no test coverage detected