Home
last modified time | relevance | path

Searched full:dist (Results 1 – 25 of 1552) sorted by relevance

12345678910>>...63

/third_party/typescript/tests/baselines/reference/user/
Dacorn.log3 node_modules/acorn/acorn-loose/dist/acorn-loose.js(3,10): error TS2304: Cannot find name 'define'.
4 node_modules/acorn/acorn-loose/dist/acorn-loose.js(3,35): error TS2304: Cannot find name 'define'.
5 node_modules/acorn/acorn-loose/dist/acorn-loose.js(3,48): error TS2304: Cannot find name 'define'.
6 …-loose/dist/acorn-loose.js(4,45): error TS2339: Property 'acorn' does not exist on type 'typeof im…
7 …-loose/dist/acorn-loose.js(4,80): error TS2339: Property 'acorn' does not exist on type 'typeof im…
8 …loose/dist/acorn-loose.js(4,106): error TS2339: Property 'acorn' does not exist on type 'typeof im…
9 node_modules/acorn/acorn-loose/dist/acorn-loose.js(12,34): error TS2339: Property 'BaseParser' does…
10 node_modules/acorn/acorn-loose/dist/acorn-loose.js(83,12): error TS2339: Property 'next' does not e…
11 node_modules/acorn/acorn-loose/dist/acorn-loose.js(110,16): error TS2339: Property 'lookAhead' does…
12 node_modules/acorn/acorn-loose/dist/acorn-loose.js(111,44): error TS2339: Property 'next' does not …
[all …]
/third_party/typescript/tests/baselines/reference/docker/
Dvue-next.log11 Writing package typings: /vue-next/packages/compiler-core/dist/compiler-core.d.ts
12 Writing package typings: /vue-next/dist/compiler-core.d.ts
19 Writing package typings: /vue-next/packages/compiler-dom/dist/compiler-dom.d.ts
20 Writing package typings: /vue-next/dist/compiler-dom.d.ts
27 Writing package typings: /vue-next/packages/compiler-ssr/dist/compiler-ssr.d.ts
28 Writing package typings: /vue-next/dist/compiler-ssr.d.ts
35 Writing package typings: /vue-next/packages/compiler-sfc/dist/compiler-sfc.d.ts
36 Writing package typings: /vue-next/dist/compiler-sfc.d.ts
43 /vue-next/packages/compiler-core/src/index.ts → packages/compiler-core/dist/compiler-core.esm-bundl…
44 /vue-next/packages/compiler-dom/src/index.ts → packages/compiler-dom/dist/compiler-dom.esm-bundler.…
[all …]
Dazure-sdk.log133 Invoking: tsc -p tsconfig.build.json && prettier --write dist/**/*.{js,json,md}
134 …utils/_ts3.4/dist/ast-utils/eslint-utils/astUtilities.d.ts:22:136 - error TS2307: Cannot find modu…
135dist/scope/BlockScope").BlockScope | import("@typescript-eslint/scope-manager/dist/scope/CatchScop…
137 …utils/_ts3.4/dist/ast-utils/eslint-utils/astUtilities.d.ts:22:214 - error TS2307: Cannot find modu…
138dist/scope/BlockScope").BlockScope | import("@typescript-eslint/scope-manager/dist/scope/CatchScop…
141 …13:8 - error TS2307: Cannot find module '@typescript-eslint/typescript-estree/dist/parser-options'.
142 13 } from "@typescript-eslint/typescript-estree/dist/parser-options";
/third_party/python/Lib/distutils/tests/
Dtest_dist.py1 """Tests for distutils.dist."""
11 from distutils.dist import Distribution, fix_help_options
183 dist = Distribution(attrs={'author': 'xxx', 'name': 'xxx',
188 self.assertNotIn('options', dir(dist))
194 dist = Distribution(attrs=attrs)
195 dist.finalize_options()
198 self.assertEqual(dist.metadata.platforms, ['one', 'two'])
199 self.assertEqual(dist.metadata.keywords, ['one', 'two'])
203 dist = Distribution(attrs=attrs)
204 dist.finalize_options()
[all …]
Dtest_build_py.py34 dist = Distribution({"packages": ["pkg"],
37 dist.script_name = os.path.join(sources, "setup.py")
38 dist.command_obj["build"] = support.DummyCommand(
41 dist.packages = ["pkg"]
42 dist.package_data = {"pkg": ["README.txt"]}
43 dist.package_dir = {"pkg": sources}
45 cmd = build_py(dist)
48 self.assertEqual(cmd.package_data, dist.package_data)
78 dist = Distribution({"packages": ["pkg"],
82 dist.script_name = os.path.join(sources, "setup.py")
[all …]
Dtest_bdist_rpm.py63 dist = Distribution({'name': 'foo', 'version': '0.1',
67 dist.script_name = 'setup.py'
71 cmd = bdist_rpm(dist)
79 dist_created = os.listdir(os.path.join(pkg_dir, 'dist'))
83 self.assertIn(('bdist_rpm', 'any', 'dist/foo-0.1-1.src.rpm'), dist.dist_files)
84 self.assertIn(('bdist_rpm', 'any', 'dist/foo-0.1-1.noarch.rpm'), dist.dist_files)
107 dist = Distribution({'name': 'foo', 'version': '0.1',
111 dist.script_name = 'setup.py'
115 cmd = bdist_rpm(dist)
122 dist_created = os.listdir(os.path.join(pkg_dir, 'dist'))
[all …]
Dtest_archive_util.py115 make_tarball(splitdrive(base_name)[1], 'dist', **kwargs)
131 _zip_created_files = ['dist/', 'dist/file1', 'dist/file2',
132 'dist/sub/', 'dist/sub/file3', 'dist/sub2/']
138 dist = os.path.join(tmpdir, 'dist')
139 os.mkdir(dist)
140 self.write_file([dist, 'file1'], 'xxx')
141 self.write_file([dist, 'file2'], 'xxx')
142 os.mkdir(os.path.join(dist, 'sub'))
143 self.write_file([dist, 'sub', 'file3'], 'xxx')
144 os.mkdir(os.path.join(dist, 'sub2'))
[all …]
Dtest_sdist.py65 os.mkdir(join(self.tmp_dir, 'dist'))
83 dist = Distribution(metadata)
84 dist.script_name = 'setup.py'
85 dist.packages = ['somecode']
86 dist.include_package_data = True
87 cmd = sdist(dist)
88 cmd.dist_dir = 'dist'
89 return dist, cmd
111 dist, cmd = self.get_cmd()
121 dist_folder = join(self.tmp_dir, 'dist')
[all …]
Dtest_build_ext.py67 dist = Distribution({'name': 'xx', 'ext_modules': [xx_ext]})
68 dist.package_dir = self.tmp_dir
69 cmd = self.build_ext(dist)
119 dist = Distribution({'name': 'xx'})
120 cmd = self.build_ext(dist)
141 dist = Distribution({'name': 'xx'})
142 cmd = self.build_ext(dist)
172 dist = Distribution({'name': 'xx', 'ext_modules': modules})
173 cmd = self.build_ext(dist)
179 dist = Distribution({'name': 'xx', 'ext_modules': modules})
[all …]
/third_party/libexif/
D.travis.yml38 - env: CONFIG=normal DIST=bionic
40 dist: bionic
42 - env: CONFIG=normal DIST=bionic
44 dist: bionic
46 - env: CONFIG=normal DIST=focal
48 dist: focal
50 - env: CONFIG=normal DIST=focal
52 dist: focal
54 - env: CONFIG=clang6 DIST=xenial
56 dist: xenial
[all …]
/third_party/python/Doc/library/
Dtkinter.tix.rst40 `Tix Man Pages <http://tix.sourceforge.net/dist/current/man/>`_
43 `Tix Programming Guide <http://tix.sourceforge.net/dist/current/docs/tix-book/tix.book.html>`_
83 `Tix <http://tix.sourceforge.net/dist/current/man/html/TixCmd/TixIntro.htm>`_
94 <http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixBalloon.htm>`_ that
100 .. \ulink{Balloon}{http://tix.sourceforge.net/dist/current/demos/samples/Balloon.tcl}
106 <http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixButtonBox.htm>`_
110 .. \ulink{ButtonBox}{http://tix.sourceforge.net/dist/current/demos/samples/BtnBox.tcl}
116 <http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixComboBox.htm>`_
122 .. \ulink{ComboBox}{http://tix.sourceforge.net/dist/current/demos/samples/ComboBox.tcl}
128 <http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixControl.htm>`_
[all …]
/third_party/gstreamer/gstreamer/tests/check/libs/
Dadapter.c367 guint64 dist; in GST_START_TEST() local
383 timestamp = gst_adapter_prev_pts (adapter, &dist); in GST_START_TEST()
385 fail_unless (dist == 0); in GST_START_TEST()
391 offset = gst_adapter_prev_offset (adapter, &dist); in GST_START_TEST()
393 fail_unless (dist == 0); in GST_START_TEST()
399 dist = gst_adapter_distance_from_discont (adapter); in GST_START_TEST()
400 fail_unless (dist == 0); in GST_START_TEST()
406 /* still undefined, dist changed, though */ in GST_START_TEST()
407 timestamp = gst_adapter_prev_pts (adapter, &dist); in GST_START_TEST()
409 fail_unless (dist == 50); in GST_START_TEST()
[all …]
/third_party/node/deps/npm/test/tap/
Ddist-tag.js20 server.get('/-/package/@scoped%2fpkg/dist-tags')
23 server.get('/-/package/@scoped%2fpkg/dist-tags')
27 server.get('/-/package/@scoped%2fanother/dist-tags')
30 server.get('/-/package/@scoped%2fanother/dist-tags')
34 server.get('/-/package/@scoped%2fanother/dist-tags')
36 server.put('/-/package/@scoped%2fanother/dist-tags/c', '"7.7.7"')
40 server.get('/-/package/@scoped%2fanother/dist-tags')
44 server.get('/-/package/@scoped%2fanother/dist-tags')
46 server.delete('/-/package/@scoped%2fanother/dist-tags/c')
50 server.get('/-/package/@scoped%2ffoo/dist-tags')
[all …]
/third_party/typescript/tests/baselines/reference/tsc/declarationEmit/
Dwhen-pkg-references-sibling-package-through-indirect-symlink-moduleCaseChange.js2 //// [/user/username/projects/myProject/pkg1/dist/index.d.ts]
5 //// [/user/username/projects/myProject/pkg1/dist/types.d.ts]
21 {"name":"@raymondfeng/pkg1","version":"1.0.0","main":"dist/index.js","typings":"dist/index.d.ts"}
23 //// [/user/username/projects/myproject/pkg2/dist/index.d.ts]
26 //// [/user/username/projects/myproject/pkg2/dist/types.d.ts]
30 {"name":"@raymondfeng/pkg2","version":"1.0.0","main":"dist/index.js","typings":"dist/index.d.ts"}
40 {"compilerOptions":{"outDir":"dist","rootDir":"src","target":"es5","module":"commonjs","strict":tru…
60 …e named without a reference to '../../pkg2/node_modules/@raymondfeng/pkg1/dist'. This is likely no…
67 pkg1/dist/types.d.ts
68 Imported via './types' from file 'pkg1/dist/index.d.ts'
[all …]
Dwhen-pkg-references-sibling-package-through-indirect-symlink.js2 //// [/user/username/projects/myproject/pkg1/dist/index.d.ts]
5 //// [/user/username/projects/myproject/pkg1/dist/types.d.ts]
21 {"name":"@raymondfeng/pkg1","version":"1.0.0","main":"dist/index.js","typings":"dist/index.d.ts"}
23 //// [/user/username/projects/myproject/pkg2/dist/index.d.ts]
26 //// [/user/username/projects/myproject/pkg2/dist/types.d.ts]
30 {"name":"@raymondfeng/pkg2","version":"1.0.0","main":"dist/index.js","typings":"dist/index.d.ts"}
40 {"compilerOptions":{"outDir":"dist","rootDir":"src","target":"es5","module":"commonjs","strict":tru…
60 …e named without a reference to '../../pkg2/node_modules/@raymondfeng/pkg1/dist'. This is likely no…
67 pkg1/dist/types.d.ts
68 Imported via './types' from file 'pkg1/dist/index.d.ts'
[all …]
/third_party/node/deps/npm/node_modules/har-validator/node_modules/ajv/scripts/
Dpublish-built-version6 echo "About to publish $TRAVIS_TAG to ajv-dist..."
11 git clone https://${GITHUB_TOKEN}@github.com/ajv-validator/ajv-dist.git ../ajv-dist
13 rm -rf ../ajv-dist/dist
14 mkdir ../ajv-dist/dist
15 cp ./dist/ajv.* ../ajv-dist/dist
16 cat bower.json | sed 's/"name": "ajv"/"name": "ajv-dist"/' > ../ajv-dist/bower.json
17 cd ../ajv-dist
/third_party/python/Doc/
DMakefile24 suspicious coverage doctest pydoc-topics htmlview clean dist check serve \
43 @echo " dist to create a \"dist\" directory with archived docs for download"
157 dist: target
158 rm -rf dist
159 mkdir -p dist
163 cp -pPR build/html dist/python-$(DISTVERSION)-docs-html
164 tar -C dist -cf dist/python-$(DISTVERSION)-docs-html.tar python-$(DISTVERSION)-docs-html
165 bzip2 -9 -k dist/python-$(DISTVERSION)-docs-html.tar
166 (cd dist; zip -q -r -9 python-$(DISTVERSION)-docs-html.zip python-$(DISTVERSION)-docs-html)
167 rm -r dist/python-$(DISTVERSION)-docs-html
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
Dbernoulli_distribution_test.cc73 absl::bernoulli_distribution dist(p); in TEST_P() local
75 if (dist(rng)) yes++; in TEST_P()
139 auto generate = [&urbg](absl::bernoulli_distribution& dist) { in TEST() argument
144 output.append(dist(urbg) ? "1" : "0"); in TEST()
151 absl::bernoulli_distribution dist(kP); in TEST() local
152 auto v = generate(dist); in TEST()
154 EXPECT_EQ(v, "00000000000010000000000010000000000") << dist; in TEST()
157 absl::bernoulli_distribution dist(kP * 10.0); in TEST() local
158 auto v = generate(dist); in TEST()
160 EXPECT_EQ(v, "00000100010010010010000011000011010") << dist; in TEST()
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/test/
Dtest-process-release.js17 baseUrl: 'https://nodejs.org/dist/v0.8.20/',
18 tarballUrl: 'https://nodejs.org/dist/v0.8.20/node-v0.8.20.tar.gz',
19 shasumsUrl: 'https://nodejs.org/dist/v0.8.20/SHASUMS256.txt',
21 ia32: { libUrl: 'https://nodejs.org/dist/v0.8.20/node.lib', libPath: 'node.lib' },
22 x64: { libUrl: 'https://nodejs.org/dist/v0.8.20/x64/node.lib', libPath: 'x64/node.lib' },
23 arm64: { libUrl: 'https://nodejs.org/dist/v0.8.20/arm64/node.lib', libPath: 'arm64/node.lib' }
38 baseUrl: 'https://nodejs.org/dist/v0.10.21/',
39 tarballUrl: 'https://nodejs.org/dist/v0.10.21/node-v0.10.21.tar.gz',
40 shasumsUrl: 'https://nodejs.org/dist/v0.10.21/SHASUMS256.txt',
42 ia32: { libUrl: 'https://nodejs.org/dist/v0.10.21/node.lib', libPath: 'node.lib' },
[all …]
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/release/
Dmakemacpkg.in116 mkdir -p $TMPDIR/dist.x86
118 make install DESTDIR=$TMPDIR/dist.x86
121 -arch i386 $TMPDIR/dist.x86/$LIBDIR/$LIBJPEG_DSO_NAME \
125 -arch i386 $TMPDIR/dist.x86/$LIBDIR/libjpeg.a \
129 -arch i386 $TMPDIR/dist.x86/$LIBDIR/$TURBOJPEG_DSO_NAME \
133 -arch i386 $TMPDIR/dist.x86/$LIBDIR/libturbojpeg.a \
137 -arch i386 $TMPDIR/dist.x86/$BINDIR/cjpeg \
141 -arch i386 $TMPDIR/dist.x86/$BINDIR/djpeg \
145 -arch i386 $TMPDIR/dist.x86/$BINDIR/jpegtran \
149 -arch i386 $TMPDIR/dist.x86/$BINDIR/tjbench \
[all …]
/third_party/protobuf/
Dpost_process_dist.sh3 # This script takes the result of "make dist" and:
7 # "make dist" process does not correct for this, so the result is that
8 # the entire dist is still marked read-only when unpacked, which is
14 # deposites them in the "dist" directory. In the .zip version, all
34 # Create a directory called "dist", copy the tarball there and unpack it.
35 mkdir dist
36 cp $1 dist
37 cd dist
46 # Build the dist again in .tar.gz
48 make dist-gzip
[all …]
/third_party/node/deps/npm/node_modules/uri-js/
Dpackage.json55 "dist",
88 "main": "dist/es5/uri.all.js",
96 …"build:es5": "rollup -c && cp dist/esnext/uri.d.ts dist/es5/uri.all.d.ts && npm run build:es5:fix-…
97 "build:es5:fix-sourcemap": "sorcery -i dist/es5/uri.all.js",
98dist/es5/uri.all.js --support-ie8 --output dist/es5/uri.all.min.js --in-source-map dist/es5/uri.al…
100 "clean": "rm -rf dist",
101 "test": "mocha -u mocha-qunit-ui dist/es5/uri.all.js tests/tests.js"
103 "types": "dist/es5/uri.all.d.ts",
/third_party/node/deps/npm/node_modules/libnpmpublish/test/
Dunpublish.js20 'dist-tags': {
26 dist: { property
45 'dist-tags': {
51 dist: { property
70 'dist-tags': {
76 dist: { property
97 'dist-tags': {
103 dist: { property
109 dist: { property
119 'dist-tags': {
[all …]
/third_party/typescript/tests/baselines/reference/
DdeclarationEmitReexportedSymlinkReference2.types1 === tests/cases/compiler/monorepo/pkg1/dist/index.d.ts ===
3 No type information for this code.=== tests/cases/compiler/monorepo/pkg1/dist/types.d.ts ===
35 === tests/cases/compiler/monorepo/pkg2/dist/index.d.ts ===
38 No type information for this code.=== tests/cases/compiler/monorepo/pkg2/dist/types.d.ts ===
40 >MetadataAccessor : typeof import("tests/cases/compiler/monorepo/pkg1/dist/index").MetadataAccessor
42 === tests/cases/compiler/monorepo/pkg2/dist/secondary.d.ts ===
53 >ADMIN : MetadataAccessor<boolean, import("tests/cases/compiler/monorepo/pkg1/dist/index").IdType>
54 …n>('1') : MetadataAccessor<boolean, import("tests/cases/compiler/monorepo/pkg1/dist/index").IdType>
55 …mport("tests/cases/compiler/monorepo/pkg1/dist/index").IdType = import("tests/cases/compiler/monor…
57 …mport("tests/cases/compiler/monorepo/pkg1/dist/index").IdType = import("tests/cases/compiler/monor…
/third_party/typescript/src/testRunner/unittests/tsbuild/
DoutputPaths.ts41 outDir: "dist"
46 }, ["/src/dist/index.js"]);
54 outDir: "dist",
65 …map.set("/src/dist/tsconfig.tsbuildinfo", CleanBuildDescrepancy.CleanFileTextDifferent); // tsbuil…
70 }, ["/src/dist/src/index.js", "/src/dist/src/index.d.ts"]);
78 outDir: "dist",
84 }, ["/src/dist/index.js"]);
93 outDir: "dist",
99 }, ["/src/dist/index.js"]);
108 outDir: "dist",
[all …]

12345678910>>...63