Home
last modified time | relevance | path

Searched refs:versions (Results 1 – 25 of 2877) sorted by relevance

12345678910>>...116

/third_party/node/deps/npm/test/tap/
Dpick-manifest-from-registry-metadata.js11 versions: { property
19 var versions = Object.keys(metadata.versions)
20 var selected = pickManifest('^1.0.0', 'latest', versions, metadata)
23 selected = pickManifest('^1.0.0', 'example', versions, metadata)
34 versions: { property
42 var versions = Object.keys(metadata.versions)
43 var selected = pickManifest('~1.0.0', 'latest', versions, metadata)
52 versions: { property
59 var versions = Object.keys(metadata.versions)
60 var selected = pickManifest('>=1.0.0 <2', 'example', versions, metadata)
[all …]
/third_party/grpc/src/core/tsi/alts/handshaker/
Dtransport_security_common_api.cc26 grpc_gcp_rpc_protocol_versions* versions, uint32_t max_major, in grpc_gcp_rpc_protocol_versions_set_max() argument
28 if (versions == nullptr) { in grpc_gcp_rpc_protocol_versions_set_max()
34 versions->max_rpc_version.major = max_major; in grpc_gcp_rpc_protocol_versions_set_max()
35 versions->max_rpc_version.minor = max_minor; in grpc_gcp_rpc_protocol_versions_set_max()
40 grpc_gcp_rpc_protocol_versions* versions, uint32_t min_major, in grpc_gcp_rpc_protocol_versions_set_min() argument
42 if (versions == nullptr) { in grpc_gcp_rpc_protocol_versions_set_min()
48 versions->min_rpc_version.major = min_major; in grpc_gcp_rpc_protocol_versions_set_min()
49 versions->min_rpc_version.minor = min_minor; in grpc_gcp_rpc_protocol_versions_set_min()
54 const grpc_gcp_rpc_protocol_versions* versions, grpc_slice* slice) { in grpc_gcp_rpc_protocol_versions_encode() argument
55 if (versions == nullptr || slice == nullptr) { in grpc_gcp_rpc_protocol_versions_encode()
[all …]
Dtransport_security_common_api.h54 grpc_gcp_rpc_protocol_versions* versions, uint32_t max_major,
68 grpc_gcp_rpc_protocol_versions* versions, uint32_t min_major,
81 const grpc_gcp_rpc_protocol_versions* versions, grpc_slice* slice);
94 const grpc_gcp_RpcProtocolVersions* versions, upb_arena* arena,
108 const grpc_slice& slice, grpc_gcp_rpc_protocol_versions* versions);
114 grpc_gcp_rpc_protocol_versions* versions,
122 grpc_gcp_RpcProtocolVersions* versions, upb_arena* arena,
/third_party/node/test/parallel/
Dtest-trace-events-metadata.js35 trace.args.node === process.versions.node));
39 trace.args.process.versions.http_parser ===
40 process.versions.http_parser &&
41 trace.args.process.versions.llhttp ===
42 process.versions.llhttp &&
43 trace.args.process.versions.node ===
44 process.versions.node &&
45 trace.args.process.versions.v8 ===
46 process.versions.v8 &&
47 trace.args.process.versions.uv ===
[all …]
Dtest-process-versions.js30 const actual_keys = Object.keys(process.versions).sort();
36 assert(commonTemplate.test(process.versions.ares));
37 assert(commonTemplate.test(process.versions.brotli));
38 assert(commonTemplate.test(process.versions.llhttp));
39 assert(commonTemplate.test(process.versions.node));
40 assert(commonTemplate.test(process.versions.uv));
41 assert(commonTemplate.test(process.versions.zlib));
44 .test(process.versions.v8));
45 assert(/^\d+$/.test(process.versions.modules));
48 assert(/^\d+\.\d+\.\d+[a-z]?(-fips)?$/.test(process.versions.openssl));
[all …]
/third_party/nghttp2/doc/_themes/sphinx_rtd_theme/static/css/
Dbadge_only.css1versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:L…
/third_party/typescript/tests/baselines/reference/
DdeclarationEmitOutFileBundlePaths.symbols1 === tests/cases/compiler/js/versions.static.js ===
4 >"@a/b" : Symbol("@a/b", Decl(versions.static.js, 0, 16))
7 >"@a/c" : Symbol("@a/c", Decl(versions.static.js, 1, 20))
11 import versions from './versions.static.js';
12 >versions : Symbol(versions, Decl(index.js, 0, 6))
15 versions
16 >versions : Symbol(versions, Decl(index.js, 2, 8))
DdeclarationEmitOutFileBundlePaths.types1 === tests/cases/compiler/js/versions.static.js ===
15 import versions from './versions.static.js';
16 >versions : { "@a/b": string; "@a/c": string; }
19 versions
20 >versions : { "@a/b": string; "@a/c": string; }
DdeclarationEmitOutFileBundlePaths.js9 import versions from './versions.static.js';
12 versions
27 export { versions };
28 import versions from "versions.static";
/third_party/node/deps/npm/lib/utils/
Dpick-manifest-from-registry-metadata.js7 function pickManifestFromRegistryMetadata (spec, tag, versions, metadata) { argument
8 log.silly('pickManifestFromRegistryMetadata', 'spec', spec, 'tag', tag, 'versions', versions)
13 metadata.versions[tagged] &&
15 return {resolvedTo: tag, manifest: metadata.versions[tagged]}
18 var ms = semver.maxSatisfying(versions, spec, true)
20 return {resolvedTo: ms, manifest: metadata.versions[ms]}
21 } else if (spec === '*' && versions.length && tagged && metadata.versions[tagged]) {
22 return {resolvedTo: tag, manifest: metadata.versions[tagged]}
/third_party/node/deps/npm/node_modules/semver/bin/
Dsemver8 var versions = []
52 versions.push(argv.shift())
77 versions.push(a)
84 versions = versions.map(function (v) {
89 if (!versions.length) return fail()
90 if (inc && (versions.length !== 1 || range.length)) { return failInc() }
93 versions = versions.filter(function (v) {
96 if (!versions.length) return fail()
98 return success(versions)
110 versions.sort(function (a, b) {
/third_party/node/deps/npm/node_modules/npm-pick-manifest/
Dindex.js23 const versions = Object.keys(packument.versions || {}).filter(v => {
28 ? Object.keys(policyRestrictions.versions) : []
38 if (!versions.length && !restrictedVersions.length) {
62 packument.versions[tagVersion] &&
70 const undeprecated = versions.filter(v => !packument.versions[v].deprecated && enjoyableBy(v)
75 const stillFresh = versions.filter(enjoyableBy)
93 const stillFresh = versions.filter(v =>
105 packument.versions[target]
109 const isForbidden = target && policyRestrictions && policyRestrictions.versions[target]
129 err.versions = versions
/third_party/node/deps/npm/node_modules/libnpmpublish/test/
Dpublish.js40 versions: { property
43 _nodeVersion: process.versions.node,
98 versions: { property
101 _nodeVersion: process.versions.node,
157 versions: {}, property
168 versions: { property
171 _nodeVersion: process.versions.node,
194 versions: { property
197 _nodeVersion: process.versions.node,
226 versions: Object.assign({}, currentPackument.versions, newPackument.versions), property
[all …]
/third_party/node/test/doctool/
Dtest-doctool-versions.mjs13 new URL('../../tools/doc/versions.mjs', import.meta.url));
15 // At the time of writing these are the minimum expected versions.
16 // New versions of Node.js do not have to be explicitly added here.
32 const versionsFile = path.join(tmpdir.path, 'versions.json');
41 const versions = JSON.parse(fs.readFileSync(versionsFile)); constant
42 debuglog(versions);
45 for (const version of versions) {
56 // Odd-numbered versions of Node.js are never LTS.
62 // Check that the minimum number of versions were returned.
63 // Later versions are allowed, but not checked for here (they were checked
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/lib/
Dlist.js12 function onreaddir (err, versions) { argument
17 if (Array.isArray(versions)) {
18 versions = versions.filter(function (v) { return v !== 'current' })
20 versions = []
22 callback(null, versions)
/third_party/boost/libs/vmd/doc/
Dvmd_compilers.qbk13 gcc versions 4.8 through 9.2.
14 VC++ versions 8.0 through 14.2.
15 clang targeting gcc versions 3.7 through 9.0
16 clang targeting VC++ versions 3.9 through 9.0
19 gcc versions 4.4 through 9.2
20 clang versions 3.3 through 9.0
23 Not all versions compile all tests successfully.
/third_party/skia/third_party/externals/egl-registry/api/
Dgenheaders.py279 versions = allVersions,
298 versions = allVersions,
317 versions = allVersions,
336 versions = allVersions,
355 versions = gles2onlyPat,
374 versions = gles2onlyPat,
393 versions = gles2through32Pat,
412 versions = gles2through31Pat,
431 versions = gles2through30Pat,
450 versions = gles2onlyPat,
[all …]
/third_party/skia/third_party/externals/opengl-registry/xml/
Dgenglvnd.py278 versions = allVersions,
297 versions = allVersions,
316 versions = allVersions,
335 versions = allVersions,
354 versions = allVersions,
373 versions = gles2onlyPat,
392 versions = gles2onlyPat,
411 versions = gles2through32Pat,
430 versions = gles2through31Pat,
449 versions = gles2through30Pat,
[all …]
Dgenheaders.py277 versions = allVersions,
296 versions = allVersions,
315 versions = allVersions,
334 versions = allVersions,
353 versions = gles2onlyPat,
372 versions = gles2onlyPat,
391 versions = gles2through32Pat,
410 versions = gles2through31Pat,
429 versions = gles2through30Pat,
448 versions = gles2onlyPat,
[all …]
/third_party/openGLES/xml/
Dgenglvnd.py248 versions = allVersions,
267 versions = allVersions,
286 versions = allVersions,
305 versions = allVersions,
324 versions = allVersions,
343 versions = gles2onlyPat,
362 versions = gles2onlyPat,
381 versions = gles2through32Pat,
400 versions = gles2through31Pat,
419 versions = gles2through30Pat,
[all …]
Dgenheaders.py199 versions = allVersions,
218 versions = allVersions,
237 versions = allVersions,
256 versions = allVersions,
275 versions = gles2onlyPat,
294 versions = gles2onlyPat,
313 versions = gles2through32Pat,
332 versions = gles2through31Pat,
351 versions = gles2through30Pat,
370 versions = gles2onlyPat,
[all …]
/third_party/node/deps/npm/node_modules/package-json/
Dindex.js40 data = data.versions[data['dist-tags'][version]];
42 if (!data.versions[version]) {
43 const versions = Object.keys(data.versions);
44 version = semver.maxSatisfying(versions, version);
51 data = data.versions[version];
/third_party/EGL/api/
Dgenheaders.py204 versions = allVersions,
223 versions = allVersions,
242 versions = allVersions,
261 versions = allVersions,
280 versions = gles2onlyPat,
299 versions = gles2onlyPat,
318 versions = gles2through32Pat,
337 versions = gles2through31Pat,
356 versions = gles2through30Pat,
375 versions = gles2onlyPat,
[all …]
/third_party/boost/libs/convert/doc/
Dlimitations.qbk9 …eteness of SFINAE support varies with different compilers and different versions of those compiler…
11 * CLANG. Successfully tested with versions from 2.9 to 3.6;
13 * GCC. Successfully tested with versions from 4.2.1 through to 5.0. Earlier versions were not teste…
15 * Intel C++ compiler. Successfully tested with versions from 12.1 forward. Earlier versions fail to…
17 * MSVC. Successfully tested from MSVC 2013 (msvc-12.0) forward. Earlier versions had some component…
/third_party/cef/tools/cefbuilds/
Dcef_json_builder_test.py186 versions = (
192 for version, partial_version in versions:
252 versions = [
261 for version in versions:
271 self.assertEqual(len(files), len(platforms) * len(versions) * len(types))
274 for version in versions:
280 self.assertEqual(len(files), len(platforms) * len(versions))
284 self.assertEqual(len(files), len(types) * len(versions))
289 for version in versions:
299 versions = ['3.2704.1414.g185cd6c', '74.0.1+g62d140e+chromium-74.0.3729.6']
[all …]

12345678910>>...116