/external/autotest/client/profilers/powertop/src/po/ |
D | zh.po | 20 "X-Poedit-Basepath: /home/john/packages/powertop\n" 21 "X-Poedit-SearchPath-0: /home/john/packages/powertop\n" 23 #: /home/john/packages/powertop/cpufreq.c:116 31 #: /home/john/packages/powertop/cpufreq.c:118 35 #: /home/john/packages/powertop/misctips.c:79 43 #: /home/john/packages/powertop/misctips.c:80 47 #: /home/john/packages/powertop/misctips.c:109 57 #: /home/john/packages/powertop/misctips.c:111 61 #: /home/john/packages/powertop/misctips.c:137 71 #: /home/john/packages/powertop/misctips.c:172 [all …]
|
/external/autotest/site_utils/lxc/ |
D | lxc.py | 103 def _install_package_precheck(packages): argument 105 packages installation should be skipped. 109 environment, chroot or a machine, has the desired packages installed 112 @param packages: A list of names of the packages to install. 120 'is skipped.', packages) 125 'skipped.', packages) 136 def _remove_banned_packages(packages, banned_packages): argument 137 """Filter out packages. 139 @param packages: A set of packages names that have been requested. 142 @return: A sanatized set of packages names to install. [all …]
|
/external/python/setuptools/setuptools/tests/ |
D | test_find_packages.py | 92 packages = find_packages(self.dist_dir) 93 assert packages == ['pkg', 'pkg.subpkg'] 97 packages = find_packages(self.dist_dir, exclude=('pkg.*',)) 98 assert packages == ['pkg'] 102 Excluding a parent package should not exclude child packages as well. 106 packages = find_packages(self.dist_dir, exclude=('pkg',)) 107 assert packages == ['pkg.subpkg'] 111 If include is specified, other packages should be excluded. 116 packages = find_packages(self.dist_dir, include=['other_pkg']) 117 assert packages == ['other_pkg'] [all …]
|
/external/libkmsxx/ |
D | .travis.yml | 18 packages: &packages 34 packages: [*packages, 'g++-4.8'] 41 packages: [*packages, 'g++-4.9'] 49 packages: [*packages, 'g++-5'] 56 packages: [*packages, 'g++-6'] 63 packages: [*packages, 'g++-7'] 70 packages: [*packages, 'clang-3.8']
|
/external/libyuv/files/ |
D | DEPS | 93 'packages': [ 111 'packages': [ 121 'packages': [ 135 'packages': [ 149 'packages': [ 191 'packages': [ 201 'packages': [ 223 'packages': [ 233 'packages': [ 243 'packages': [ [all …]
|
/external/libiio/src/cmake/ |
D | LinuxPackaging.cmake | 19 /usr/lib/python2.7/site-packages 33 option(DEB_DETECT_DEPENDENCIES "Detect dependencies for .deb packages" OFF) 44 message(STATUS "querying installed packages on system for dependancies") 50 set(PACKAGES "libc6") variable 52 set(PACKAGES "${PACKAGES} libaio") variable 55 set(PACKAGES "${PACKAGES} libavahi-client libavahi-common") variable 58 set(PACKAGES "${PACKAGES} libusb-1") variable 61 set(PACKAGES "${PACKAGES} libxml2") variable 64 set(PACKAGES "${PACKAGES} libserialport0") variable 68 string(REGEX REPLACE " " ";" PACKAGES ${PACKAGES}) [all …]
|
/external/python/parse_type/tasks/ |
D | release.py | 49 * https://packaging.python.org/tutorials/distributing-packages/ 70 [{x2}] Build packages (sdist, bdist_wheel via prepare) 71 [{x3}] Register and upload packages to testpypi repository (first) 72 [{x4}] Verify release is OK and packages from testpypi are usable 73 [{x5}] Register and upload packages to pypi repository 100 """Build packages for this release.""" 108 """Prepare the release: bump version, build packages, ...""" 113 packages = ensure_packages_exist(ctx, check_only=True) 114 print_packages(packages) 119 # """Register release (packages) in artifact-store/repository.""" [all …]
|
/external/catch2/ |
D | .travis.yml | 24 packages: ['clang-3.5'] 32 packages: ['clang-3.6'] 43 packages: ['lcov', 'clang-3.8'] 51 packages: ['clang-3.9'] 59 packages: ['clang-4.0'] 67 packages: ['clang-5.0'] 75 packages: ['clang-6.0'] 84 packages: ['g++-4.8'] 92 packages: ['g++-4.9'] 100 packages: ['g++-5'] [all …]
|
/external/cpuinfo/src/x86/mach/ |
D | init.c | 24 struct cpuinfo_package* packages = NULL; in cpuinfo_x86_mach_init() local 45 clusters = calloc(mach_topology.packages, sizeof(struct cpuinfo_cluster)); in cpuinfo_x86_mach_init() 48 mach_topology.packages * sizeof(struct cpuinfo_cluster), mach_topology.packages); in cpuinfo_x86_mach_init() 51 packages = calloc(mach_topology.packages, sizeof(struct cpuinfo_package)); in cpuinfo_x86_mach_init() 52 if (packages == NULL) { in cpuinfo_x86_mach_init() 53 cpuinfo_log_error("failed to allocate %zu bytes for descriptions of %"PRIu32" physical packages", in cpuinfo_x86_mach_init() 54 mach_topology.packages * sizeof(struct cpuinfo_package), mach_topology.packages); in cpuinfo_x86_mach_init() 65 const uint32_t threads_per_package = mach_topology.threads / mach_topology.packages; in cpuinfo_x86_mach_init() 66 const uint32_t cores_per_package = mach_topology.cores / mach_topology.packages; in cpuinfo_x86_mach_init() 67 for (uint32_t i = 0; i < mach_topology.packages; i++) { in cpuinfo_x86_mach_init() [all …]
|
/external/cpuinfo/src/mach/ |
D | topology.c | 33 int packages = 1; in cpuinfo_mach_detect_topology() local 35 size_t sizeof_packages = sizeof(packages); in cpuinfo_mach_detect_topology() 36 if (sysctlbyname("hw.packages", &packages, &sizeof_packages, NULL, 0) != 0) { in cpuinfo_mach_detect_topology() 37 cpuinfo_log_error("sysctlbyname(\"hw.packages\") failed: %s", strerror(errno)); in cpuinfo_mach_detect_topology() 38 } else if (packages <= 0) { in cpuinfo_mach_detect_topology() 39 cpuinfo_log_error("sysctlbyname(\"hw.packages\") returned invalid value %d", packages); in cpuinfo_mach_detect_topology() 40 packages = 1; in cpuinfo_mach_detect_topology() 44 …cpuinfo_log_debug("mach topology: packages = %d, cores = %d, threads = %d", packages, (int) cores,… in cpuinfo_mach_detect_topology() 46 .packages = (uint32_t) packages, in cpuinfo_mach_detect_topology()
|
/external/autotest/server/site_tests/ssp_PackageInstall/ |
D | ssp_PackageInstall.py | 14 """Tests that server tests can install packages inside containers.""" 17 def install_os_packages(self, packages): argument 20 @param packages: OS packages to be installed. 22 for package in packages: 27 def install_python_packages(self, packages): argument 30 @param packages: Python packages to be installed. 32 for package in packages: 48 any of the given packages failed to be installed.
|
/external/python/cpython2/Doc/library/ |
D | site.rst | 23 pair: site-packages; directory 28 :file:`lib/site-packages` (on Windows) or 29 :file:`lib/python{X.Y}/site-packages` and then :file:`lib/site-python` (on 52 a subdirectory :file:`/usr/local/lib/python{X.Y}/site-packages` with three 72 /usr/local/lib/pythonX.Y/site-packages/bar 73 /usr/local/lib/pythonX.Y/site-packages/foo 84 It is typically created by a system administrator in the site-packages 97 user site-packages directory (see below), which is part of ``sys.path`` unless 107 A list of prefixes for site-packages directories. 114 Flag showing the status of the user site-packages directory. ``True`` means [all …]
|
/external/python/cpython3/Doc/library/ |
D | site.rst | 29 pair: site-packages; directory 34 :file:`lib/site-packages` (on Windows) or 35 :file:`lib/python{X.Y}/site-packages` (on Unix and Macintosh). For each 45 it is also checked for site-packages (sys.base_prefix and 48 the key "include-system-site-packages" set to anything other than "true" 50 searched for site-packages; otherwise they will. 84 a subdirectory :file:`/usr/local/lib/python{X.Y}/site-packages` with three 104 /usr/local/lib/pythonX.Y/site-packages/bar 105 /usr/local/lib/pythonX.Y/site-packages/foo 116 It is typically created by a system administrator in the site-packages [all …]
|
/external/toolchain-utils/llvm_tools/ |
D | llvm_patch_management.py | 41 parser = argparse.ArgumentParser(description='Patch management for packages.') 50 # Add argument for which packages to manage their patches. 52 '--packages', 56 help='the packages to manage their patches (default: %(default)s)') 96 unique_packages = list(set(args_output.packages)) 98 # Duplicate packages were passed into the command line 99 if len(unique_packages) != len(args_output.packages): 100 raise ValueError('Duplicate packages were passed in: %s' % ' '.join( 101 args_output.packages)) 103 args_output.packages = unique_packages [all …]
|
/external/python/cpython3/Lib/idlelib/ |
D | pathbrowser.py | 44 def __init__(self, dir, packages=[]): argument 46 self.packages = packages 49 if not self.packages: 52 return self.packages[-1] + ": package" 59 packages = [] 64 packages.append((nn, name, file)) 65 packages.sort() 67 for nn, name, file in packages: 68 item = DirBrowserTreeItem(file, self.packages + [name]) 76 " Return true for directories that are packages."
|
/external/python/setuptools/tests/ |
D | test_pypi.py | 25 "packages from Pypi.") 29 """Collect the name of the top packages on Pypi.""" 30 packages = rpc_pypi('top_packages') 31 return packages[:limit] 74 Pypi will be queried to get the current list of top packages. 78 packages = get_top_packages(TOP) 79 packages = [name for name, downloads in packages] 81 packages = metafunc.config.option.package_name 82 metafunc.parametrize("package_name", packages)
|
/external/python/cpython2/Lib/idlelib/ |
D | PathBrowser.py | 41 def __init__(self, dir, packages=[]): argument 43 self.packages = packages 46 if not self.packages: 49 return self.packages[-1] + ": package" 56 packages = [] 61 packages.append((nn, name, file)) 62 packages.sort() 64 for nn, name, file in packages: 65 item = DirBrowserTreeItem(file, self.packages + [name])
|
/external/python/cpython3/Lib/tkinter/test/ |
D | runtktests.py | 6 Extensions also should live in packages following the same rule as above. 21 def get_tests_modules(basepath=this_dir_path, gui=True, packages=None): argument 23 and are inside packages found in the path starting at basepath. 25 If packages is specified it should contain package names that 37 if packages and pkg_name not in packages: 53 def get_tests(text=True, gui=True, packages=None): argument 63 for module in get_tests_modules(gui=gui, packages=packages):
|
/external/python/cpython2/Lib/lib-tk/test/ |
D | runtktests.py | 6 Extensions also should live in packages following the same rule as above. 23 def get_tests_modules(basepath=this_dir_path, gui=True, packages=None): argument 25 and are inside packages found in the path starting at basepath. 27 If packages is specified it should contain package names that want 39 if packages and pkg_name not in packages: 54 def get_tests(text=True, gui=True, packages=None): argument 64 for module in get_tests_modules(gui=gui, packages=packages):
|
/external/python/cpython3/Doc/tutorial/ |
D | venv.rst | 5 Virtual Environments and Packages 11 Python applications will often use packages and modules that don't 25 particular version of Python, plus a number of additional packages. 88 '~/envs/tutorial-env/lib/python3.5/site-packages'] 92 Managing Packages with pip 95 You can install, upgrade, and remove packages using a program called 96 :program:`pip`. By default ``pip`` will install packages from the Python 122 Installing collected packages: novas 134 Installing collected packages: requests 146 Installing collected packages: requests [all …]
|
/external/grpc-grpc/tools/interop_matrix/testcases/ |
D | node__master | 3 docker run -i --rm=true -w /var/local/git/grpc-node --net=host $docker_image bash -c "packages/grpc… 4 docker run -i --rm=true -w /var/local/git/grpc-node --net=host $docker_image bash -c "packages/grpc… 5 docker run -i --rm=true -w /var/local/git/grpc-node --net=host $docker_image bash -c "packages/grpc… 6 docker run -i --rm=true -w /var/local/git/grpc-node --net=host $docker_image bash -c "packages/grpc… 7 docker run -i --rm=true -w /var/local/git/grpc-node --net=host $docker_image bash -c "packages/grpc… 8 docker run -i --rm=true -w /var/local/git/grpc-node --net=host $docker_image bash -c "packages/grpc… 9 docker run -i --rm=true -w /var/local/git/grpc-node --net=host $docker_image bash -c "packages/grpc… 10 docker run -i --rm=true -w /var/local/git/grpc-node --net=host $docker_image bash -c "packages/grpc… 11 docker run -i --rm=true -w /var/local/git/grpc-node --net=host $docker_image bash -c "packages/grpc… 12 docker run -i --rm=true -w /var/local/git/grpc-node --net=host $docker_image bash -c "packages/grpc… [all …]
|
/external/lz4/ |
D | .travis.yml | 31 packages: 41 packages: 49 packages: 61 packages: 71 packages: 82 packages: 90 packages: 105 packages: 119 packages: 127 packages: [all …]
|
/external/python/cpython3/Tools/nuget/ |
D | build.bat | 12 set PACKAGES= variable 23 if "%~1" EQU "-p" (set PACKAGES=%PACKAGES% %~2) && shift && shift && goto CheckOpts variable 32 if defined PACKAGES set PACKAGES="/p:Packages=%PACKAGES%" variable 39 …%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x86 %OUTPUT% %PACKAGES% %PYTHON_… 48 …%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x64 %OUTPUT% %PACKAGES% %PYTHON_… 57 …%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=ARM %OUTPUT% %PACKAGES% %PYTHON_…
|
/external/brotli/ |
D | .travis.yml | 17 packages: 26 packages: 39 packages: 53 packages: 66 packages: 75 packages: 87 packages: 109 packages: 120 packages: 154 packages: [all …]
|
/external/autotest/utils/ |
D | build_externals.py | 9 python and installs them under our own autotest/site-packages/ directory. 26 # bring in site packages as well 32 # Where packages will be installed to relative to the top of the autotest tree. 33 INSTALL_DIR = 'site-packages' 35 # Installs all packages, even if the system already has the version required 39 # Want to add more packages to fetch, build and install? See the class 129 @param dest_dir: Directory the packages should be fetched into. 130 @param install_dir: Directory where packages will later installed. 162 def build_and_install_packages(packages, install_dir, argument 165 Builds and installs all packages into install_dir. [all …]
|