/third_party/node/deps/npm/test/lib/commands/ |
H A D | owner.js | 45 const manifest = mockRegistry.manifest({ 49 return mockRegistry.package({ manifest }) 72 const manifest = registry.manifest({ 76 await registry.package({ manifest }) 136 const manifest = registry.manifest({ 140 await registry.package({ manifest }) 152 const manifest [all...] |
H A D | ci.js | 68 const manifest = registry.manifest({ name: 'abbrev' }) 70 manifest: manifest.versions['1.0.0'], 91 const manifest = registry.manifest({ name: 'abbrev' }) 93 manifest: manifest.versions['1.0.0'], 128 const manifest = registry.manifest({ nam [all...] |
/third_party/python/Tools/scripts/ |
H A D | stable_abi.py | 1 """Check the stable ABI manifest or generate files from it 7 (relative to the manifest file, as they appear in the CPython codebase). 51 # The stable ABI manifest (Misc/stable_abi.toml) exists only to fill the 69 """Yield selected items of the manifest 93 """Yield lines to recreate the manifest file (sans comments/newlines)""" 150 manifest = Manifest() 158 manifest.add(item) 163 return manifest 167 # manifest. (Checking works by generating a temp file & comparing.) 183 def gen_python3dll(manifest, arg [all...] |
/third_party/ffmpeg/tests/fate/ |
H A D | webm-dash-manifest.mak | 1 FATE_WEBM_DASH_MANIFEST += fate-webm-dash-manifest 2 fate-webm-dash-manifest: CMD = run $(FFMPEG) -nostdin -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_video1.webm -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_video2.webm -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_audio1.webm -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_audio2.webm -c copy -map 0 -map 1 -map 2 -map 3 -f webm_dash_manifest -adaptation_sets "id=0,streams=0,1 id=1,streams=2,3" - 4 FATE_WEBM_DASH_MANIFEST += fate-webm-dash-manifest-unaligned-video-streams 5 fate-webm-dash-manifest-unaligned-video-streams: CMD = run $(FFMPEG) -nostdin -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_video1.webm -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_video3.webm -c copy -map 0 -map 1 -f webm_dash_manifest -adaptation_sets "id=0,streams=0,1" - 7 FATE_WEBM_DASH_MANIFEST += fate-webm-dash-manifest-unaligned-audio-streams 8 fate-webm-dash-manifest-unaligned-audio-streams: CMD = run $(FFMPEG) -nostdin -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_audio1.webm -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_audio3.webm -c copy -map 0 -map 1 -f webm_dash_manifest -adaptation_sets "id=0,streams=0,1" - 10 FATE_WEBM_DASH_MANIFEST += fate-webm-dash-manifest-representations 11 fate-webm-dash-manifest-representations: CMD = run $(FFMPEG) -nostdin -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_video1.webm -f webm_dash_manifest -i $(TARGET_SAMPLES)/vp8/dash_video4.webm -c copy -map 0 -map 1 -f webm_dash_manifest -adaptation_sets "id=0,streams=0,1" - 13 FATE_WEBM_DASH_MANIFEST += fate-webm-dash-manifest-live 14 fate-webm-dash-manifest [all...] |
/third_party/node/deps/npm/lib/commands/ |
H A D | view.js | 92 const manifest = await readJson(resolve(dir, 'package.json')) 93 if (!manifest.name) { 97 pkg = `${manifest.name}${pkg.slice(1)}` 320 prettyView (packu, manifest) { 330 const unpackedSize = manifest.dist.unpackedSize && 331 formatBytes(manifest.dist.unpackedSize, true) 332 const licenseField = manifest.license || 'Proprietary' 334 name: chalk.green(manifest.name), 335 version: chalk.green(manifest.version), 336 bins: Object.keys(manifest [all...] |
/third_party/python/Lib/distutils/tests/ |
H A D | test_msvc9compiler.py | 10 # A manifest with the only assembly reference being the msvcrt assembly, so 37 # A manifest with references to assemblies other than msvcrt. When processed, 144 manifest = os.path.join(tempdir, 'manifest') 145 f = open(manifest, 'w') 152 compiler._remove_visual_c_ref(manifest) 155 f = open(manifest) 162 # makes sure the manifest was properly cleaned 168 manifest = os.path.join(tempdir, 'manifest') [all...] |
H A D | test_sdist.py | 243 manifest = f.read() 246 self.assertEqual(manifest, MANIFEST % {'sep': os.sep}) 294 self.assertEqual(cmd.manifest, 'MANIFEST') 310 # of a traceback when parsing an invalid manifest template 326 # this manifest command takes one argument 347 f = open(cmd.manifest) 349 manifest = [line.strip() for line in f.read().split('\n') 354 self.assertEqual(len(manifest), 5) 366 f = open(cmd.manifest) 384 f = open(cmd.manifest) [all...] |
/third_party/libwebsockets/scripts/ |
H A D | esp32.mk | 76 .PHONY: manifest 77 manifest: 79 echo "Usage make F=<factory app dir> A=<app dir> manifest" 83 echo "Usage make F=<factory app dir> A=<app dir> manifest" 86 echo -n -e "{\r\n\"app\": " > build/manifest.json 87 cat $(A)/build/json-buildinfo >> build/manifest.json 88 echo -n -e ", \"factory\": " >> build/manifest.json 89 cat $(F)/build/json-buildinfo >> build/manifest.json 90 echo -n -e "\r\n}\r\n" >> build/manifest.json 114 upload: manifest [all...] |
/third_party/node/lib/internal/modules/ |
H A D | package_json_reader.js | 24 let manifest; 120 if (manifest === undefined) { 122 manifest = getOptionValue('--experimental-policy') ? 123 require('internal/process/policy').manifest : 126 if (manifest !== null) { 128 manifest.assertIntegrity(jsonURL, string);
|
/third_party/node/test/parallel/ |
H A D | test-policy-parse-integrity.js | 48 function test({ shouldFail, integrity, manifest = {} }) { 49 manifest.resources = {}; 61 manifest.resources[url] = { 66 fs.writeFileSync(policyFilepath, JSON.stringify(manifest, null, 2)); 101 manifest: { 108 manifest: {
|
H A D | test-policy-dependency-conditions.js | 9 const Manifest = require('internal/policy/manifest').Manifest; 79 const manifest = new Manifest({ 88 const redirector = manifest.getDependencyMapper('test:_');
|
/third_party/alsa-lib/src/topology/ |
H A D | builder.c | 151 sizeof(tplg->manifest) + in calc_manifest_size() 152 tplg->manifest.priv.size; in calc_manifest_size() 203 /* write the manifest including its private data */ 211 sizeof(tplg->manifest) + tplg->manifest.priv.size, 1); in write_manifest_data() 213 SNDERR("failed to write manifest block"); in write_manifest_data() 217 tplg_log(tplg, 'B', tplg->bin_pos, "manifest: write %d bytes", in write_manifest_data() 218 sizeof(tplg->manifest)); in write_manifest_data() 219 ret = twrite(tplg, &tplg->manifest, sizeof(tplg->manifest)); in write_manifest_data() [all...] |
/third_party/python/Lib/distutils/command/ |
H A D | sdist.py | 48 "name of manifest template file [default: MANIFEST.in]"), 49 ('manifest=', 'm', 50 "name of manifest file [default: MANIFEST]"), 52 "include the default file set in the manifest " 62 ('manifest-only', 'o', 63 "just regenerate the manifest and then stop " 64 "(implies --force-manifest)"), 65 ('force-manifest', 'f', 66 "forcibly regenerate the manifest and carry on as usual. " 67 "Deprecated: now the manifest i [all...] |
/third_party/node/deps/npm/node_modules/pacote/lib/ |
H A D | dir.js | 25 static tarCreateOptions (manifest) { 26 return tarCreateOptions(manifest) 34 return this.manifest().then(mani => { 90 manifest () {
|
H A D | remote.js | 81 // getting a packument and/or manifest is the same as with a file: spec. 87 manifest () { 88 return FileFetcher.prototype.manifest.apply(this) 85 manifest () { global() class
|
/third_party/skia/build/fuchsia/skqp/ |
H A D | append_assets_to_manifest | 8 Opens |base_manifest| and copies the contents to |manifest| then traverses 9 |root_dir| and appends every file as a Fuchsia package manifest entry to 10 |manifest|. 20 parser.add_argument('--manifest', dest='manifest', action='store', required=True) 35 manifest = args.manifest variable 38 # Prepend |base_manifest| contents to |manifest|. 40 relative_path = os.path.relpath(args.manifest, root_build_dir) 43 out_file = open(manifest, ' [all...] |
/third_party/node/test/node-api/test_policy/ |
H A D | test_policy.js | 29 const manifest = { resources: {} }; 31 manifest.resources[url] = { integrity }; 33 fs.writeFileSync(policyFilepath, JSON.stringify(manifest, null, 2));
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-shape-complex-arabic-fallback.hh | 232 const Manifest &manifest = reinterpret_cast<const Manifest&> (arabic_win1256_gsub_lookups.manifest); in arabic_fallback_plan_init_win1256() local 238 unsigned int count = manifest.len; in arabic_fallback_plan_init_win1256() 241 fallback_plan->mask_array[j] = plan->map.get_1_mask (manifest[i].tag); in arabic_fallback_plan_init_win1256() 244 fallback_plan->lookup_array[j] = const_cast<OT::SubstLookup*> (&(&manifest+manifest[i].lookupOffset)); in arabic_fallback_plan_init_win1256()
|
/third_party/node/lib/internal/modules/cjs/ |
H A D | loader.js | 261 const manifest = policy()?.manifest; 262 if (manifest) { 264 redirects = manifest.getDependencyMapper(moduleURL); 1321 const manifest = policy()?.manifest; 1322 if (manifest) { 1324 redirects = manifest.getDependencyMapper(moduleURL); 1325 manifest.assertIntegrity(moduleURL, content); 1433 const manifest [all...] |
/third_party/rust/crates/syn/codegen/src/ |
H A D | version.rs | 9 let manifest = fs::read_to_string(syn_cargo_toml)?; in get() 10 let parsed: Manifest = toml::from_str(&manifest)?; in get()
|
/third_party/alsa-utils/topology/nhlt/ |
H A D | nhlt-processor.c | 134 snd_config_t *manifest; in merge_manifest_data() local 140 /* merge manifest struct and nhlt bytes as new config into existing SectionData*/ in merge_manifest_data() 145 ret = snd_config_search(data_section, data_name, &manifest); in merge_manifest_data() 149 ret = snd_config_search(manifest, "bytes", &old_bytes); in merge_manifest_data() 215 struct sof_manifest manifest; in manifest_create() local 247 manifest.count = 1; in manifest_create() 265 *dst++ = manifest.count; in manifest_create() 266 *dst++ = manifest.count >> 2; in manifest_create() 419 fprintf(stderr, "can't re-create manifest, err %d\n", ret); in do_nhlt() 425 fprintf(stderr, "can't merge manifest dat in do_nhlt() [all...] |
/third_party/skia/third_party/externals/brotli/scripts/ |
H A D | fix-win-bazel-build.py | 14 print('Scanning manifest ' + match) 16 with open(match) as manifest: 17 for entry in manifest:
|
/third_party/libphonenumber/tools/java/java-build/src/com/google/i18n/phonenumbers/buildtools/ |
H A D | JarPhonePrefixDataIOHandler.java | 63 Manifest manifest = new java.util.jar.Manifest(); in createJar() 64 manifest.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0"); in createJar()
|
/third_party/ninja/src/ |
H A D | build_test.cc | 520 void RebuildTarget(const string& target, const char* manifest,
540 void BuildTest::RebuildTarget(const string& target, const char* manifest,
in RebuildTarget() argument 547 AssertParse(pstate, manifest);
in RebuildTarget() 1174 // Note, different slashes from manifest.
in TEST_F() 1190 // using the slashes from the manifest.
in TEST_F() 1468 const char* manifest =
in TEST_F() local 1481 RebuildTarget("final.stamp", manifest);
in TEST_F() 1486 RebuildTarget("final.stamp", manifest, NULL, NULL, &save_state);
in TEST_F() 2499 const char* manifest =
in TEST_F() local 2507 ASSERT_NO_FATAL_FAILURE(AssertParse(&state, manifest));
in TEST_F() 2567 const char* manifest = TEST_F() local 2635 const char* manifest = TEST_F() local 2665 const char* manifest = TEST_F() local 2744 const char* manifest = TEST_F() local 2894 const char* manifest = TEST_F() local 2956 const char* manifest = TEST_F() local 3017 const char* manifest = TEST_F() local 3102 const char* manifest = TEST_F() local 3166 const char* manifest = TEST_F() local 3191 const char* manifest = TEST_F() local 3245 const char* manifest = TEST_F() local 4196 const char* manifest = TEST_F() local [all...] |
/third_party/node/test/pummel/ |
H A D | test-policy-integrity-worker-commonjs.js | 123 const manifest = { 133 manifest.resources[pathToFileURL(filePath).href] = { 140 const manifestBody = JSON.stringify(manifest); 189 { config, manifest },
|