Home
last modified time | relevance | path

Searched refs:config_path (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/external/google-cloud-java/owl-bot-postprocessor/synthtool/gcp/
Ddiscogapic_generator.py55 self, service, version, language, config_path=None, artman_output_name=None argument
79 if config_path is None:
80 config_path = (
83 elif Path(config_path).is_absolute():
84 config_path = Path(config_path).relative_to("/")
86 config_path = Path("gapic/google") / service / Path(config_path)
88 if not (self.discovery_artifact_manager / config_path).exists():
97 config_path,
Dgapic_generator.py69 config_path=None, argument
108 if config_path is None:
109 config_path = (
112 elif Path(config_path).is_absolute():
113 config_path = Path(config_path).relative_to("/")
115 config_path = Path("google/cloud") / service / Path(config_path)
117 if not (googleapis / config_path).exists():
133 config_path,
154 source_dir = googleapis / config_path.parent / version
182 googleapis_service_dir = googleapis / config_path.parent
[all …]
/external/python/google-auth-library-python/tests/
Dtest__cloud_sdk.py115 config_path = "config_path"
116 get_config_dir.return_value = config_path
119 config_path, _cloud_sdk._CREDENTIALS_FILENAME
126 config_path = _cloud_sdk.get_config_path()
127 assert config_path == config_path_sentinel
134 config_path = _cloud_sdk.get_config_path()
136 assert os.path.split(config_path) == ("~/.config", _cloud_sdk._CONFIG_DIRECTORY)
144 config_path = _cloud_sdk.get_config_path()
146 assert os.path.split(config_path) == (appdata, _cloud_sdk._CONFIG_DIRECTORY)
154 config_path = _cloud_sdk.get_config_path()
[all …]
/external/executorch/examples/mediatek/shell_scripts/
Dexport_llama.sh10 config_path=Llama-3.2-3B-Instruct/config.json
14 config_path=Llama-3.2-1B-Instruct/config.json
18 config_path=llama3-8B-instruct/config.json
22 config_path=llama2-7B-chat/config.json
34 echo "Config Path: $config_path"
43 models/llm_models/weights/${config_path} \
/external/tpm2-tss/test/integration/
Dmain-fapi.c69 char *config_path = NULL; in main() local
214 size = asprintf(&config_path, "%s/fapi-config.json", tmpdir); in main()
222 config_file = fopen(config_path, "w"); in main()
225 perror(config_path); in main()
233 perror(config_path); in main()
239 size = asprintf(&config_env, "TSS2_FAPICONF=%s", config_path); in main()
279 if (config_path) free(config_path); in main()
/external/chromiumos-config/bin/
Dtransform_config_enums15 readonly config_path="${output_dir}/generated/config.jsonproto"
22 --input_config="${config_path}" \
23 --output_config="${config_path}"
/external/sdv/vsomeip/third_party/boost/config/tools/
Dgenerate.cpp27 fs::path config_path; variable
51 fs::ifstream ifs(config_path / "config_info.cpp"); in write_config_info()
73 fs::ofstream ofs(config_path / "config_info.cpp"); in write_config_info()
80 fs::ofstream ofs(config_path / "config_test.cpp"); in write_config_test()
98 fs::ofstream ofs(config_path / "all" / "Jamfile.v2"); in write_jamfile_v2()
190 fs::ofstream ofs(config_path / ".." / "checks" / "test_case.cpp"); in write_build_tests()
201 fs::ofstream ofs(config_path / ".." / "checks" / "Jamfile.v2"); in write_build_check_jamfile()
346 fs::ofstream ofs(config_path / ".." / "include" / "boost" / "config" / filename); in write_cxxNN_asserts()
367 …fs::ofstream ofs(config_path / ".." / "include" / "boost" / "config" / "detail" / "cxx_composite.h… in write_cxxNN_composite()
409 fs::ofstream ofs(config_path / ".." / "checks" / "std" / (test_name + ".cpp")); in write_std_check()
[all …]
/external/wpa_supplicant_8/hostapd/aidl/tests/
Dunittests.cpp188 std::string config_path = WriteHostapdConfig("wlan42", mWlan42_tethered_config, "", false); in TEST_F() local
190 EXPECT_EQ(expected_path, config_path); in TEST_F()
198 std::string config_path = WriteHostapdConfig("wlan42", mWlan42_tethered_config, "", false); in TEST_F() local
200 EXPECT_EQ(expected_path, config_path); in TEST_F()
206 std::string config_path = WriteHostapdConfig("wlan42", mWlan42_tethered_config, "", false); in TEST_F() local
208 EXPECT_EQ(expected_path, config_path); in TEST_F()
/external/skia/gn/
Dgn_to_bp.py733 def write_android_config(config_path, defines, isNDKConfig = False): argument
734 gn_to_bp_utils.WriteUserConfig(config_path, defines)
735 append_to_file(config_path, '''
739 disallow_platforms(config_path, 'ANDROID')
742 append_to_file(config_path, '''
749 def write_config(config_path, defines, platform): argument
750 gn_to_bp_utils.WriteUserConfig(config_path, defines)
751 append_to_file(config_path, '''
760 disallow_platforms(config_path, platform)
/external/pigweed/pw_env_setup/py/pw_env_setup/
Dconfig_file.py80 config_path = path_from_runfiles()
83 config_path = path(env=env)
85 if not os.path.isfile(config_path):
94 with open(config_path, 'r') as file:
/external/vboot_reference/scripts/image_signing/
Densure_no_nonrelease_files.sh62 local config_path="${rootfs}/etc/chrome_dev.conf"
63 local matches=$(grep -s "^[^#]" "${config_path}")
65 error "Found commands in ${config_path}:"
/external/webrtc/rtc_tools/rtp_generator/
Dmain.cc31 const std::string config_path = absl::GetFlag(FLAGS_input_config); in main() local
34 if (rtp_dump_path.empty() || config_path.empty()) { in main()
39 webrtc::ParseRtpGeneratorOptionsFromFile(config_path); in main()
/external/cronet/stable/net/test/spawned_test_server/
Dremote_test_server.cc74 base::FilePath config_path = GetTestServerConfigFilePath(); in GetSpawnerUrlBase()
76 if (!base::PathExists(config_path)) in GetSpawnerUrlBase()
80 if (!ReadFileToString(config_path, &config_json)) in GetSpawnerUrlBase()
81 LOG(FATAL) << "Failed to read " << config_path.value(); in GetSpawnerUrlBase()
85 LOG(FATAL) << "Failed to parse " << config_path.value(); in GetSpawnerUrlBase()
/external/cronet/tot/net/test/spawned_test_server/
Dremote_test_server.cc74 base::FilePath config_path = GetTestServerConfigFilePath(); in GetSpawnerUrlBase()
76 if (!base::PathExists(config_path)) in GetSpawnerUrlBase()
80 if (!ReadFileToString(config_path, &config_json)) in GetSpawnerUrlBase()
81 LOG(FATAL) << "Failed to read " << config_path.value(); in GetSpawnerUrlBase()
85 LOG(FATAL) << "Failed to parse " << config_path.value(); in GetSpawnerUrlBase()
/external/trusty/arm-trusted-firmware/tools/tlc/tests/
Dconftest.py43 config_path = tmpdir.join("config.yaml")
56 with open(config_path, "w") as f:
59 return config_path
/external/cronet/stable/build/android/
Dlighttpd_server.py50 config_path=None, error_log=None, access_log=None): argument
60 self.config_path = config_path or self._Mktmp('config')
90 with codecs.open(self.config_path, 'w', 'utf-8') as f:
100 ['-D', '-f', self.config_path,
/external/cronet/tot/build/android/
Dlighttpd_server.py50 config_path=None, error_log=None, access_log=None): argument
60 self.config_path = config_path or self._Mktmp('config')
90 with codecs.open(self.config_path, 'w', 'utf-8') as f:
100 ['-D', '-f', self.config_path,
/external/autotest/utils/side_effects/
Dconfig_loader.py29 config_path = os.path.join(results_dir, _SIDE_EFFECTS_CONFIG_FILE)
31 if not os.path.exists(config_path):
34 with open(config_path, 'r') as config_file:
/external/jsoncpp/devtools/
Dbatchbuild.py111 def load_build_variants_from_config(config_path): argument
112 with open(config_path, 'rb') as fconfig:
250 for config_path in config_paths:
251 if not os.path.isfile(config_path):
252 parser.error("Can not read: %r" % config_path)
256 for config_path in config_paths:
257 build_descs_by_axis = load_build_variants_from_config(config_path)
/external/grpc-grpc/src/python/grpcio_observability/grpc_observability/
D_observability_config.py117 config_path = os.getenv(GRPC_GCP_OBSERVABILITY_CONFIG_FILE_ENV)
118 if config_path:
119 with open(config_path, "r") as f:
/external/fmtlib/support/
Dmkdocs39 config_path = os.path.join(support_dir, 'mkdocs.yml') variable
59 shutil.copyfile(config_path, config_build_path)
75 args += ['-f', config_path]
/external/ot-br-posix/script/reference-device/
Ddhcp6_pd_daemon.py52 def restart_dhcpcd_service(config_path): argument
53 if not os.path.isfile(config_path):
57 subprocess.run(["cp", config_path, DHCP_CONFIG_PATH], check=True)
/external/chromiumos-config/payload_utils/checker/
Dio_utils_test.py31 self.config_path = os.path.join(repo_path, 'generated', 'config.jsonproto')
34 with open(self.config_path, 'w', encoding='utf-8') as f:
55 self.assertEqual(io_utils.read_config(self.config_path), self.config)
/external/mesa3d/meson_to_hermetic/templates/
Dgenerate_python_build.txt15 config_path = ''
26 config_path = value
28 load_meson_data(config_path)
/external/cronet/stable/testing/libfuzzer/tests/
Dcheck_fuzzer_config.py18 config_path = os.path.join(os.path.dirname(sys.argv[0]), sys.argv[1]) variable
20 fuzzer_config.read(config_path)

12345678910>>...15