Lines Matching full:glob
82 globs_list = [glob for glob in globs.split(' ') if glob]
135 # glob using git
139 def git_glob(glob): argument
141 if glob in gg_cache:
142 return gg_cache[glob]
145 'git', 'ls-files', os.path.join(git_root, glob)
147 gg_cache[glob] = r
153 # build a table of glob --> owners
155 for glob in directive.globs or ['**']:
156 if glob not in globs:
157 globs[glob] = []
158 if directive.who not in globs[glob]:
159 globs[glob].append(directive.who)
223 for glob, owners in list(globs.items()):
226 files = git_glob(full_dir(head.dir, glob))
239 (full_dir(head.dir, glob), ' '.join(owners)))
240 written_globs.append((glob, owners, head.dir))