Home
last modified time | relevance | path

Searched refs:env_path (Results 1 – 25 of 365) sorted by relevance

12345678910>>...15

/dports/www/firefox/firefox-99.0/python/mozboot/mozboot/
H A Dmozconfig.py66 env_path = env.get("MOZCONFIG", None) or None
68 if env_path is not None:
69 env_path = Path(env_path)
71 if env_path is not None:
72 if not env_path.is_absolute():
80 if (Path(root) / env_path).exists()
115 env_path = existing[0] / env_path
122 if not env_path.is_file():
130 if env_path is None and len(existing) > 1:
138 if env_path is not None:
[all …]
/dports/www/firefox-esr/firefox-91.8.0/python/mozboot/mozboot/
H A Dmozconfig.py61 env_path = env.get("MOZCONFIG", None) or None
62 if env_path is not None:
63 if not os.path.isabs(env_path):
71 if os.path.exists(os.path.join(root, env_path))
106 env_path = os.path.join(existing[0], env_path)
107 elif not os.path.exists(env_path): # non-relative path
110 "does not exist: " + env_path
113 if not os.path.isfile(env_path):
121 if env_path is None and len(existing) > 1:
129 if env_path is not None:
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/python/mozboot/mozboot/
H A Dmozconfig.py61 env_path = env.get("MOZCONFIG", None) or None
62 if env_path is not None:
63 if not os.path.isabs(env_path):
71 if os.path.exists(os.path.join(root, env_path))
106 env_path = os.path.join(existing[0], env_path)
107 elif not os.path.exists(env_path): # non-relative path
110 "does not exist: " + env_path
113 if not os.path.isfile(env_path):
121 if env_path is None and len(existing) > 1:
129 if env_path is not None:
[all …]
/dports/science/py-asdf/asdf-2.8.1/compatibility_tests/
H A Dtest_file_compatibility.py81 def env_run(env_path, command, *args, **kwargs): argument
86 return subprocess.run([env_path/"bin"/command] + list(args), **kwargs).returncode == 0
89 def env_check_output(env_path, command, *args): argument
97 def get_supported_versions(env_path): argument
103 output = env_check_output(env_path, "python", "-c", script)
107 def get_installed_version(env_path): argument
113 return StrictVersion(env_check_output(env_path, "python", "-c", script))
125 def env_path(asdf_version, tmp_path_factory): function
155 def test_file_compatibility(asdf_version, env_path, tmpdir): argument
158 installed_version = get_installed_version(env_path)
[all …]
/dports/shells/xonsh/xonsh-0.7.9/xontrib/
H A Dvoxapi.py137 env_path = fspath(name)
140 if not self._check_reserved(env_path):
143 env_path,
166 env_path, bin_path = self[name]
184 venv.create(env_path, upgrade=True, **flags)
260 if env_path.startswith(self.venvdir):
261 name = env_path[len(self.venvdir):]
266 return env_path
319 env_path = self[name].env
321 if self[...].env == env_path:
[all …]
/dports/misc/snakemake/snakemake-6.12.1/snakemake/deployment/
H A Dconda.py234 env_path = self.path
257 return env_path
260 return env_path
281 if not os.path.exists(env_path):
288 return env_path
297 os.makedirs(env_path, exist_ok=True)
399 return env_path
528 def shellcmd(self, env_path, cmd): argument
534 env_path = env_path.replace("\\", "/")
538 def shellcmd_win(self, env_path, cmd): argument
[all …]
/dports/devel/py-remote-pdb/remote-pdb-2.1.0/ci/
H A Dbootstrap.py24 env_path = join(base_path, ".tox", "bootstrap")
26 bin_path = join(env_path, "Scripts")
28 bin_path = join(env_path, "bin")
29 if not exists(env_path):
32 print("Making bootstrap env in: {0} ...".format(env_path))
34 check_call([sys.executable, "-m", "venv", env_path])
37 check_call([sys.executable, "-m", "virtualenv", env_path])
39 check_call(["virtualenv", env_path])
/dports/devel/py-tblib/tblib-1.7.0/ci/
H A Dbootstrap.py24 env_path = join(base_path, ".tox", "bootstrap")
26 bin_path = join(env_path, "Scripts")
28 bin_path = join(env_path, "bin")
29 if not exists(env_path):
32 print("Making bootstrap env in: {0} ...".format(env_path))
34 check_call([sys.executable, "-m", "venv", env_path])
37 check_call([sys.executable, "-m", "virtualenv", env_path])
39 check_call(["virtualenv", env_path])
/dports/devel/py-lazy-object-proxy/lazy-object-proxy-1.6.0/ci/
H A Dbootstrap.py24 env_path = join(base_path, ".tox", "bootstrap")
26 bin_path = join(env_path, "Scripts")
28 bin_path = join(env_path, "bin")
29 if not exists(env_path):
32 print("Making bootstrap env in: {0} ...".format(env_path))
34 check_call([sys.executable, "-m", "venv", env_path])
37 check_call([sys.executable, "-m", "virtualenv", env_path])
39 check_call(["virtualenv", env_path])
/dports/www/trac-devel/Trac-1.5.3/trac/util/
H A Dtranslation.py75 def add_domain(domain, env_path, locale_dir): argument
90 'add_domain': lambda env_path, locale_dir: None,
140 def activate(self, locale, env_path=None): argument
152 if env_path:
180 self.activate(get_locale(), env_path)
310 def add_domain(domain, env_path, locale_dir): argument
313 def activate(locale, env_path=None): argument
314 translations.activate(locale, env_path)
328 def make_activable(get_locale, env_path=None): argument
397 def activate(locale, env_path=None): argument
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/rkv/src/bin/
H A Ddump.rs25 let mut env_path = None; in main() localVariable
42 if env_path.is_some() { in main()
45 env_path = Some(arg); in main()
49 let env_path = env_path.ok_or("must provide a path to the LMDB environment")?; in main() localVariable
50 let mut migrator = LmdbArchMigrator::new(Path::new(&env_path))?; in main()
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/rkv/src/bin/
H A Ddump.rs25 let mut env_path = None; in main() localVariable
42 if env_path.is_some() { in main()
45 env_path = Some(arg); in main()
49 let env_path = env_path.ok_or("must provide a path to the LMDB environment")?; in main() localVariable
50 let mut migrator = LmdbArchMigrator::new(Path::new(&env_path))?; in main()
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/rkv/src/bin/
H A Ddump.rs25 let mut env_path = None; in main() localVariable
42 if env_path.is_some() { in main()
45 env_path = Some(arg); in main()
49 let env_path = env_path.ok_or("must provide a path to the LMDB environment")?; in main() localVariable
50 let mut migrator = LmdbArchMigrator::new(Path::new(&env_path))?; in main()
/dports/devel/py-pytest-benchmark/pytest-benchmark-3.4.1/ci/
H A Dbootstrap.py25 env_path = join(base_path, ".tox", "bootstrap")
27 bin_path = join(env_path, "Scripts")
29 bin_path = join(env_path, "bin")
30 if not exists(env_path):
33 print("Making bootstrap env in: {0} ...".format(env_path))
35 check_call([sys.executable, "-m", "venv", env_path])
38 check_call([sys.executable, "-m", "virtualenv", env_path])
40 check_call(["virtualenv", env_path])
/dports/devel/py-pytest-cov/pytest-cov-2.9.0/ci/
H A Dbootstrap.py24 env_path = join(base_path, ".tox", "bootstrap")
26 bin_path = join(env_path, "Scripts")
28 bin_path = join(env_path, "bin")
29 if not exists(env_path):
32 print("Making bootstrap env in: {0} ...".format(env_path))
34 check_call([sys.executable, "-m", "venv", env_path])
37 check_call([sys.executable, "-m", "virtualenv", env_path])
39 check_call(["virtualenv", env_path])
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/rkv-0.10.2/src/bin/
H A Ddump.rs26 let mut env_path = None; in main() localVariable
43 if env_path.is_some() { in main()
46 env_path = Some(arg); in main()
50 let env_path = env_path.ok_or("must provide a path to the LMDB environment")?; in main() localVariable
51 let mut migrator: Migrator = Migrator::new(Path::new(&env_path))?; in main()
/dports/textproc/ripgrep-all/ripgrep-all-0.9.6/cargo-crates/rkv-0.10.4/src/bin/
H A Ddump.rs26 let mut env_path = None; in main() localVariable
43 if env_path.is_some() { in main()
46 env_path = Some(arg); in main()
50 let env_path = env_path.ok_or("must provide a path to the LMDB environment")?; in main() localVariable
51 let mut migrator: Migrator = Migrator::new(Path::new(&env_path))?; in main()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/rkv/src/bin/
H A Ddump.rs21 let mut env_path = None; in main() localVariable
38 if env_path.is_some() { in main()
41 env_path = Some(arg); in main()
45 let env_path = env_path.ok_or("must provide a path to the LMDB environment")?; in main() localVariable
46 let mut migrator: Migrator = Migrator::new(Path::new(&env_path))?; in main()
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/rkv-0.10.4/src/bin/
H A Ddump.rs26 let mut env_path = None; in main() localVariable
43 if env_path.is_some() { in main()
46 env_path = Some(arg); in main()
50 let env_path = env_path.ok_or("must provide a path to the LMDB environment")?; in main() localVariable
51 let mut migrator: Migrator = Migrator::new(Path::new(&env_path))?; in main()
/dports/lang/spidermonkey60/firefox-60.9.0/python/mozbuild/mozbuild/
H A Dmozconfig.py113 env_path = env.get('MOZCONFIG', None) or None
114 if env_path is not None:
115 if not os.path.isabs(env_path):
134 mozconfigs = [os.path.join(root, env_path)
147 env_path = os.path.join(existing[0], env_path)
151 'does not exist: ' + env_path)
153 if not os.path.isfile(env_path):
156 'non-file: ' + env_path)
162 if env_path is None and len(existing) > 1:
168 if env_path is not None:
[all …]
/dports/devel/tig/tig-2.5.4/src/
H A Dapps.c60 const char *env_path = getenv("PATH"); in app_diff_highlight_path_search() local
76 if (!env_path || !*env_path) in app_diff_highlight_path_search()
77 env_path = _PATH_DEFPATH; in app_diff_highlight_path_search()
81 env_path, in app_diff_highlight_path_search()
87 string_ncopy(env_path_plus, env_path, strlen(env_path)); in app_diff_highlight_path_search()
/dports/textproc/apertium/apertium-3.6.1/apertium/win32/
H A Drunner_skeleton.c42 char env_path[ENV_VAR_SIZE]; in main() local
68 strcpy(env_path, "PATH="); in main()
69 strcat(env_path, getenv("PATH")); in main()
70 strcat(env_path, ";"); in main()
71 strcat(env_path, base_path); in main()
72 _putenv(env_path); in main()
/dports/sysutils/pxp-agent/pxp-agent-1.15.16/acceptance/setup/common/
H A D070_Setup_Server_fixtures.rb13 env_path = ''
19 env_path = File.join(environmentpath, test_env)
20 on(master, "mkdir -p #{env_path}")
21 rsync_to(master, fixture_env, env_path)
28 "resource" => env_path
/dports/finance/gnucash/gnucash-4.9/libgnucash/core-utils/
H A Dgnc-environment.c100 gnc_environment_parse_one (const gchar *env_path) in gnc_environment_parse_one() argument
108 got_keyfile = g_key_file_load_from_file (keyfile, env_path, G_KEY_FILE_NONE, NULL); in gnc_environment_parse_one()
168 gchar *env_path; in gnc_environment_setup() local
209 env_path = g_build_filename (config_path, "environment", NULL); in gnc_environment_setup()
210 gnc_environment_parse_one(env_path); in gnc_environment_setup()
211 g_free (env_path); in gnc_environment_setup()
214 env_path = g_build_filename (config_path, "environment.local", NULL); in gnc_environment_setup()
215 gnc_environment_parse_one(env_path); in gnc_environment_setup()
216 g_free (env_path); in gnc_environment_setup()
/dports/sysutils/busybox/busybox-1.26.2/debianutils/
H A Dwhich.c33 const char *env_path; in which_main() local
36 env_path = getenv("PATH"); in which_main()
37 if (!env_path) in which_main()
38 env_path = bb_default_root_path; in which_main()
58 path = tmp = xstrdup(env_path); in which_main()

12345678910>>...15