Home
last modified time | relevance | path

Searched refs:extra_files (Results 1 – 25 of 1325) sorted by relevance

12345678910>>...53

/dports/www/py-django-pipeline/django-pipeline-1.6.14/pipeline/
H A Dforms.py23 def __init__(self, get_media_files_func, media_cls, extra_files): argument
39 self._extra_files = extra_files
148 def _get_css_files(cls, extra_files): argument
169 extra_files=extra_files.get(media_target,
174 def _get_js_files(cls, extra_files): argument
190 extra_files=extra_files)
193 extra_files): argument
218 source_files = list(extra_files)
/dports/games/edge/Edge-1.35-source/glbsp/cmdline/
H A Dmain.c271 if (info.extra_files) in main()
277 if (info.input_file && info.extra_files[0] && ! info.extra_files[1] && in main()
278 FileExists(info.input_file) && ! FileExists(info.extra_files[0])) in main()
281 "Maybe you forgot -o)\n", info.extra_files[0]); in main()
290 for (ext_j = 0; info.extra_files[ext_j]; ext_j++) in main()
292 if (FileExists(info.extra_files[ext_j])) in main()
296 info.extra_files[ext_j]); in main()
321 if (! info.extra_files || ! info.extra_files[extra_idx]) in main()
329 info.input_file = GlbspStrDup(info.extra_files[extra_idx]); in main()
/dports/games/glbsp/glbsp-2.20/cmdline/
H A Dmain.c277 if (info.extra_files) in main()
283 if (info.input_file && info.extra_files[0] && ! info.extra_files[1] && in main()
284 FileExists(info.input_file) && ! FileExists(info.extra_files[0])) in main()
287 "Maybe you forgot -o)\n", info.extra_files[0]); in main()
296 for (ext_j = 0; info.extra_files[ext_j]; ext_j++) in main()
298 if (FileExists(info.extra_files[ext_j])) in main()
302 info.extra_files[ext_j]); in main()
327 if (! info.extra_files || ! info.extra_files[extra_idx]) in main()
335 info.input_file = GlbspStrDup(info.extra_files[extra_idx]); in main()
/dports/lang/ghc/ghc-8.10.7/libraries/hpc/tests/simple/tixs/
H A Dtest.T7 test('hpc_report_001', extra_files(['.hpc/', 'hpc_sample.tix']), run_command,
9 test('hpc_report_002', extra_files(['.hpc/', 'hpc_sample.tix']), run_command,
11 test('hpc_report_003', extra_files(['.hpc/', 'hpc_sample.tix']), run_command,
23 test('hpc_markup_001', extra_files(['.hpc/', 'hpc001.hs', 'hpc_sample.tix']), run_command,
45 extra_files(['.hpc/', 'hpc001.hs', 'hpc_sample.tix', 'sample_overlay.ovr']),
53 extra_files(['.hpc/', 'hpc001.hs', 'hpc_sample.tix', 'sample_overlay.ovr']),
61 extra_files(['.hpc/', 'hand_overlay.ovr', 'hpc001.hs', 'hpc_sample.tix']),
70 test('T9619', [extra_files(['.hpc', '.hpc.copy', 'hpc_sample.tix']),
76 test('T10529a', [extra_files(['hpc_sample_non_existing_module.tix']),
79 test('T10529b', [extra_files(['.hpc/', 'hpc_sample_incompatible_hash.tix']),
[all …]
/dports/lang/ghc/ghc-8.10.7/libraries/hpc/tests/raytrace/tixs/
H A Dtest.T3 test('hpc_report_multi_001', extra_files(['.hpc/', 'hpc_sample.tix']), run_command,
5 test('hpc_report_multi_002', extra_files(['.hpc/', 'hpc_sample.tix']), run_command,
7 test('hpc_report_multi_003', extra_files(['.hpc/', 'hpc_sample.tix']), run_command,
10 test('hpc_markup_multi_001', extra_files(['../Geometry.hs', '.hpc/', 'hpc_sample.tix']), run_comman…
13 test('hpc_markup_multi_002', extra_files(['../CSG.hs', '../Construct.hs', '../Data.hs', '../Eval.hs…
16 test('hpc_markup_multi_003', extra_files(['../CSG.hs', '../Construct.hs', '../Data.hs', '../Eval.hs…
20 test('hpc_show_multi_001', extra_files(['.hpc/', 'hpc_sample.tix']), run_command,
22 test('hpc_show_multi_002', extra_files(['.hpc/', 'hpc_sample.tix']), run_command,
/dports/www/firefox-esr/firefox-91.8.0/python/mozbuild/mozbuild/action/
H A Dmake_dmg.py29 extra_files = []
31 extra_files.append((options.dsstore, ".DS_Store"))
33 extra_files.append((options.background, ".background/background.png"))
35 extra_files.append((options.icon, ".VolumeIcon.icns"))
44 dmg.create_dmg(options.inpath, options.dmgfile, volume_name, extra_files)
/dports/www/firefox/firefox-99.0/python/mozbuild/mozbuild/action/
H A Dmake_dmg.py29 extra_files = []
31 extra_files.append((options.dsstore, ".DS_Store"))
33 extra_files.append((options.background, ".background/background.png"))
35 extra_files.append((options.icon, ".VolumeIcon.icns"))
44 dmg.create_dmg(options.inpath, options.dmgfile, volume_name, extra_files)
/dports/mail/thunderbird/thunderbird-91.8.0/python/mozbuild/mozbuild/action/
H A Dmake_dmg.py29 extra_files = []
31 extra_files.append((options.dsstore, ".DS_Store"))
33 extra_files.append((options.background, ".background/background.png"))
35 extra_files.append((options.icon, ".VolumeIcon.icns"))
44 dmg.create_dmg(options.inpath, options.dmgfile, volume_name, extra_files)
/dports/www/py-werkzeug/Werkzeug-2.0.2/src/werkzeug/
H A D_reloader.py52 extra_files: t.Set[str], exclude_patterns: t.Set[str]
64 for path in chain(list(sys.path), extra_files):
94 extra_files: t.Set[str], exclude_patterns: t.Set[str]
102 for name in chain(list(sys.path), extra_files):
206 extra_files: t.Optional[t.Iterable[str]] = None,
210 self.extra_files: t.Set[str] = {os.path.abspath(x) for x in extra_files or ()}
270 for name in chain(_find_stat_paths(self.extra_files, self.exclude_patterns)):
310 extra_patterns = [p for p in self.extra_files if not os.path.isdir(p)]
348 for path in _find_watchdog_paths(self.extra_files, self.exclude_patterns):
403 extra_files: t.Optional[t.Iterable[str]] = None,
[all …]
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/docker/utils/
H A Dbuild.py20 extra_files = []
25 extra_files = [
31 root=root, fileobj=fileobj, gzip=gzip, extra_files=extra_files
65 extra_files=None): argument
66 extra_files = extra_files or []
72 extra_names = set(e[0] for e in extra_files)
106 for name, contents in extra_files:
/dports/sysutils/py-docker/docker-5.0.3/docker/utils/
H A Dbuild.py18 extra_files = []
23 extra_files = [
29 root=root, fileobj=fileobj, gzip=gzip, extra_files=extra_files
63 extra_files=None): argument
64 extra_files = extra_files or []
70 extra_names = {e[0] for e in extra_files}
104 for name, contents in extra_files:
/dports/audio/picard/picard-release-2.6.2/test/
H A Dtest_emptydir.py33 def create_temp_dir(self, extra_files=(), extra_dirs=(), ignore_errors=False): argument
35 for f in extra_files:
49 tempdir = self.create_temp_dir(extra_files=emptydir.JUNK_FILES)
54 tempdir = self.create_temp_dir(extra_files=['.notempty'])
60 tempdir = self.create_temp_dir(extra_files=ignored_files)
83 tempdir = self.create_temp_dir(extra_files=emptydir.JUNK_FILES, ignore_errors=True)
/dports/net/py-ldap/python-ldap-3.4.0/
H A Dsetup.py29 extra_files = [] variable in OpenLDAP2
44 for i in range(len(LDAP_CLASS.extra_files)):
45 destdir, origfiles = LDAP_CLASS.extra_files[i].split(':')
47 LDAP_CLASS.extra_files[i]=(destdir, origfileslist)
159 data_files = LDAP_CLASS.extra_files,
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/werkzeug/
H A D_reloader.py43 def _find_observable_paths(extra_files=None):
50 for filename in extra_files or ():
153 def __init__(self, extra_files=None, interval=1):
154 self.extra_files = set(os.path.abspath(x) for x in extra_files or ())
202 for filename in chain(_iter_module_files(), self.extra_files):
226 if filename in self.extra_files:
273 paths = _find_observable_paths(self.extra_files)
325 def run_with_reloader(main_func, extra_files=None, interval=1, reloader_type="auto"):
329 reloader = reloader_loops[reloader_type](extra_files, interval)
/dports/www/moinmoin/moin-1.9.11/MoinMoin/support/werkzeug/
H A D_reloader.py43 def _find_observable_paths(extra_files=None): argument
50 for filename in extra_files or ():
153 def __init__(self, extra_files=None, interval=1): argument
154 self.extra_files = set(os.path.abspath(x) for x in extra_files or ())
202 for filename in chain(_iter_module_files(), self.extra_files):
226 if filename in self.extra_files:
273 paths = _find_observable_paths(self.extra_files)
325 def run_with_reloader(main_func, extra_files=None, interval=1, reloader_type="auto"): argument
329 reloader = reloader_loops[reloader_type](extra_files, interval)
/dports/games/glbsp/glbsp-2.20/
H A Dglbsp.c99 if (! info->extra_files) in AddExtraFile()
101 info->extra_files = (const char **) in AddExtraFile()
104 info->extra_files[0] = str; in AddExtraFile()
105 info->extra_files[1] = NULL; in AddExtraFile()
110 while (info->extra_files[count]) in AddExtraFile()
117 info->extra_files = (const char **) UtilRealloc((void *)info->extra_files, in AddExtraFile()
121 info->extra_files[count] = str; in AddExtraFile()
122 info->extra_files[count+1] = NULL; in AddExtraFile()
/dports/games/edge/Edge-1.35-source/glbsp/src/
H A Dglbsp.c99 if (! info->extra_files) in AddExtraFile()
101 info->extra_files = (const char **) in AddExtraFile()
104 info->extra_files[0] = str; in AddExtraFile()
105 info->extra_files[1] = NULL; in AddExtraFile()
110 while (info->extra_files[count]) in AddExtraFile()
117 info->extra_files = (const char **) UtilRealloc((void *)info->extra_files, in AddExtraFile()
121 info->extra_files[count] = str; in AddExtraFile()
122 info->extra_files[count+1] = NULL; in AddExtraFile()
/dports/games/vavoom/vavoom-1.33/utils/glbsp/
H A Dglbsp.c99 if (! info->extra_files) in AddExtraFile()
101 info->extra_files = (const char **) in AddExtraFile()
104 info->extra_files[0] = str; in AddExtraFile()
105 info->extra_files[1] = NULL; in AddExtraFile()
110 while (info->extra_files[count]) in AddExtraFile()
117 info->extra_files = (const char **) UtilRealloc((void *)info->extra_files, in AddExtraFile()
121 info->extra_files[count] = str; in AddExtraFile()
122 info->extra_files[count+1] = NULL; in AddExtraFile()
/dports/devel/py-pbr/pbr-5.5.0/pbr/
H A Dextra_files.py27 def set_extra_files(extra_files): argument
29 for filename in extra_files:
35 _extra_files[:] = extra_files[:]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ppapi/tests/
H A Dcreate_nonsfi_test_nmf.py48 def BuildNmfMap(root_path, program, arch, extra_files): argument
60 if extra_files:
62 for named_file in extra_files:
95 args.program, args.arch, args.extra_files)
/dports/devel/py-behave/behave-1.2.6/tasks/
H A D_tasklet_cleanup.py183 extra_files = ctx.clean.extra_files or []
186 if extra_files:
187 files.extend(extra_files)
203 cleanup_files(ctx.clean_all.extra_files or [], dry_run=dry_run)
/dports/devel/py-flit-core/flit_core-3.5.1/flit_core/
H A Dsdist.py75 extra_files, include_patterns=(), exclude_patterns=()): argument
81 self.extra_files = extra_files
93 extra_files = [ini_path.name] + ini_info.referenced_files
96 ini_info.entrypoints, extra_files, ini_info.sdist_include_patterns,
118 ] + self.extra_files
142 self.extra_files + [str(self.module.file.relative_to(self.cfgdir))]
/dports/devel/py-flit/flit-3.5.1/flit_core/flit_core/
H A Dsdist.py75 extra_files, include_patterns=(), exclude_patterns=()): argument
81 self.extra_files = extra_files
93 extra_files = [ini_path.name] + ini_info.referenced_files
96 ini_info.entrypoints, extra_files, ini_info.sdist_include_patterns,
118 ] + self.extra_files
142 self.extra_files + [str(self.module.file.relative_to(self.cfgdir))]
/dports/textproc/py-parse-type/parse_type-0.5.6/tasks/
H A D_tasklet_cleanup.py74 ctx.cleanup.extra_files.extend(ctx.clean.extra_files or [])
79 ctx.cleanup_all.extra_files.extend(ctx.clean_all.extra_files or [])
208 files.extend(ctx.cleanup.extra_files or [])
225 files.extend(ctx.config.cleanup_all.extra_files or [])
/dports/lang/mono/mono-5.10.1.57/mcs/class/Microsoft.Build.Tasks/Microsoft.Build.Tasks/
H A DResolveManifestFiles.cs37 ITaskItem [] extra_files; field in Microsoft.Build.Tasks.ResolveManifestFiles
63 get { return extra_files; }
64 set { extra_files = value; }

12345678910>>...53