/third_party/node/deps/npm/lib/utils/ |
D | tar.js | 11 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/ |
D | tar.js | 14 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/ |
D | test_archive_util.py | 118 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/ |
D | index.js | 37 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/ |
D | Makefile.am | 70 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/ |
D | README.md | 19 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/ |
D | ci.js | 69 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
|
D | view.js | 50 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
|
D | audit.js | 841 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/ |
D | create.py | 39 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/ |
D | index.js | 17 tarball: (spec, opts) => get(spec, opts).tarball(), 20 module.exports.tarball.stream = (spec, handler, opts) => 22 module.exports.tarball.file = (spec, dest, opts) =>
|
D | fetcher.js | 195 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/ |
D | view.js.test.cjs | 20 .tarball:,[36mhttp://hm.green.com/1.0.0.tgz[39m 49 .tarball:,[36mhttp://hm.green.com/1.0.0.tgz[39m 78 .tarball:,[36mhttp://hm.green.com/1.0.0.tgz[39m 100 .tarball:,[36mhttp://hm.blue.com/1.0.0.tgz[39m 116 .tarball:,[36mhttp://hm.blue.com/1.0.0.tgz[39m 132 .tarball:,[36mhttp://hm.blue.com/1.0.0.tgz[39m 158 "tarball": "http://hm.cyan.com/1.0.0.tgz", 184 .tarball:,[36mhttp://hm.orange.com/1.0.0.tgz[39m 198 .tarball:,[36mhttp://hm.pink.com/1.0.0.tgz[39m 212 .tarball:,[36mhttp://hm.black.com/1.0.0.tgz[39m [all …]
|
/third_party/vk-gl-cts/external/vulkan-docs/src/ |
D | sandboxCopy | 14 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/ |
D | create.py | 31 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/ |
D | tarball.js | 21 const tarball = (manifest, opts) => { function 32 return pacote.tarball(manifest._resolved, { 38 module.exports = tarball
|
/third_party/node/deps/npm/node_modules/libnpmpack/ |
D | README.md | 31 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/ |
D | unpublish.js | 12 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/ |
D | cache.js | 54 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/ |
D | README.md | 9 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/ |
D | package-spec.md | 12 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/ |
D | generator_lib.gni | 96 # 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/ |
D | npm-pack.md | 4 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/ |
D | 6.4 | 20 GLUT tarball 24 tarball. This was done at the request of Linux distro vendors who prefer
|
/third_party/libabigail/doc/website/ |
D | mainpage.txt | 89 \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.
|