Home
last modified time | relevance | path

Searched refs:tarball (Results 1 – 25 of 201) sorted by relevance

123456789

/third_party/node/deps/npm/lib/utils/
Dtar.js11 const logTar = (tarball, opts = {}) => { argument
14 log.notice('', `${unicode ? '�� ' : 'package:'} ${tarball.name}@${tarball.version}`)
16 if (tarball.files.length) {
20 tarball.files
33 if (tarball.bundled.length) {
35 tarball.bundled.forEach(name => log.notice('', name))
42 { name: 'name:', value: tarball.name },
43 { name: 'version:', value: tarball.version },
44 tarball.filename && { name: 'filename:', value: tarball.filename },
45 { name: 'package size:', value: formatBytes(tarball.size) },
[all …]
/third_party/node/deps/npm/test/lib/utils/
Dtar.js14 const printLogs = (tarball, options) => { argument
19 logTar(tarball, options)
45 const tarball = await pack(testDir) constant
50 }, tarball)
77 const tarball = await pack(testDir) constant
82 }, tarball)
113 const tarball = await pack(testDir) constant
118 }, tarball)
120 const integrity = await ssri.fromData(tarball, {
/third_party/python/Lib/distutils/tests/
Dtest_archive_util.py118 tarball = base_name + suffix
119 self.assertTrue(os.path.exists(tarball))
120 self.assertEqual(self._tarinfo(tarball), self._created_files)
162 tarball = base_name + '.tar.gz'
163 self.assertTrue(os.path.exists(tarball))
179 self.assertEqual(self._tarinfo(tarball), self._created_files)
190 tarball = base_name + '.tar'
191 self.assertTrue(os.path.exists(tarball))
201 tarball = base_name + '.tar'
202 self.assertTrue(os.path.exists(tarball))
[all …]
/third_party/node/deps/npm/node_modules/libnpmpack/lib/
Dindex.js37 const tarball = await pacote.tarball(manifest._resolved, {
48 await writeFile(destination, tarball)
61 npm_package_from: tarball.from,
62 npm_package_resolved: tarball.resolved,
63 npm_package_integrity: tarball.integrity,
68 return tarball
/third_party/libabigail/
DMakefile.am70 tarball: $(TARBALL) target
72 upload-release: tarball tag-release upload-release-only
76 upload-release: tarball-and-tag-and-upload
78 tarball-and-tag-and-upload: tarball-and-all
80 tarball-and-all: tag-and-all
81 $(MAKE) tarball
/third_party/node/deps/npm/node_modules/pacote/
DREADME.md19 pacote.tarball('https://server.com/package.tgz').then(data => {
20 console.log('got ' + data.length + ' bytes of tarball data')
30 Data that isn't relevant (like a packument for a tarball) will be
58 pacote tarball <spec> [<filename>]
59 Fetch a package tarball and save to <filename>
60 If <filename> is missing or '-', the tarball will be streamed to stdout.
85 `github:user/project` all the way to a tarball url, tarball file, or git
88 * `pacote.extract(spec, dest, opts)` Extract a package's tarball into a
102 * `pacote.tarball(spec, opts)` Get a package tarball data as a buffer in
103 memory. Returns a Promise that resolves to the tarball data Buffer, with
[all …]
/third_party/node/deps/npm/test/lib/commands/
Dci.js69 await registry.tarball({
71 tarball: path.join(npm.prefix, 'abbrev'), property
92 await registry.tarball({
94 tarball: path.join(npm.prefix, 'abbrev'), property
129 await registry.tarball({
131 tarball: path.join(npm.prefix, 'abbrev'), property
153 await registry.tarball({
155 tarball: path.join(npm.prefix, 'abbrev'), property
Dview.js50 tarball: 'http://hm.blue.com/1.0.0.tgz', property
61 tarball: 'http://hm.blue.com/1.0.1.tgz', property
84 tarball: 'http://hm.cyan.com/1.0.0.tgz', property
170 tarball: 'http://hm.green.com/1.0.0.tgz', property
199 tarball: 'http://hm.black.com/1.0.0.tgz', property
224 tarball: 'http://hm.pink.com/1.0.0.tgz', property
245 tarball: 'http://hm.orange.com/1.0.0.tgz', property
Daudit.js841 tarball: 'https://registry.npmjs.org/kms-demo/-/kms-demo-1.0.0.tgz', property
865 tarball: 'https://registry.npmjs.org/sigstore/-/sigstore-1.0.0.tgz', property
884 tarball: 'https://registry.npmjs.org/tuf-js/-/tuf-js-1.0.0.tgz', property
901 tarball: `https://registry.npmjs.org/${name}/-/${name}-${version}.tgz`, property
960 tarball: 'https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.1.tgz', property
1081 tarball: 'https://registry.npmjs.org/async/-/async-2.5.0.tgz', property
1372 tarball: 'https://registry.npmjs.org/@npmcli/arborist/-/@npmcli/arborist-1.0.14.tgz', property
1403 tarball: 'https://registry.npmjs.org/@npmcli/arborist/-/@npmcli/arborist-1.0.14.tgz', property
1435 tarball: 'https://registry.npmjs.org/@npmcli/arborist/-/@npmcli/arborist-1.0.14.tgz', property
1478 tarball: 'https://registry.npmjs.org/@npmcli/arborist/-/@npmcli/arborist-1.0.14.tgz', property
[all …]
/third_party/skia/infra/bots/assets/clang_win/
Dcreate.py39 tarball = 'clang.tgz'
40 subprocess.check_call(['wget', '-O', tarball, GS_URL])
41 subprocess.check_call(['tar', 'zxvf', tarball])
42 os.remove(tarball)
/third_party/node/deps/npm/node_modules/pacote/lib/
Dindex.js17 tarball: (spec, opts) => get(spec, opts).tarball(),
20 module.exports.tarball.stream = (spec, handler, opts) =>
22 module.exports.tarball.file = (spec, dest, opts) =>
Dfetcher.js195 tarball () { method in FetcherBase
368 return this.tarballStream((tarball) => this[_extract](dest, tarball))
392 [_extract] (dest, tarball) { argument
409 tarball.on('error', er => reject(er))
412 tarball.pipe(extractor)
/third_party/node/deps/npm/tap-snapshots/test/lib/commands/
Dview.js.test.cjs20 .tarball:,http://hm.green.com/1.0.0.tgz
49 .tarball:,http://hm.green.com/1.0.0.tgz
78 .tarball:,http://hm.green.com/1.0.0.tgz
100 .tarball:,http://hm.blue.com/1.0.0.tgz
116 .tarball:,http://hm.blue.com/1.0.0.tgz
132 .tarball:,http://hm.blue.com/1.0.0.tgz
158 "tarball": "http://hm.cyan.com/1.0.0.tgz",
184 .tarball:,http://hm.orange.com/1.0.0.tgz
198 .tarball:,http://hm.pink.com/1.0.0.tgz
212 .tarball:,http://hm.black.com/1.0.0.tgz
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/
DsandboxCopy14 tar czpf /tmp/tarball.tgz .
16 scp /tmp/tarball.tgz $RHOST:$RPATH
21 rm /tmp/tarball.tgz
/third_party/skia/infra/bots/assets/linux_vulkan_sdk/
Dcreate.py31 tarball = 'vulkansdk-linux.tar.gz'
32 subprocess.check_call(['curl', SDK_URL, '--output', tarball])
34 '--file=%s' % tarball, '--gunzip',
/third_party/node/deps/npm/node_modules/libnpmdiff/lib/
Dtarball.js21 const tarball = (manifest, opts) => { function
32 return pacote.tarball(manifest._resolved, {
38 module.exports = tarball
/third_party/node/deps/npm/node_modules/libnpmpack/
DREADME.md31 Packs a tarball from a local directory or from a registry or github spec and returns a Promise that…
33 If no options are passed, the tarball file will be saved on the same directory from which `pack` wa…
45 const tarball = await pack()
/third_party/node/deps/npm/node_modules/libnpmpublish/lib/
Dunpublish.js12 const getPathname = (tarball, registry) => { argument
14 let tarballUrl = new URL(tarball).pathname.slice(1)
102 const tarballUrl = getPathname(dist.tarball, opts.registry)
/third_party/node/deps/npm/lib/commands/
Dcache.js54 packument.versions[ver].dist.tarball !== undefined &&
55 cacheKeys.has(`make-fetch-happen:request-cache:${packument.versions[ver].dist.tarball}`)
57 results.add(`make-fetch-happen:request-cache:${packument.versions[ver].dist.tarball}`)
160 return pacote.tarball.stream(spec, stream => {
/third_party/node/deps/npm/node_modules/libnpmpublish/
DREADME.md9 it a manifest as an object and a tarball as a Buffer, and it'll put them on
72 repo, tarball, etc.)
74 `tarData` is a `Buffer` of the tarball being published.
90 // note that pacote.manifest() and pacote.tarball() can also take
96 const tarData = await pacote.tarball(path)
/third_party/node/deps/npm/docs/content/using-npm/
Dpackage-spec.md12 git url, tarball, or local directory. These will generally be referred
72 * `<tarball file>`
73 * `<tarball url>`
80 Refers to a package in a tarball format, either on the local filesystem
/third_party/skia/third_party/externals/dawn/generator/
Dgenerator_lib.gni96 # contain a single target, so we output a single "JSON-tarball" instead.
102 "--output-json-tarball",
108 # After the JSON tarball is created we need an action target to extract it
134 # The code generator invocation that will write the JSON tarball, check the
146 # Extract the JSON tarball into the gen_dir
/third_party/node/deps/npm/docs/content/commands/
Dnpm-pack.md4 description: Create a tarball from a package
108 For anything that's installable (that is, a package folder, tarball,
109 tarball url, git url, name@tag, name@version, name, or scoped name), this
110 command will fetch it to the cache, copy the tarball to the current working
/third_party/mesa3d/docs/relnotes/
D6.420 GLUT tarball
24 tarball. This was done at the request of Linux distro vendors who prefer
/third_party/libabigail/doc/website/
Dmainpage.txt89 \subsection compile-from-tarball Compiling the code from the tarball
91 Once you've downloaded the tarball, please extract its content to a
92 directory of your choice. To extract the tarball on GNU/Linux, please
117 of Libabigail which you extracted from the tarball.

123456789