Home
last modified time | relevance | path

Searched refs:env_info (Results 1 – 25 of 207) sorted by relevance

123456789

/dports/science/pnetcdf/parallel-netcdf-1.8.1/src/lib/
H A Dmpinetcdf.c323 if (env_info != MPI_INFO_NULL) { in ncmpi_create()
334 if (env_info != MPI_INFO_NULL) MPI_Info_free(&env_info); in ncmpi_create()
343 if (env_info != MPI_INFO_NULL) { in ncmpi_create()
387 if (env_info != MPI_INFO_NULL) MPI_Info_free(&env_info); in ncmpi_create()
404 if (env_info != MPI_INFO_NULL) MPI_Info_free(&env_info); in ncmpi_create()
528 if (env_info != MPI_INFO_NULL) { in ncmpi_open()
539 if (env_info != MPI_INFO_NULL) MPI_Info_free(&env_info); in ncmpi_open()
547 if (env_info != MPI_INFO_NULL) { in ncmpi_open()
562 if (env_info != MPI_INFO_NULL) MPI_Info_free(&env_info); in ncmpi_open()
574 if (env_info != MPI_INFO_NULL) MPI_Info_free(&env_info); in ncmpi_open()
[all …]
/dports/sysutils/conan/conan-1.44.0/conans/model/
H A Denv_info.py270 for pkg_name, env_info in dep_env_info.dependencies:
271 self.update(env_info, pkg_name)
277 env_info = None
282 if env_info:
283 ret.update(env_info, lib_name)
285 env_info = EnvInfo()
292 getattr(env_info, var_name).append(val)
295 if env_info:
296 ret.update(env_info, lib_name)
302 for name, env_info in self._dependencies_.items():
[all …]
H A Dconan_generator.py18 self._env_info = conanfile.env_info
39 def env_info(self): member in Generator
/dports/misc/libemos/libemos-4.5.9-Source/pbio/
H A Dextras.c33 long f_getenv_(char * env_string, char * env_info, in f_getenv_() argument
51 putfstr(env_info, e, len_env_info); in f_getenv_()
62 long f_getenv(char * env_string, char * env_info, in f_getenv() argument
65 return f_getenv_(env_string,env_info,len_env_string,len_env_info); in f_getenv()
/dports/science/py-pydicom/pydicom-2.2.2/pydicom/tests/
H A Dtest_env_info.py5 import pydicom.env_info
13 pydicom.env_info.main()
24 pydicom.env_info.main()
/dports/misc/hashdb/hashdb-3.1.0-8-g1da1b9f/src_libhashdb/
H A Dlmdb_helper.cpp268 MDB_envinfo env_info; in maybe_grow() local
269 int rc = mdb_env_info(env, &env_info); in maybe_grow()
292 if (env_info.me_mapsize / ms.ms_psize <= env_info.me_last_pgno + 10) { in maybe_grow()
303 size_t size = env_info.me_mapsize; in maybe_grow()
312 std::cout << "Growing DB " << env << " from " << env_info.me_mapsize in maybe_grow()
/dports/science/tfel-edf/tfel-3.2.1/
H A Dconanfile.py53 self.env_info.PATH.append(os.path.join(self.package_folder, "bin"))
55 self.env_info.LD_LIBRARY_PATH.append(os.path.join(self.package_folder, "lib"))
56 … self.env_info.PYTHONPATH.append(os.path.join(self.package_folder, "lib/python2.7/site-packages/"))
/dports/math/py-gym/gym-0.21.0/gym/wrappers/
H A Dmonitor.py280 env_info = {
284 env_info["env_id"] = self.env.spec.id
285 return env_info
359 env_info = collapse_env_infos(env_infos, training_dir)
360 return env_info
391 env_info = collapse_env_infos(env_infos, training_dir)
404 "env_info": env_info,
/dports/sysutils/cfengine317/cfengine-3.17.0/examples/
H A Dmustache_template_motd.cf33 bundle agent env_info
89 "count_updates": "$(env_info.count_updates)",
90 "contacts": env_info.admin_contact,
121 "env_info";
/dports/sysutils/cfengine-devel/core-d08ae9eff/examples/
H A Dmustache_template_motd.cf33 bundle agent env_info
89 "count_updates": "$(env_info.count_updates)",
90 "contacts": env_info.admin_contact,
121 "env_info";
/dports/sysutils/cfengine318/cfengine-3.18.1/examples/
H A Dmustache_template_motd.cf33 bundle agent env_info
89 "count_updates": "$(env_info.count_updates)",
90 "contacts": env_info.admin_contact,
121 "env_info";
/dports/sysutils/cfengine/cfengine-3.19.0/examples/
H A Dmustache_template_motd.cf33 bundle agent env_info
89 "count_updates": "$(env_info.count_updates)",
90 "contacts": env_info.admin_contact,
121 "env_info";
/dports/sysutils/cfengine319/cfengine-3.19.0/examples/
H A Dmustache_template_motd.cf33 bundle agent env_info
89 "count_updates": "$(env_info.count_updates)",
90 "contacts": env_info.admin_contact,
121 "env_info";
/dports/science/py-pydicom/pydicom-2.2.2/.github/ISSUE_TEMPLATE/
H A Dbug_report.md22 If you're using **pydicom 2 or later**, please use the `pydicom.env_info`
26 $ python -m pydicom.env_info
H A Dpixel_issue.md29 If you're using **pydicom 2 or later**, please use the `pydicom.env_info`
33 $ python -m pydicom.env_info
/dports/sysutils/conan/conan-1.44.0/conans/client/
H A Dinstaller.py25 from conans.model.env_info import EnvInfo
617 conan_file.deps_env_info.update(n.conanfile.env_info, n.ref.name)
624 env_info = EnvInfo()
625 env_info._values_ = n.conanfile.env_info._values_.copy()
627 env_info.DYLD_LIBRARY_PATH.extend(dep_cpp_info.lib_paths)
628 env_info.DYLD_FRAMEWORK_PATH.extend(dep_cpp_info.framework_paths)
629 env_info.LD_LIBRARY_PATH.extend(dep_cpp_info.lib_paths)
630 env_info.PATH.extend(dep_cpp_info.bin_paths)
631 conan_file.deps_env_info.update(env_info, n.ref.name)
648 conanfile.env_info = EnvInfo()
/dports/databases/db5/db-5.3.28/test/c/suites/
H A DTestChannel.c82 struct env_info { struct
184 struct env_info *info;
307 struct env_info *info;
342 struct env_info *info;
383 struct env_info *info;
747 ((struct env_info *)dbenv2->app_private)->rpts = &rpts; in TestChannelFeature()
874 struct env_info *info;
905 ct = ((struct env_info *)dbenv->app_private)->g->test;
983 ct = ((struct env_info *)dbenv->app_private)->g->test;
1026 ct = ((struct env_info *)dbenv->app_private)->g->test;
[all …]
/dports/databases/db18/db-18.1.40/test/c/suites/
H A DTestChannel.c82 struct env_info { struct
186 struct env_info *info;
379 struct env_info *info;
414 struct env_info *info;
455 struct env_info *info;
814 ((struct env_info *)dbenv2->app_private)->rpts = &rpts; in TestChannelFeature()
938 struct env_info *info;
969 ct = ((struct env_info *)dbenv->app_private)->g->test;
1047 ct = ((struct env_info *)dbenv->app_private)->g->test;
1090 ct = ((struct env_info *)dbenv->app_private)->g->test;
[all …]
/dports/mail/spamdyke/spamdyke-5.0.1/spamdyke/
H A Dsearch_fs.c371 int sub_examine_tcprules_entry(char *destination, int size_destination, char *env_info, int target_… in sub_examine_tcprules_entry() argument
414 if ((env_info != NULL) && in sub_examine_tcprules_entry()
415 (strcasecmp(tmp_buf, env_info) == 0)) in sub_examine_tcprules_entry()
556 char *env_info; in examine_tcprules_entry() local
577env_info = find_environment_variable(current_settings, current_settings->current_environment, ENVI… in examine_tcprules_entry()
579 …return_value = sub_examine_tcprules_entry(destination, size_destination, env_info, target_ip_ints,… in examine_tcprules_entry()
597 char *env_info; in search_tcprules_file() local
622env_info = find_environment_variable(current_settings, current_settings->current_environment, ENVI… in search_tcprules_file()
630 …sub_examine_tcprules_entry(destination, size_destination, env_info, target_ip_ints, tmp_buf, strle… in search_tcprules_file()
/dports/devel/qbs/qbs-src-1.21.0/tests/auto/blackbox/testdata/conanfile-probe/testlib/
H A Dconanfile.py24 self.env_info.ENV_VAR = "TESTLIB_ENV_VAL"
/dports/devel/gammaray/GammaRay-2.11.3/conan/ECM/
H A Dconanfile.py51 self.env_info.CMAKE_PREFIX_PATH.append(self.package_folder)
/dports/devel/gammaray/GammaRay-2.11.3/conan/KSyntaxHighlighting/
H A Dconanfile.py64 self.env_info.CMAKE_PREFIX_PATH.append(self.package_folder)
/dports/databases/py-sqlite3/Python-3.8.12/Lib/test/
H A Dtest_c_locale_coercion.py125 env_info = expected_lang, expected_lc_ctype, expected_lc_all
126 return dict(cls(fs_encoding, *stream_info, *env_info)._asdict())
/dports/databases/py-gdbm/Python-3.8.12/Lib/test/
H A Dtest_c_locale_coercion.py125 env_info = expected_lang, expected_lc_ctype, expected_lc_all
126 return dict(cls(fs_encoding, *stream_info, *env_info)._asdict())
/dports/lang/python37/Python-3.7.12/Lib/test/
H A Dtest_c_locale_coercion.py128 env_info = expected_lang, expected_lc_ctype, expected_lc_all
129 return dict(cls(fs_encoding, *stream_info, *env_info)._asdict())

123456789