Home
last modified time | relevance | path

Searched full:manifest (Results 1 – 25 of 5710) sorted by relevance

12345678910>>...229

/external/libtextclassifier/java/tests/instrumentation/src/com/android/textclassifier/downloader/
DDownloadedModelDatabaseTest.java27 import com.android.textclassifier.downloader.DownloadedModelDatabase.Manifest;
47 private static final String MANIFEST_URL = "https://manifest.url";
85 Manifest manifest = in insertManifestAndRead() local
86 Manifest.create(MANIFEST_URL, Manifest.STATUS_SUCCEEDED, /* failureCounts= */ 0); in insertManifestAndRead()
87 db.dao().insert(manifest); in insertManifestAndRead()
88 List<Manifest> manifests = db.dao().queryAllManifests(); in insertManifestAndRead()
89 assertThat(manifests).containsExactly(manifest); in insertManifestAndRead()
94 Manifest manifest = in insertManifestAndDelete() local
95 Manifest.create(MANIFEST_URL, Manifest.STATUS_SUCCEEDED, /* failureCounts= */ 0); in insertManifestAndDelete()
96 db.dao().insert(manifest); in insertManifestAndDelete()
[all …]
/external/pigweed/pw_build_mcuxpresso/py/tests/
Dcomponents_test.py32 <manifest>
41 </manifest>
43 manifest = (
45 pathlib.Path.cwd() / "manifest.xml",
47 project = Project([manifest], pathlib.Path.cwd(), ["*"], None)
56 <manifest>
61 </manifest>
63 manifest = (
65 pathlib.Path.cwd() / "manifest.xml",
67 project = Project([manifest], pathlib.Path.cwd(), ["*"], None)
[all …]
/external/google-cloud-java/java-video-transcoder/proto-google-cloud-video-transcoder-v1/src/main/java/com/google/cloud/video/transcoder/v1/
DManifest.java25 * Manifest configuration.
28 * Protobuf type {@code google.cloud.video.transcoder.v1.Manifest}
30 public final class Manifest extends com.google.protobuf.GeneratedMessageV3 class
32 // @@protoc_insertion_point(message_implements:google.cloud.video.transcoder.v1.Manifest)
35 // Use Manifest.newBuilder() to construct.
36 private Manifest(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Manifest() method in Manifest
40 private Manifest() { in Manifest() method in Manifest
49 return new Manifest(); in newInstance()
68 com.google.cloud.video.transcoder.v1.Manifest.class, in internalGetFieldAccessorTable()
69 com.google.cloud.video.transcoder.v1.Manifest.Builder.class); in internalGetFieldAccessorTable()
[all …]
DManifestOrBuilder.java23 // @@protoc_insertion_point(interface_extends:google.cloud.video.transcoder.v1.Manifest)
30 * The name of the generated file. The default is `manifest` with the
31 * extension suffix corresponding to the `Manifest.type`.
43 * The name of the generated file. The default is `manifest` with the
44 * extension suffix corresponding to the `Manifest.type`.
57 * Required. Type of the manifest, can be `HLS` or `DASH`.
61 …* .google.cloud.video.transcoder.v1.Manifest.ManifestType type = 2 [(.google.api.field_behavior) =…
71 * Required. Type of the manifest, can be `HLS` or `DASH`.
75 …* .google.cloud.video.transcoder.v1.Manifest.ManifestType type = 2 [(.google.api.field_behavior) =…
80 com.google.cloud.video.transcoder.v1.Manifest.ManifestType getType(); in getType()
[all …]
/external/angle/build/config/win/
Dmanifest.gni7 # Use the windows_manifest template to declare a manifest generation step.
8 # This will combine all listed .manifest files. To link this manifest, just
9 # depend on the manifest target from your executable or shared library.
12 # the manifest declarations and dependencies do not need to be inside of OS
15 # A binary can depend on only one manifest target, but the manifest target
16 # can depend on many individual .manifest files which will be merged. As a
17 # result, only executables and shared libraries should depend on manifest
18 # targets. If you want to add a manifest to a component, put the dependency
23 # are also individual manifest files in that directory you can reference via
25 # You might combine these with a custom manifest file to get specific behavior.
[all …]
/external/cronet/stable/third_party/apache-portable-runtime/src/test/
DMakefile.win160 @if exist "$@.manifest" \
161 mt.exe -manifest "$@.manifest" -outputresource:$@;1
165 @if exist "$@.manifest" \
166 mt.exe -manifest "$@.manifest" -outputresource:$@;2
170 @if exist "$@.manifest" \
171 mt.exe -manifest "$@.manifest" -outputresource:$@;1
175 @if exist "$@.manifest" \
176 mt.exe -manifest "$@.manifest" -outputresource:$@;1
182 @if exist "$@.manifest" \
183 mt.exe -manifest "$@.manifest" -outputresource:$@;1
[all …]
/external/cronet/tot/third_party/apache-portable-runtime/src/test/
DMakefile.win160 @if exist "$@.manifest" \
161 mt.exe -manifest "$@.manifest" -outputresource:$@;1
165 @if exist "$@.manifest" \
166 mt.exe -manifest "$@.manifest" -outputresource:$@;2
170 @if exist "$@.manifest" \
171 mt.exe -manifest "$@.manifest" -outputresource:$@;1
175 @if exist "$@.manifest" \
176 mt.exe -manifest "$@.manifest" -outputresource:$@;1
182 @if exist "$@.manifest" \
183 mt.exe -manifest "$@.manifest" -outputresource:$@;1
[all …]
/external/vboot_reference/futility/
Dupdater_manifest.c19 * the meta data is maintained by a "manifest" that described below.
38 * In the runtime, the updater should query for firmware manifest key (
40 * in the manifest database.
238 * Adds and copies one new model config to the existing list of given manifest.
242 struct manifest *manifest, in manifest_add_model() argument
246 manifest->num++; in manifest_add_model()
247 manifest->models = (struct model_config *)realloc( in manifest_add_model()
248 manifest->models, manifest->num * sizeof(*model)); in manifest_add_model()
249 if (!manifest->models) { in manifest_add_model()
253 model = &manifest->models[manifest->num - 1]; in manifest_add_model()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashMediaSource.java56 import com.google.android.exoplayer2.source.dash.manifest.AdaptationSet;
57 import com.google.android.exoplayer2.source.dash.manifest.DashManifest;
58 import com.google.android.exoplayer2.source.dash.manifest.DashManifestParser;
59 import com.google.android.exoplayer2.source.dash.manifest.Period;
60 import com.google.android.exoplayer2.source.dash.manifest.Representation;
61 import com.google.android.exoplayer2.source.dash.manifest.UtcTimingElement;
116 * manifest and media data.
127 * to load (and refresh) the manifest. May be {@code null} if the factory will only ever be
170 * no value is defined in the {@link MediaItem} or the manifest.
183 * Sets the manifest parser to parse loaded manifest data when loading a manifest URI.
[all …]
/external/bazelbuild-rules_android/src/tools/ak/generatemanifest/
Dgeneratemanifest_test.go46 name: "one manifest",
50 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
53 </manifest>`)},
58 name: "one manifest, lower then default min sdk",
62 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
65 </manifest>`)},
74 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
77 </manifest>`),
80 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
83 </manifest>`),
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/dash/src/main/java/com/google/android/exoplayer2/source/dash/
DDashMediaSource.java56 import com.google.android.exoplayer2.source.dash.manifest.AdaptationSet;
57 import com.google.android.exoplayer2.source.dash.manifest.DashManifest;
58 import com.google.android.exoplayer2.source.dash.manifest.DashManifestParser;
59 import com.google.android.exoplayer2.source.dash.manifest.Period;
60 import com.google.android.exoplayer2.source.dash.manifest.Representation;
61 import com.google.android.exoplayer2.source.dash.manifest.UtcTimingElement;
116 * manifest and media data.
127 * to load (and refresh) the manifest. May be {@code null} if the factory will only ever be
170 * no value is defined in the {@link MediaItem} or the manifest.
183 * Sets the manifest parser to parse loaded manifest data when loading a manifest URI.
[all …]
/external/libtextclassifier/java/src/com/android/textclassifier/downloader/
DDownloadedModelDatabase.java48 DownloadedModelDatabase.Manifest.class,
79 /** Rpresents a manifest we processed. */
82 tableName = "manifest",
84 abstract static class Manifest { class in DownloadedModelDatabase
91 /** Failed to download this manifest. Could be retried in the future. */
93 /** Downloaded this manifest successfully and it's currently in storage. */
110 public static Manifest create(String manifestUrl, @StatusDef int status, int failureCounts) { in create()
118 * <p>A manifest can include multiple models, a model can also be included in multiple manifests.
128 entity = Manifest.class,
161 * <p>For each unique user scenario (i.e. modelType + localTag), we store the manifest we should
[all …]
DDownloadedModelManager.java20 import com.android.textclassifier.downloader.DownloadedModelDatabase.Manifest;
57 * Returns the manifest entry if the manifest represented by the url is in our database.
59 * @param manifestUrl the manifest url
60 * @return manifest entry from internal database, null if not exist
63 Manifest getManifest(String manifestUrl); in getManifest()
66 * Returns the manifest enrollment entry if a manifest is registered for the given type and
71 * @return manifest enrollment entry from internal database, null if not exist
79 * <p>The model must be linked to a manifest via #registerManifest(). Otherwise it will be cleaned
88 * Add a newly downloaded manifest to the internal database.
90 * <p>The manifest must be linked to a specific use case via #registerManifestEnrollment().
[all …]
/external/google-cloud-java/java-video-live-stream/proto-google-cloud-live-stream-v1/src/main/java/com/google/cloud/video/livestream/v1/
DManifest.java25 * Manifest configuration.
28 * Protobuf type {@code google.cloud.video.livestream.v1.Manifest}
30 public final class Manifest extends com.google.protobuf.GeneratedMessageV3 class
32 // @@protoc_insertion_point(message_implements:google.cloud.video.livestream.v1.Manifest)
35 // Use Manifest.newBuilder() to construct.
36 private Manifest(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Manifest() method in Manifest
40 private Manifest() { in Manifest() method in Manifest
49 return new Manifest(); in newInstance()
68 com.google.cloud.video.livestream.v1.Manifest.class, in internalGetFieldAccessorTable()
69 com.google.cloud.video.livestream.v1.Manifest.Builder.class); in internalGetFieldAccessorTable()
[all …]
DManifestOrBuilder.java23 // @@protoc_insertion_point(interface_extends:google.cloud.video.livestream.v1.Manifest)
30 * The name of the generated file. The default is `manifest` with the
31 * extension suffix corresponding to the `Manifest`
32 * [type][google.cloud.video.livestream.v1.Manifest.type]. If multiple
45 * The name of the generated file. The default is `manifest` with the
46 * extension suffix corresponding to the `Manifest`
47 * [type][google.cloud.video.livestream.v1.Manifest.type]. If multiple
61 * Required. Type of the manifest, can be `HLS` or `DASH`.
65 …* .google.cloud.video.livestream.v1.Manifest.ManifestType type = 2 [(.google.api.field_behavior) =…
75 * Required. Type of the manifest, can be `HLS` or `DASH`.
[all …]
/external/robolectric/robolectric/src/test/java/org/robolectric/internal/
DDefaultManifestFactoryTest.java12 import org.robolectric.manifest.AndroidManifest;
25 AndroidManifest manifest = RobolectricTestRunner.createAndroidManifest(identifier); in identify() local
27 assertThat(manifest.getAndroidManifestFile()) in identify()
29 assertThat(manifest.getResDirectory()).isEqualTo(Paths.get("gradle/res")); in identify()
30 assertThat(manifest.getAssetsDirectory()).isEqualTo(Paths.get("gradle/assets")); in identify()
31 assertThat(manifest.getApkFile()).isNull(); in identify()
43 AndroidManifest manifest = RobolectricTestRunner.createAndroidManifest(identifier); in identify_withResourceApk() local
45 assertThat(manifest.getAndroidManifestFile()) in identify_withResourceApk()
47 assertThat(manifest.getResDirectory()).isEqualTo(Paths.get("gradle/res")); in identify_withResourceApk()
48 assertThat(manifest.getAssetsDirectory()).isEqualTo(Paths.get("gradle/assets")); in identify_withResourceApk()
[all …]
/external/bazelbuild-rules_rust/crate_universe/src/splicing/
Dsplicer.rs8 use cargo_toml::{Dependency, Manifest};
21 /// Splice a manifest which is represented by a Cargo workspace
24 manifest: &'a Manifest,
27 /// Splice a manifest for a single package. This includes cases where
31 manifest: &'a Manifest,
34 /// Splice a manifest from multiple disjoint Cargo manifests.
36 manifests: &'a BTreeMap<PathBuf, Manifest>,
46 manifests: &'a BTreeMap<PathBuf, Manifest>, in new() argument
51 let workspace_owned: BTreeMap<&PathBuf, &Manifest> = manifests in new()
53 .filter(|(_, manifest)| is_workspace_owned(manifest)) in new()
[all …]
/external/toolchain-utils/llvm_tools/
Dmanifest_utils.py5 """Provides utilities to read and edit the ChromiumOS Manifest entries.
7 While this code reads and edits the internal manifest, it should only operate
24 """Error occurred when formatting the manifest."""
28 """Error occurred when updating the manifest."""
32 """Error occurred when parsing the contents of the manifest."""
59 ManifestParseError if the manifest didn't have the expected contents.
71 ManifestParseError if the manifest didn't have the expected contents.
73 if xmlroot.tag != "manifest":
75 f"Root tag is {xmlroot.tag}; should be `manifest`."
80 raise ManifestParseError("No llvm-project `project` found in manifest.")
[all …]
/external/bazelbuild-rules_android/rules/android_application/
Dfeature_module_validation.sh17 manifest="${2}"
25 if [[ -n "$manifest" ]]; then
26 node_count=$("$xmllint" --xpath "count(//manifest/*)" "$manifest")
27 module_count=$("$xmllint" --xpath "count(//manifest/*[local-name()='module'])" "$manifest")
28 …application_count=$("$xmllint" --xpath "count(//manifest/*[local-name()='application'])" "$manifes…
29 application_attr_count=$("$xmllint" --xpath "count(//manifest/application/@*)" "$manifest")
30 application_content_count=$("$xmllint" --xpath "count(//manifest/application/*)" "$manifest")
31 …e_title=$("$xmllint" --xpath "string(//manifest/*[local-name()='module'][1]/@*[local-name()='title…
34 # Valid manifest, containing a dist:module and an empty <application/>
43 # Valid manifest, containing a dist:module
[all …]
/external/bazelbuild-rules_python/gazelle/manifest/
Dmanifest.go15 package manifest package
30 Manifest *Manifest `yaml:"manifest,omitempty"` member
31 // Integrity is the hash of the requirements.txt file and the Manifest for
37 // NewFile creates a new File with a given Manifest.
38 func NewFile(manifest *Manifest) *File { argument
39 return &File{Manifest: manifest}
42 // Encode encodes the manifest file to the given writer.
46 return fmt.Errorf("failed to encode manifest file: %w", err)
61 return fmt.Errorf("failed to encode manifest file: %w", err)
76 // calculateIntegrity calculates the integrity of the manifest file based on the
[all …]
/external/coreboot/src/security/intel/cbnt/
DKconfig13 Support. This will enable one to add a Key Manifest (KM) and a Boot
14 Policy Manifest (BPM) to the filesystem. It will also wrap a FIT around
26 bool "Generate Key Manifest (KM)"
32 Select y to generate the Key Manifest (KM).
36 bool "Only unsigned key manifest (KM)"
57 bool "Generate Boot Policy Manifest (BPM)"
61 Select y to generate the Boot Policy Manifest (BPM).
65 bool "Only unsigned boot policy manifest (BPM)"
116 string "Key manifest (KM) public key"
119 Location of the key manifest (KM) public key file in .pem format.
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/smoothstreaming/src/main/java/com/google/android/exoplayer2/source/smoothstreaming/
DSsMediaSource.java49 import com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifest;
50 import com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifest.StreamElement;
51 import com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifestParser;
95 * manifest and media data.
106 * to load (and refresh) the manifest. May be {@code null} if the factory will only ever be
152 * Sets the manifest parser to parse loaded manifest data when loading a manifest URI.
154 * @param manifestParser A parser for loaded manifest data.
194 * manifest.
196 * @param manifest The manifest. {@link SsManifest#isLive} must be false.
200 public SsMediaSource createMediaSource(SsManifest manifest) { in createMediaSource() argument
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/smoothstreaming/src/main/java/com/google/android/exoplayer2/source/smoothstreaming/
DSsMediaSource.java49 import com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifest;
50 import com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifest.StreamElement;
51 import com.google.android.exoplayer2.source.smoothstreaming.manifest.SsManifestParser;
95 * manifest and media data.
106 * to load (and refresh) the manifest. May be {@code null} if the factory will only ever be
152 * Sets the manifest parser to parse loaded manifest data when loading a manifest URI.
154 * @param manifestParser A parser for loaded manifest data.
194 * manifest.
196 * @param manifest The manifest. {@link SsManifest#isLive} must be false.
200 public SsMediaSource createMediaSource(SsManifest manifest) { in createMediaSource() argument
[all …]
/external/arm-trusted-firmware/plat/common/
Dplat_spmd_manifest.c37 ERROR("Missing FFA %s version in SPM Core manifest.\n", in manifest_parse_attribute()
44 ERROR("Missing FFA %s version in SPM Core manifest.\n", in manifest_parse_attribute()
51 ERROR("Missing SPMC ID in manifest.\n"); in manifest_parse_attribute()
59 NOTICE("%s not specified in SPM Core manifest.\n", in manifest_parse_attribute()
65 NOTICE("%s not specified in SPM Core manifest.\n", in manifest_parse_attribute()
71 NOTICE("%s not specified in SPM Core manifest.\n", in manifest_parse_attribute()
77 NOTICE("%s not specified in SPM Core manifest.\n", in manifest_parse_attribute()
81 VERBOSE("SPM Core manifest attribute section:\n"); in manifest_parse_attribute()
94 static int manifest_parse_root(spmc_manifest_attribute_t *manifest, in manifest_parse_root() argument
100 assert(manifest != NULL); in manifest_parse_root()
[all …]
/external/trusty/arm-trusted-firmware/plat/common/
Dplat_spmd_manifest.c37 ERROR("Missing FFA %s version in SPM Core manifest.\n", in manifest_parse_attribute()
44 ERROR("Missing FFA %s version in SPM Core manifest.\n", in manifest_parse_attribute()
51 ERROR("Missing SPMC ID in manifest.\n"); in manifest_parse_attribute()
59 NOTICE("%s not specified in SPM Core manifest.\n", in manifest_parse_attribute()
65 NOTICE("%s not specified in SPM Core manifest.\n", in manifest_parse_attribute()
71 NOTICE("%s not specified in SPM Core manifest.\n", in manifest_parse_attribute()
77 NOTICE("%s not specified in SPM Core manifest.\n", in manifest_parse_attribute()
81 VERBOSE("SPM Core manifest attribute section:\n"); in manifest_parse_attribute()
94 static int manifest_parse_root(spmc_manifest_attribute_t *manifest, in manifest_parse_root() argument
100 assert(manifest != NULL); in manifest_parse_root()
[all …]

12345678910>>...229