/aosp_15_r20/external/google-cloud-java/java-translate/proto-google-cloud-translate-v3beta1/src/main/java/com/google/cloud/translate/v3beta1/ |
H A D | DocumentOutputConfig.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 25 * A document translation request output config. 119 * Optional. Google Cloud Storage destination for the translation output, 122 * bucket must exist. If a file with the same name as the output file 124 * For a DocumentInputConfig.contents provided document, the output file 126 * - [trg] corresponds to the translated file's language code, 127 * - [ext] corresponds to the translated file's extension according to its 129 * For a DocumentInputConfig.gcs_uri provided document, the output file will 132 * "my_bucket" will have an output URI: 134 * - [trg] corresponds to the translated file's language code, [all …]
|
H A D | DocumentOutputConfigOrBuilder.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 30 * Optional. Google Cloud Storage destination for the translation output, 33 * bucket must exist. If a file with the same name as the output file 35 * For a DocumentInputConfig.contents provided document, the output file 37 * - [trg] corresponds to the translated file's language code, 38 * - [ext] corresponds to the translated file's extension according to its 40 * For a DocumentInputConfig.gcs_uri provided document, the output file will 43 * "my_bucket" will have an output URI: 45 * - [trg] corresponds to the translated file's language code, 46 * - [ext] corresponds to the translated file's extension according to its [all …]
|
H A D | BatchDocumentOutputConfig.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 25 * Output configuration for BatchTranslateDocument request. 117 * Google Cloud Storage destination for output content. 118 * For every single input document (for example, gs://a/b/c.[extension]), we 119 * generate at most 2 * n output files. (n is the # of target_language_codes 132 * no content to output. 134 * translated output/error when we apply glossaries. They could also be 135 * empty if we have no content to output. 136 * Once a row is present in index.csv, the input/output matching never 138 * processed and ready to be consumed (that is, no partial output file is [all …]
|
/aosp_15_r20/external/google-cloud-java/java-translate/proto-google-cloud-translate-v3/src/main/java/com/google/cloud/translate/v3/ |
H A D | DocumentOutputConfig.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 25 * A document translation request output config. 119 * Optional. Google Cloud Storage destination for the translation output, 122 * bucket must exist. If a file with the same name as the output file 124 * For a DocumentInputConfig.contents provided document, the output file 126 * - [trg] corresponds to the translated file's language code, 127 * - [ext] corresponds to the translated file's extension according to its 129 * For a DocumentInputConfig.gcs_uri provided document, the output file will 132 * "my_bucket" will have an output URI: 134 * - [trg] corresponds to the translated file's language code, [all …]
|
H A D | DocumentOutputConfigOrBuilder.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 30 * Optional. Google Cloud Storage destination for the translation output, 33 * bucket must exist. If a file with the same name as the output file 35 * For a DocumentInputConfig.contents provided document, the output file 37 * - [trg] corresponds to the translated file's language code, 38 * - [ext] corresponds to the translated file's extension according to its 40 * For a DocumentInputConfig.gcs_uri provided document, the output file will 43 * "my_bucket" will have an output URI: 45 * - [trg] corresponds to the translated file's language code, 46 * - [ext] corresponds to the translated file's extension according to its [all …]
|
H A D | BatchDocumentOutputConfig.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 25 * Output configuration for BatchTranslateDocument request. 117 * Google Cloud Storage destination for output content. 118 * For every single input document (for example, gs://a/b/c.[extension]), we 119 * generate at most 2 * n output files. (n is the # of target_language_codes 132 * no content to output. 134 * translated output/error when we apply glossaries. They could also be 135 * empty if we have no content to output. 136 * Once a row is present in index.csv, the input/output matching never 138 * processed and ready to be consumed (that is, no partial output file is [all …]
|
/aosp_15_r20/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
H A D | XSLOutputAttributes.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 19 * $Id: XSLOutputAttributes.java 468654 2006-10-28 07:09:23Z minchau $ 26 * This interface has methods associated with the XSLT xsl:output attribues 27 * specified in the stylesheet that effect the format of the document output. 31 * <xsl:output method="xml" omit-xml-declaration="no" indent="yes"/> 33 * The xsl:output attributes covered in this interface are: 37 * omit-xml-declarations 39 * doctype-public 40 * doctype-system 41 * cdata-section-elements [all …]
|
H A D | Serializer.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 19 * $Id: Serializer.java 471981 2006-11-07 04:28:00Z minchau $ 53 * ser.reset(); // get ready to use the serializer for another document 54 * // of the same output method (TEXT). 63 * org.w3c.dom.Document inputDoc; 70 * owriter = ...; // create a writer to serialize the document to 73 * inputDoc = ...; // create the DOM document to be serialized 75 * dser.serialize(inputDoc); // serialize the DOM, sending output to owriter 77 * ser.reset(); // get ready to use the serializer for another document 78 * // of the same output method. [all …]
|
H A D | SerializerBase.java | 10 * http://www.apache.org/licenses/LICENSE-2.0 19 * $Id: SerializerBase.java 471981 2006-11-07 04:28:00Z minchau $ 108 * @param start starting index of characters to output 109 * @param length number of characters to output 178 * Flag to tell if indenting (pretty-printing) is on. 197 * The transformer that was around when this output handler was created (if 219 * The writer to send output to. This field is only used in the ToStream 313 * Receive an object for locating the origin of SAX document events. 315 * @param locator An object that can return the location of any SAX document 318 * Receive an object for locating the origin of SAX document events. [all …]
|
/aosp_15_r20/external/jsoup/src/main/java/org/jsoup/nodes/ |
H A D | Document.java | 23 A HTML Document. 26 public class Document extends Element { class 29 private Parser parser; // the parser used to parse this document 35 Create a new, empty Document, in the specified namespace. 36 @param namespace the namespace of this Document's root node. 37 @param baseUri base URI of document 41 public Document(String namespace, String baseUri) { in Document() method in Document 48 Create a new, empty Document, in the HTML namespace. 49 @param baseUri base URI of document 51 @see #Document(String namespace, String baseUri) [all …]
|
/aosp_15_r20/external/libxml2/ |
H A D | debugXML.c | 33 FILE *output; /* the output file */ member 36 xmlDocPtr doc; /* current document */ 41 int nodict; /* if the document has no dictionary */ 52 ctxt->depth = 0; in xmlCtxtDumpInitCtxt() 53 ctxt->check = 0; in xmlCtxtDumpInitCtxt() 54 ctxt->errors = 0; in xmlCtxtDumpInitCtxt() 55 ctxt->output = stdout; in xmlCtxtDumpInitCtxt() 56 ctxt->doc = NULL; in xmlCtxtDumpInitCtxt() 57 ctxt->node = NULL; in xmlCtxtDumpInitCtxt() 58 ctxt->dict = NULL; in xmlCtxtDumpInitCtxt() [all …]
|
/aosp_15_r20/external/google-cloud-java/java-dialogflow/proto-google-cloud-dialogflow-v2beta1/src/main/java/com/google/cloud/dialogflow/v2beta1/ |
H A D | Document.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 17 // source: google/cloud/dialogflow/v2beta1/document.proto 25 * A knowledge document to be used by a 28 * guide](https://cloud.google.com/dialogflow/docs/how/knowledge-bases). 33 * Protobuf type {@code google.cloud.dialogflow.v2beta1.Document} 35 public final class Document extends com.google.protobuf.GeneratedMessageV3 class 37 // @@protoc_insertion_point(message_implements:google.cloud.dialogflow.v2beta1.Document) 40 // Use Document.newBuilder() to construct. 41 private Document(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { in Document() method in Document 45 private Document() { in Document() method in Document [all …]
|
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/ |
D | translate_v3.projects.locations.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
D | translate_v3beta1.projects.locations.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
/aosp_15_r20/external/google-cloud-java/java-translate/proto-google-cloud-translate-v3/src/main/proto/google/cloud/translate/v3/ |
H A D | translation_service.proto | 7 // http://www.apache.org/licenses/LICENSE-2.0 41 "https://www.googleapis.com/auth/cloud-platform," 42 "https://www.googleapis.com/auth/cloud-translation"; 93 // This function provides real-time output as the inputs are being processed. 95 // all or nothing) may still be available on the specified output location. 111 // Translates a large volume of document in asynchronous batch mode. 112 // This function provides real-time output as the inputs are being processed. 114 // all or nothing) may still be available on the specified output location. 132 // Creates a glossary and returns the long-running operation. Returns 188 // - User-provided custom glossary: [all …]
|
/aosp_15_r20/external/googleapis/google/cloud/translate/v3beta1/ |
H A D | translation_service.proto | 7 // http://www.apache.org/licenses/LICENSE-2.0 41 "https://www.googleapis.com/auth/cloud-platform," 42 "https://www.googleapis.com/auth/cloud-translation"; 91 // This function provides real-time output as the inputs are being processed. 93 // all or nothing) may still be available on the specified output location. 109 // Translates a large volume of document in asynchronous batch mode. 110 // This function provides real-time output as the inputs are being processed. 112 // all or nothing) may still be available on the specified output location. 130 // Creates a glossary and returns the long-running operation. Returns 186 // Optional. Indicates match is case-insensitive. [all …]
|
/aosp_15_r20/external/google-cloud-java/java-translate/proto-google-cloud-translate-v3beta1/src/main/proto/google/cloud/translate/v3beta1/ |
H A D | translation_service.proto | 7 // http://www.apache.org/licenses/LICENSE-2.0 41 "https://www.googleapis.com/auth/cloud-platform," 42 "https://www.googleapis.com/auth/cloud-translation"; 91 // This function provides real-time output as the inputs are being processed. 93 // all or nothing) may still be available on the specified output location. 110 // This function provides real-time output as the inputs are being processed. 112 // all or nothing) may still be available on the specified output location. 130 // Creates a glossary and returns the long-running operation. Returns 186 // Optional. Indicates match is case-insensitive. 203 // Optional. The BCP-47 language code of the input text if [all …]
|
/aosp_15_r20/external/libxml2/doc/ |
H A D | xmllint.1 | 11 .\" ----------------------------------------------------------------- 13 .\" ----------------------------------------------------------------- 16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html 20 .\" ----------------------------------------------------------------- 22 .\" ----------------------------------------------------------------- 27 .\" ----------------------------------------------------------------- 29 .\" ----------------------------------------------------------------- 31 xmllint \- command line XML tool 34 …-\-version\fR | \fB\-\-debug\fR | \fB\-\-quiet\fR | \fB\-\-shell\fR | \fB\-\-xpath\ "\fR\fB\fIXPat… 36 \fBxmllint\fR \fB\-\-help\fR [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/vulkano/src/device/ |
D | physical.rs | 3 // <LICENSE-APACHE or 4 // https://www.apache.org/licenses/LICENSE-2.0> or the MIT 5 // license <LICENSE-MIT or https://opensource.org/licenses/MIT>, 94 /// - `handle` must be a valid Vulkan object handle created from `instance`. 98 ) -> Result<Arc<Self>, VulkanError> { in from_handle() 152 unsafe fn get_api_version(handle: ash::vk::PhysicalDevice, instance: &Instance) -> Version { in get_api_version() 154 let mut output = MaybeUninit::uninit(); in get_api_version() localVariable 155 (fns.v1_0.get_physical_device_properties)(handle, output.as_mut_ptr()); in get_api_version() 156 let api_version = Version::try_from(output.assume_init().api_version).unwrap(); in get_api_version() 163 ) -> Result<Vec<ExtensionProperties>, VulkanError> { in get_extension_properties() [all …]
|
/aosp_15_r20/external/googleapis/google/cloud/translate/v3/ |
H A D | translation_service.proto | 7 // http://www.apache.org/licenses/LICENSE-2.0 43 "https://www.googleapis.com/auth/cloud-platform," 44 "https://www.googleapis.com/auth/cloud-translation"; 95 // This function provides real-time output as the inputs are being processed. 97 // all or nothing) may still be available on the specified output location. 113 // Translates a large volume of document in asynchronous batch mode. 114 // This function provides real-time output as the inputs are being processed. 116 // all or nothing) may still be available on the specified output location. 134 // Creates a glossary and returns the long-running operation. Returns 287 // - User-provided custom glossary: [all …]
|
/aosp_15_r20/libcore/luni/src/main/java/org/w3c/dom/ls/ |
H A D | LSSerializer.java | 10 * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 21 * DOM document out into XML. The XML data is written to a string or an 22 * output stream. Any changes or fixups made during the serialization affect 23 * only the serialized data. The <code>Document</code> object and its 25 …fixup is done as defined in [<a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>DOM… 26 …* , Appendix B. [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113'>DOM Level 2 Cor… 32 * nodes of type <code>Document</code> or <code>Entity</code>, well-formed 33 * XML will be created when possible (well-formedness is guaranteed if the 34 * document or entity comes from a parse operation and is unchanged since it 35 * was created). The serialized output for these node types is either as a [all …]
|
/aosp_15_r20/external/google-cloud-java/java-contentwarehouse/proto-google-cloud-contentwarehouse-v1/src/main/java/com/google/cloud/contentwarehouse/v1/ |
H A D | CreateDocumentResponse.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 71 private com.google.cloud.contentwarehouse.v1.Document document_; 76 * Document created after executing create request. 79 * <code>.google.cloud.contentwarehouse.v1.Document document = 1;</code> 81 * @return Whether the document field is set. 91 * Document created after executing create request. 94 * <code>.google.cloud.contentwarehouse.v1.Document document = 1;</code> 96 * @return The document. 99 public com.google.cloud.contentwarehouse.v1.Document getDocument() { in getDocument() 101 ? com.google.cloud.contentwarehouse.v1.Document.getDefaultInstance() in getDocument() [all …]
|
H A D | DocumentLink.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 25 * A document-link between source and target document. 76 * The state of a document-link. 106 * Target document is deleted, and mark the documentlink as soft-deleted. 112 UNRECOGNIZED(-1), 139 * Target document is deleted, and mark the documentlink as soft-deleted. 216 if (desc.getIndex() == -1) { in valueOf() 239 * Name of this document-link. 241 * the source document reference. Otherwise an exception will be thrown. 266 * Name of this document-link. [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/comprehend/src/main/resources/codegen-resources/ |
H A D | service-2.json | 4 "apiVersion":"2017-11-27", 13 "uid":"comprehend-2017-11-27" 23 "output":{"shape":"BatchDetectDominantLanguageResponse"}, object 30 …n detect, see <a href=\"https://docs.aws.amazon.com/comprehend/latest/dg/how-languages.html\">Amaz… 39 "output":{"shape":"BatchDetectEntitiesResponse"}, object 47 …entities, see <a href=\"https://docs.aws.amazon.com/comprehend/latest/dg/how-entities.html\">Entit… 56 "output":{"shape":"BatchDetectKeyPhrasesResponse"}, object 73 "output":{"shape":"BatchDetectSentimentResponse"}, object 90 "output":{"shape":"BatchDetectSyntaxResponse"}, object 98 …s in the document and returns information about them. For more information, see <a href=\"https://… [all …]
|
/aosp_15_r20/external/autotest/client/site_tests/platform_PrinterPpds/ |
H A D | helpers.py | 2 # Use of this source code is governed by a BSD-style license that can be 12 def _read_lines_with_prefix(document, position, prefix): argument 14 Starting from given position, it parses from the document complete lines 19 @param document: a document to parse 20 @param position: an offset in the document to start from 24 is a new offset in the document, pointing at the first character after 29 while document.startswith(prefix, position): 30 position_next_line = document.find(b'\n', position + len(prefix)) 34 lines.append(document[position:position_next_line]) 41 The function tries to find a PJL headers in given document and process [all …]
|