Searched refs:package_path (Results 1 - 11 of 11) sorted by relevance
/third_party/python/Tools/scripts/ |
H A D | verify_ensurepip_wheels.py | 38 package_path = next(WHEEL_DIR.glob(f"{package_name}*.whl"), None) 39 if not package_path: 43 print(f"Verifying checksum for {package_path}.") 51 package_path, 61 print_error(package_path, f"Could not fetch JSON metadata for {package_name}.") 66 if package_path.name != release_info["filename"]: 71 print_error(package_path, f"No digest for {package_name} found from PyPI.") 75 actual_digest = hashlib.sha256(package_path.read_bytes()).hexdigest() 82 package_path, f"Failed to verify the checksum of the {package_name} wheel." 87 package_path, [all...] |
H A D | generate_stdlib_module_names.py | 77 package_path = os.path.join(STDLIB_PATH, name) 78 if not os.path.isdir(package_path): 81 for package_file in os.listdir(package_path)):
|
/third_party/jinja2/ |
H A D | loaders.py | 243 :param package_path: Directory within the imported package that 274 package_path: "str" = "templates", 277 package_path = os.path.normpath(package_path).rstrip(os.path.sep) 280 if package_path == os.path.curdir: 281 package_path = "" 282 elif package_path[:2] == os.path.curdir + os.path.sep: 283 package_path = package_path[2:] 285 self.package_path [all...] |
/third_party/skia/third_party/externals/libwebp/swig/ |
H A D | setup.py | 13 package_path = os.path.join(tmpdir, *package.split(".")) variable 14 os.makedirs(package_path) 22 shutil.copy2("libwebp.py", package_path)
|
/third_party/protobuf/python/docs/ |
H A D | generate_docs.py | 135 package_path = module_path.parent.relative_to(PYTHON_DIR) 136 if package_path == SOURCE_DIR: 140 package_name = package_path.as_posix().replace("/", ".")
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | loaders.py | 232 def __init__(self, package_name, package_path="templates", encoding="utf-8"): 242 self.package_path = package_path 246 p = "/".join((self.package_path,) + tuple(pieces)) 267 path = self.package_path
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | loaders.py | 220 def __init__(self, package_name, package_path='templates', 229 self.package_path = package_path 233 p = '/'.join((self.package_path,) + tuple(pieces)) 251 path = self.package_path
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | loaders.py | 232 def __init__(self, package_name, package_path="templates", encoding="utf-8"): 242 self.package_path = package_path 246 p = "/".join((self.package_path,) + tuple(pieces)) 267 path = self.package_path
|
/third_party/libabigail/tools/ |
H A D | abipkgdiff.cc | 918 /// @param package_path the path to the package to extract. 927 extract_rpm(const string& package_path, in extract_rpm() argument 934 << package_path in extract_rpm() 941 extracted_package_dir_path + " && rpm2cpio " + package_path + in extract_rpm() 963 /// @param package_path the path to the package to extract. 972 extract_deb(const string& package_path, in extract_deb() argument 979 << package_path in extract_deb() 985 package_path + " " + extracted_package_dir_path; in extract_deb() 1006 /// @param package_path the path to the archive to extract. 1015 extract_tar(const string& package_path, in extract_tar() argument [all...] |
/third_party/gn/infra/recipes/ |
H A D | gn.py | 309 package_path=cipd_pkg_file,
|
/third_party/vulkan-loader/loader/ |
H A D | loader.c | 2954 char *package_path = NULL; in read_data_files_in_search_paths() local 3062 package_path = windows_get_app_package_manifest_path(inst); in read_data_files_in_search_paths() 3109 if (NULL != package_path) { in read_data_files_in_search_paths() 3110 search_path_size += determine_data_file_path_size(package_path, 0) + 2; in read_data_files_in_search_paths() 3174 if (NULL != package_path) { 3175 copy_data_file_info(package_path, NULL, 0, &cur_path_ptr); 3319 loader_instance_heap_free(inst, package_path);
|
Completed in 17 milliseconds