Home
last modified time | relevance | path

Searched +full:packages +full:- +full:dir (Results 1 – 25 of 329) sorted by relevance

12345678910>>...14

/third_party/python/Lib/idlelib/
Dpathbrowser.py13 _htest - bool, change box location when running htest
36 for dir in sys.path:
37 item = DirBrowserTreeItem(dir)
44 def __init__(self, dir, packages=[]): argument
45 self.dir = dir
46 self.packages = packages
49 if not self.packages:
50 return self.dir
52 return self.packages[-1] + ": package"
56 names = os.listdir(self.dir or os.curdir)
[all …]
/third_party/python/Lib/
Dsite.py1 """Append module search paths for third-party packages to sys.path.
7 This will append site-specific paths to the module search path. On
10 lib/python<version>/site-packages.
12 prefixes directly, as well as with lib/site-packages appended. The
18 it is also checked for site-packages (sys.base_prefix and
21 the key "include-system-site-packages" set to anything other than "false"
22 (case-insensitive), the system-level prefixes will still also be
23 searched for site-packages; otherwise they won't.
25 All of the resulting site-specific directories, if they exist, are
31 to be added to sys.path. Non-existing directories (or
[all …]
/third_party/node/deps/npm/test/lib/
Dnpm.js4 const { load: loadMockNpm } = require('../fixtures/mock-npm.js')
5 const mockGlobals = require('@npmcli/mock-globals')
6 const { commands } = require('../../lib/utils/cmd-list.js')
50 const { npm, logs, prefix: dir, cache, other } = await loadMockNpm(t, {
66 ['npm:load', /Completed in [0-9.]+ms/],
79 npm.localPrefix = dir + '/extra/prefix'
83 npm.prefix = dir + '/some/prefix'
88 t.equal(npm.dir, npm.localDir, 'dir is local dir after prefix setter')
89 t.not(npm.dir, npm.globalDir, 'dir is not global dir after prefix setter')
96 t.equal(npm.dir, npm.globalDir, 'dir is global dir after setting global')
[all …]
/third_party/python/Lib/test/
Dtest_ensurepip.py22 self.touch(tmpdir, "pip-1.2.3b1-py2.py3-none-any.whl")
23 self.touch(tmpdir, "setuptools-49.1.3-py3-none-any.whl")
32 packages = ensurepip._get_packages()
34 # when bundled wheel packages are used, we get _PIP_VERSION
37 # use bundled wheel packages
38 self.assertIsNotNone(packages['pip'].wheel_name)
39 self.assertIsNotNone(packages['setuptools'].wheel_name)
43 setuptools_filename = "setuptools-49.1.3-py3-none-any.whl"
44 pip_filename = "pip-20.2.2-py2.py3-none-any.whl"
50 self.touch(tmpdir, "wheel-0.34.2-py2.py3-none-any.whl")
[all …]
/third_party/skia/third_party/externals/microhttpd/
DINSTALL4 Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
9 notice and this notice are preserved. This file is offered as-is,
17 more-detailed instructions are generic; see the `README' file for
18 instructions specific to this package. Some packages provide this
21 necessarily a bug. More recommendations for GNU packages can be found
25 various system-dependent variables used during compilation. It uses
27 It may also create one or more `.h' files containing system-dependent
34 and enabled with `--cache-file=config.cache' or simply `-C') that saves
61 3. Optionally, type `make check' to run any self-tests that come with
62 the package, generally using the just-built uninstalled binaries.
[all …]
/third_party/python/Tools/nuget/
Dbuild.bat12 set PACKAGES= variable
16 if "%~1" EQU "-h" goto Help
17 if "%~1" EQU "-x86" (set BUILDX86=1) && shift && goto CheckOpts
18 if "%~1" EQU "-x64" (set BUILDX64=1) && shift && goto CheckOpts
19 if "%~1" EQU "-arm32" (set BUILDARM32=1) && shift && goto CheckOpts
20 if "%~1" EQU "-r" (set REBUILD=-r) && shift && goto CheckOpts
21 if "%~1" EQU "-o" (set OUTPUT="/p:OutputPath=%~2") && shift && shift && goto CheckOpts
22 if "%~1" EQU "--out" (set OUTPUT="/p:OutputPath=%~2") && shift && shift && goto CheckOpts
23 if "%~1" EQU "-p" (set PACKAGES=%PACKAGES% %~2) && shift && shift && goto CheckOpts variable
24 if "%~1" EQU "--python-exe" (set PYTHON_EXE="/p:PythonExe=%~2") && shift && shift && goto CheckOpts
[all …]
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/
Dshrinkwrap.js1 // a module that manages a shrinkwrap file (npm-shrinkwrap.json or
2 // package-lock.json).
5 // v1 - npm <=6
6 // v2 - arborist v1, npm v7, backwards compatible with v1, add 'packages'
12 const localeCompare = require('@isaacs/string-locale-compare')('en')
19 // - Set the first time we do `this.add(node)` for a path matching this.path
22 // - decorate the node with the metadata we have, if we have it, and it matches
23 // - add to the map of nodes needing to be committed, so that subsequent
27 // - commit all nodes awaiting update to their metadata entries
28 // - re-generate this.data and this.yarnLock based on this.tree
[all …]
/third_party/python/Doc/tutorial/
Dmodules.rst1 .. _tut-modules:
51 the current :term:`namespace` (see :ref:`tut-scopes` for more details);
69 .. _tut-moremodules:
139 interpreter -- or, if it's just one module you want to test interactively,
144 .. _tut-modulesasscripts:
147 ----------------------------
165 .. code-block:: shell-session
179 .. _tut-searchpath:
182 ----------------------
187 a built-in module with that name. These module names are listed in
[all …]
/third_party/node/deps/npm/test/lib/commands/
Dinit.js4 const _mockNpm = require('../../fixtures/mock-npm')
5 const { cleanTime } = require('../../fixtures/clean-snapshot')
14 ...(initPackageJson ? { 'init-package-json': initPackageJson } : {}),
17 // init-package-json prints directly to console.log
35 t.test('classic npm init -y', async t => {
71 ['create-react-app@*'],
72 'should npx with listed packages'
77 await npm.exec('init', ['react-app'])
80 t.test('npm init <arg> -- other-args', async t => {
87 ['create-react-app@*', 'my-path', '--some-option', 'some-value'],
[all …]
/third_party/python/Lib/distutils/command/
Dbuild_py.py20 ('build-lib=', 'd', "directory to \"build\" (copy) to"),
22 ('no-compile', None, "don't compile .py files [default]"),
24 "also compile with optimization: -O1 for \"python -O\", "
25 "-O2 for \"python -OO\", and -O0 to disable [default: -O0]"),
30 negative_opt = {'no-compile' : 'compile'}
48 # options -- list of packages and list of modules.
49 self.packages = self.distribution.packages
69 # the right thing to do, but perhaps it should be an option -- in
75 # wrong thing to do: if a file is read-only in the working
78 # without problems. (This might be a Unix-specific issue.) Thus
[all …]
/third_party/curl/
DMakefile.am21 # SPDX-License-Identifier: curl
27 ACLOCAL_AMFLAGS = -I m4
32 CMake/curl-config.cmake.in \
85 projects/build-openssl.bat \
86 projects/build-wolfssl.bat \
88 projects/Windows/VC14/curl-all.sln \
93 projects/Windows/VC14.10/curl-all.sln \
98 projects/Windows/VC14.20/curl-all.sln \
103 projects/Windows/VC14.30/curl-all.sln \
125 EXTRA_DIST = CHANGES COPYING maketgz Makefile.dist curl-config.in \
[all …]
/third_party/protobuf/protoc-artifacts/
Dbuild-zip.sh3 if [ $# -ne 2 ]; then
7 TARGET: protoc | protoc-gen-javalite
11 $ $0 protoc-gen-javalite 3.0.0
13 This script will download pre-built protoc or protoc plugin binaries from maven
14 repository and create .zip packages suitable to be included in the github
15 release page. If the target is protoc, well-known type .proto files will also be
16 included. Each invocation will create 8 zip packages:
17 dist/<TARGET>-<VERSION_NUMBER>-win32.zip
18 dist/<TARGET>-<VERSION_NUMBER>-win64.zip
19 dist/<TARGET>-<VERSION_NUMBER>-osx-x86_64.zip
[all …]
/third_party/node/doc/api/
Dmodules.md3 <!--introduced_in=v0.10.0-->
5 > Stability: 2 - Stable
7 <!--name=module-->
39 in a function by Node.js (see [module wrapper](#the-module-wrapper)).
72 <!-- type=misc -->
81 contains a top-level field [`"type"`][] with a value of `"commonjs"`.
84 doesn't contain a top-level field [`"type"`][]. Package authors should include
85 the [`"type"`][] field, even in packages where all sources are CommonJS. Being
91 (when the nearest parent `package.json` file contains a top-level field
94 used as the command-line entry point of the program).
[all …]
/third_party/libjpeg-turbo/
D.travis.yml5 - /^[0-9]+\.[0-9]+\.[0-9]+/
6 - /^jpeg-.*/
10 - os: linux
14 - docker
15 - os: osx
18 - os: linux
22 CFLAGS_RELWITHDEBINFO="-O1 -g -fsanitize=address,undefined -fno-omit-frame-pointer"
23 CMAKE_FLAGS="-DENABLE_SHARED=0"
28 packages:
29 - nasm
[all …]
/third_party/node/deps/npm/node_modules/libnpmexec/lib/
Dindex.js5 const ciInfo = require('ci-info')
7 const log = require('proc-log')
8 const npa = require('npm-package-arg')
14 const { fileExists, localFileExists } = require('./file-exists.js')
15 const getBinFromManifest = require('./get-bin-from-manifest.js')
16 const noTTY = require('./no-tty.js')
17 const runScript = require('./run-script.js')
18 const isWindows = require('./is-windows.js')
40 // - In local or global mode go with anything in the tree that matches
41 // - If looking in the npx cache check if a newer version is available
[all …]
/third_party/gn/
DREADME.md3 GN is a meta-build system that generates build files for
4 [Ninja](https://ninja-build.org).
15 * The [mailing list](https://groups.google.com/a/chromium.org/forum/#!forum/gn-dev).
26 * It has a readable, clean syntax. Once a build is set-up, it is generally
29 * It is designed for multi-platform projects. It can cleanly express many
43 * It has comprehensive build-in help available from the command-line.
50 have much knowledge about the build) down an easy-to-understand, well-lit
51 path. This isn't necessarily the correct trade-off for smaller projects.
82 main built-in languages.
87 [Linux](https://chrome-infra-packages.appspot.com/dl/gn/gn/linux-amd64/+/latest),
[all …]
/third_party/python/PC/layout/support/
Dpip.py22 return ns.copy / "packages"
23 return ns.copy / "Lib" / "site-packages"
25 return ns.temp / "packages"
31 log_warning("Failed to find {} - pip will not be included", pip_dir)
33 pkg_root = "packages/{}" if ns.zip_lib else "Lib/site-packages/{}"
65 "-m",
67 "--no-color",
71 "--upgrade",
72 "--target",
74 "--no-index",
[all …]
/third_party/node/deps/npm/man/man7/
Dworkspaces.73 \fBworkspaces\fR - Working with workspaces
6 …that provides support for managing multiple packages from your local file system from within a sin…
8packages from the local file system. It automates the linking process as part of \fBnpm install\fR…
10packages being auto-symlinked during \fBnpm install\fR as a single \fBworkspace\fR, meaning it's a…
13 …spaces\fR property of the \fB\fBpackage.json\fR\fR \fI\(la/configuring-npm/package-json#workspaces…
18 "name": "my-workspaces-powered-project",
20 "packages/a"
26 … at a current working directory \fB.\fR that contains a folder named \fBpackages/a\fR that itself …
31 +-- package.json
32 `-- packages
[all …]
/third_party/python/Doc/library/
Dtrace.rst1 :mod:`trace` --- Trace or track Python statement execution
9 --------------
19 A popular third-party coverage tool that provides HTML
22 .. _trace-cli:
24 Command-Line Usage
25 ------------------
30 python -m trace --count -C . somefile.py ...
37 .. cmdoption:: --help
41 .. cmdoption:: --version
46 Added ``--module`` option that allows to run an executable module.
[all …]
/third_party/node/deps/npm/man/man1/
Dnpm-init.11 .TH "NPM-INIT" "1" "February 2024" "" ""
3 \fBnpm-init\fR - Create a package.json file
8 npm init <package-spec> (same as `npx <package-spec>`)
18-<initializer>\fR, which will be installed by npm help npm-exec, and then have its main bin execut…
23 \fBnpm init foo\fR -> \fBnpm exec create-foo\fR
25 \fBnpm init @usr/foo\fR -> \fBnpm exec @usr/create-foo\fR
27 \fBnpm init @usr\fR -> \fBnpm exec @usr/create\fR
29 \fBnpm init @usr@2.0.0\fR -> \fBnpm exec @usr/create@2.0.0\fR
31 \fBnpm init @usr/foo@2.0.0\fR -> \fBnpm exec @usr/create-foo@2.0.0\fR
35 …t were already set. You can also use \fB-y\fR/\fB--yes\fR to skip the questionnaire altogether. If…
[all …]
Dnpm-link.11 .TH "NPM-LINK" "1" "February 2024" "" ""
3 \fBnpm-link\fR - Symlink a package folder
8 npm link \[lB]<package-spec>\[rB]
17 Package linking is a two-step process.
19 …{name}\fR. Note that \fBnpm link\fR uses the global prefix (see \fBnpm prefix -g\fR for its value).
21 …some other location, \fBnpm link package-name\fR will create a symbolic link from globally-install…
23 Note that \fBpackage-name\fR is taken from \fBpackage.json\fR, \fInot\fR from the directory name.
25 …refixed with a scope. See npm help scope. The scope must be preceded by an @-symbol and followed b…
27 When creating tarballs for \fBnpm publish\fR, the linked packages are "snapshotted" to their curren…
33 cd ~/projects/node-redis # go into the package directory
[all …]
/third_party/icu/icu4j/samples/
Dbuild.xml1 <!--
5 * Copyright (C) 2011-2014, International Business Machines Corporation and *
8 -->
10 <property file="build-local.properties"/>
12 <import file="${shared.dir}/build/common-targets.xml"/>
17 <property name="jar.name" value="icu4j-${ant.project.name}.jar"/>
18 <property name="src.jar.name" value="icu4j-${ant.project.name}-src.jar"/>
20 <target name="build" depends="compile, copy, jar, src-jar" description="Build the project"/>
22 …<target name="build-all" depends="@build-all" description="Build the project including all depende…
28 …<target name="copy" depends="@copy" description="Copy non-java runtime files to the project's bina…
[all …]
/third_party/python/Lib/distutils/tests/
Dtest_build_py.py34 dist = Distribution({"packages": ["pkg"],
41 dist.packages = ["pkg"]
52 # This makes sure the list of outputs includes byte-compiled
54 # (there shouldn't *be* byte-code files for those!).
78 dist = Distribution({"packages": ["pkg"],
91 @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled')
109 @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile disabled')
125 expect = 'boiledeggs.{}.opt-1.pyc'.format(sys.implementation.cache_tag)
147 dist = Distribution({"packages": ["pkg"],
157 self.fail("failed package_data when data dir includes a dir")
[all …]
/third_party/node/deps/npm/docs/content/commands/
Dnpm-init.md1 ---
2 title: npm-init
5 ---
10 npm init <package-spec> (same as `npx <package-spec>`)
21 `initializer` in this case is an npm package named `create-<initializer>`,
22 which will be installed by [`npm-exec`](/commands/npm-exec), and then have its
23 main bin executed -- presumably creating or updating `package.json` and
24 running any other initialization-related operations.
29 * `npm init foo` -> `npm exec create-foo`
30 * `npm init @usr/foo` -> `npm exec @usr/create-foo`
[all …]
/third_party/libabigail/tools/
Dabipkgdiff.cc1 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2 // -*- Mode: C++ -*-
4 // Copyright (C) 2015-2022 Red Hat, Inc.
10 /// This program compares the ABIs of binaries inside two packages.
15 /// The program takes the two packages to compare as well as their
16 /// associated debug info packages.
18 /// The program extracts the content of the two packages into a
29 /// 1/ the first package and its ancillary packages (debug info and
30 /// devel packages) are extracted concurrently.
32 /// 3 thread packages (one package, one debug info package and one
[all …]

12345678910>>...14