Searched full:packages (Results 1 – 25 of 1611) sorted by relevance
12345678910>>...65
... /socks.py pip/_vendor/requests/packages/urllib3/packages/__init__.py pip/ ...
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:11631 #: /home/john/packages/powertop/cpufreq.c:11835 #: /home/john/packages/powertop/misctips.c:7943 #: /home/john/packages/powertop/misctips.c:8047 #: /home/john/packages/powertop/misctips.c:10957 #: /home/john/packages/powertop/misctips.c:11161 #: /home/john/packages/powertop/misctips.c:13771 #: /home/john/packages/powertop/misctips.c:172[all …]
156 def _install_package_precheck(packages): argument158 packages installation should be skipped.162 environment, chroot or a machine, has the desired packages installed165 @param packages: A list of names of the packages to install.173 'is skipped.', packages)178 'skipped.', packages)191 def install_packages(packages=[], python_packages=[], force_latest=False): argument200 @param packages: A list of names of the packages to install.201 @param python_packages: A list of names of the python packages to install213 if not _install_package_precheck(packages or python_packages):[all …]
39 RewriteCond /usr/lib/python2.7/site-packages/autotest/frontend/frontend.wsgi -f40 …RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.7/site-packages/autotest/frontend/frontend…42 RewriteCond /usr/lib/python2.6/site-packages/autotest/frontend/frontend.wsgi -f43 …RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.6/site-packages/autotest/frontend/frontend…45 RewriteCond /usr/lib/python2.5/site-packages/autotest/frontend/frontend.wsgi -f46 …RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.5/site-packages/autotest/frontend/frontend…48 RewriteCond /usr/lib/python2.4/site-packages/autotest/frontend/frontend.wsgi -f49 …RewriteRule ^/(afe|new_tko)/server(.*) /usr/lib/python2.4/site-packages/autotest/frontend/frontend…80 # Force our own site-packages to be loaded by mod_python prior to81 # mod_python's system python site-packages directory.[all …]
37 # libraries on python site-packages. Covers python versions 2.4 through 2.7.38 RewriteCond /usr/lib/python2.7/site-packages/autotest/tko -d39 RewriteRule ^/tko(.*) /usr/lib/python2.7/site-packages/autotest/tko/$141 RewriteCond /usr/lib/python2.6/site-packages/autotest/tko -d42 RewriteRule ^/tko(.*) /usr/lib/python2.6/site-packages/autotest/tko/$144 RewriteCond /usr/lib/python2.5/site-packages/autotest/tko -d45 RewriteRule ^/tko(.*) /usr/lib/python2.5/site-packages/autotest/tko/$147 RewriteCond /usr/lib/python2.4/site-packages/autotest/tko -d48 RewriteRule ^/tko(.*) /usr/lib/python2.4/site-packages/autotest/tko/$1
29 pair: site-packages; directory34 :file:`lib/site-packages` (on Windows) or35 :file:`lib/python{X.Y}/site-packages` (on Unix and Macintosh). For each45 it is also checked for site-packages (sys.base_prefix and48 the key "include-system-site-packages" set to anything other than "false"50 searched for site-packages; otherwise they won't.67 a subdirectory :file:`/usr/local/lib/python{X.Y}/site-packages` with three87 /usr/local/lib/pythonX.Y/site-packages/bar88 /usr/local/lib/pythonX.Y/site-packages/foo99 It is typically created by a system administrator in the site-packages[all …]
23 pair: site-packages; directory28 :file:`lib/site-packages` (on Windows) or29 :file:`lib/python{X.Y}/site-packages` and then :file:`lib/site-python` (on52 a subdirectory :file:`/usr/local/lib/python{X.Y}/site-packages` with three72 /usr/local/lib/pythonX.Y/site-packages/bar73 /usr/local/lib/pythonX.Y/site-packages/foo84 It is typically created by a system administrator in the site-packages97 user site-packages directory (see below), which is part of ``sys.path`` unless107 A list of prefixes for site-packages directories.114 Flag showing the status of the user site-packages directory. ``True`` means[all …]
14 """Tests that server tests can install packages inside containers."""17 def install_os_packages(self, packages): argument20 @param packages: OS packages to be installed.22 for package in packages:27 def install_python_packages(self, packages): argument30 @param packages: Python packages to be installed.32 for package in packages:48 any of the given packages failed to be installed.
15 // Performs packages cache setup if the pre-generated cache exists.17 // Performs packages cache setup if the pre-generated cache exists and18 // copies resulting packages.xml to the temporary location after21 // Skips packages cache setup and copies resulting packages.xml to the51 // Optional mode for packages cache tests.67 // Performs packages cache setup if the pre-generated cache exists.69 // Performs packages cache setup if the pre-generated cache exists and70 // copies resulting packages.xml to the temporary location after73 // Skips packages cache setup and copies resulting packages.xml to the89 // Optional mode for packages cache tests.
43 def __init__(self, dir, packages=[]): argument45 self.packages = packages48 if not self.packages:51 return self.packages[-1] + ": package"58 packages = []63 packages.append((nn, name, file))64 packages.sort()66 for nn, name, file in packages:67 item = DirBrowserTreeItem(file, self.packages + [name])75 " Return true for directories that are packages."
5 Virtual Environments and Packages11 Python applications will often use packages and modules that don't25 particular version of Python, plus a number of additional packages.82 '~/envs/tutorial-env/lib/python3.5/site-packages']86 Managing Packages with pip89 You can install, upgrade, and remove packages using a program called90 :program:`pip`. By default ``pip`` will install packages from the Python116 Installing collected packages: novas128 Installing collected packages: requests140 Installing collected packages: requests[all …]
9 python and installs them under our own autotest/site-packages/ directory.26 # bring in site packages as well32 # 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 required39 # Want to add more packages to fetch, build and install? See the class121 @param dest_dir: Directory the packages should be fetched into.122 @param install_dir: Directory where packages will later installed.154 def build_and_install_packages(packages, install_dir, argument157 Builds and installs all packages into install_dir.[all …]
4 Utility to upload or remove the packages from the packages repository.11 from autotest_lib.client.common_lib import packages73 parser.add_option("-r", "--repository", help="the URL of the packages"74 "repository location to upload the packages to.",104 # For all packages, the work-dir should have 'client' appended to it.147 packages.check_diskspace(build_dir)149 msg = ("Work_dir directory for packages %s does not have "166 packages.check_diskspace(temp_dir)168 msg = ("Temporary directory for packages %s does not have "182 # Compare the checksum with what packages.checksum has. If they[all …]
41 def __init__(self, dir, packages=[]): argument43 self.packages = packages46 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])
31 packages:40 packages:48 packages:56 packages:66 packages:77 packages:85 packages:100 packages:114 packages:122 packages:[all …]
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): argument25 and are inside packages found in the path starting at basepath.27 If packages is specified it should contain package names that want39 if packages and pkg_name not in packages:54 def get_tests(text=True, gui=True, packages=None): argument64 for module in get_tests_modules(gui=gui, packages=packages):
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): argument23 and are inside packages found in the path starting at basepath.25 If packages is specified it should contain package names that37 if packages and pkg_name not in packages:53 def get_tests(text=True, gui=True, packages=None): argument63 for module in get_tests_modules(gui=gui, packages=packages):
13 packages: ['gcc-5']21 packages: ['gcc-7']29 packages: ['clang-4.0']37 packages: ['clang-5.0']46 packages: ['clang-3.9']55 packages: ['gcc-4.9', 'gcc-4.9-multilib', 'linux-libc-dev:i386']63 packages: ['gcc-6', 'gcc-6-multilib', 'linux-libc-dev:i386']72 packages: ['gcc-7']80 packages: ['gcc-arm-linux-gnueabihf', 'libc6-dev-armhf-cross']87 packages: ['gcc-aarch64-linux-gnu', 'libc6-dev-arm64-cross']
10 set PACKAGES= variable19 if "%~1" EQU "-p" (set PACKAGES=%PACKAGES% %~2) && shift && shift && goto CheckOpts variable26 if defined PACKAGES set PACKAGES="/p:Packages=%PACKAGES%" variable33 msbuild "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x86 %OUTPUT% %PACKAGES%42 msbuild "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x64 %OUTPUT% %PACKAGES%
17 packages:26 packages:35 packages:44 packages:58 packages:67 packages:87 packages:98 packages:133 packages:142 packages:[all …]
10 set PACKAGES= variable19 if "%~1" EQU "-p" (set PACKAGES=%PACKAGES% %~2) && shift && shift && goto CheckOpts variable34 if defined PACKAGES set PACKAGES="/p:Packages=%PACKAGES%" variable41 msbuild "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x86 %OUTPUT% %PACKAGES%50 msbuild "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x64 %OUTPUT% %PACKAGES%
82 * packages.0.name = java.lang83 * packages.0.sites.0.hasPackage = 184 * packages.0.sites.0.link = http://proja.domain.com/reference/java/lang85 * packages.0.sites.1.hasPackage = 086 * packages.0.classes.0.qualifiedName = java.lang.Object87 * packages.0.classes.0.sites.0.hasClass = 188 * packages.0.classes.0.sites.0.link = http://proja.domain.com/reference/java/lang/Object89 * packages.0.classes.0.sites.1.hasClass = 0 90 * packages.0.classes.0.methods.0.signature = wait()91 * packages.0.classes.0.methods.0.sites.0.hasMethod = 1[all …]
77 in multiple packages, it's probably easier to specify whole packages rather than88 packages=[''],108 packages=[''],112 package (or in sub-packages). For example, if the :mod:`foo` and :mod:`bar`129 packages=['foobar'],149 packages=['foobar'],167 packages=['foobar'],172 If you have sub-packages, they must be explicitly listed in ``packages``,173 but any entries in ``package_dir`` automatically extend to sub-packages.175 figure out which directories correspond to Python packages by looking for[all …]
14 packages:24 packages:30 packages:38 packages:51 packages:60 packages:70 packages:82 packages:94 packages:105 packages:[all …]