Home
last modified time | relevance | path

Searched +full:- +full:- +full:output +full:- +full:document (Results 1 – 25 of 1112) sorted by relevance

12345678910>>...45

/external/google-cloud-java/java-translate/proto-google-cloud-translate-v3/src/main/java/com/google/cloud/translate/v3/
DDocumentOutputConfigOrBuilder.java8 * 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 …]
DDocumentOutputConfig.java8 * 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 …]
DBatchDocumentOutputConfigOrBuilder.java8 * https://www.apache.org/licenses/LICENSE-2.0
30 * Google Cloud Storage destination for output content.
31 * For every single input document (for example, gs://a/b/c.[extension]), we
32 * generate at most 2 * n output files. (n is the # of target_language_codes
45 * no content to output.
47 * translated output/error when we apply glossaries. They could also be
48 * empty if we have no content to output.
49 * Once a row is present in index.csv, the input/output matching never
51 * processed and ready to be consumed (that is, no partial output file is
54 * sure there is no custom retention policy applied on the output bucket
[all …]
DBatchDocumentOutputConfig.java8 * 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 …]
/external/google-cloud-java/java-translate/proto-google-cloud-translate-v3beta1/src/main/java/com/google/cloud/translate/v3beta1/
DDocumentOutputConfigOrBuilder.java8 * 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 …]
DDocumentOutputConfig.java8 * 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 …]
DBatchDocumentOutputConfigOrBuilder.java8 * https://www.apache.org/licenses/LICENSE-2.0
30 * Google Cloud Storage destination for output content.
31 * For every single input document (for example, gs://a/b/c.[extension]), we
32 * generate at most 2 * n output files. (n is the # of target_language_codes
45 * no content to output.
47 * translated output/error when we apply glossaries. They could also be
48 * empty if we have no content to output.
49 * Once a row is present in index.csv, the input/output matching never
51 * processed and ready to be consumed (that is, no partial output file is
54 * sure there is no custom retention policy applied on the output bucket
[all …]
DBatchDocumentOutputConfig.java8 * 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 …]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DXSLOutputAttributes.java10 * 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 …]
DSerializer.java10 * 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 …]
/external/jsoup/src/main/java/org/jsoup/nodes/
DDocument.java23 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 …]
/external/libxml2/doc/
Dxmllint.111 .\" -----------------------------------------------------------------
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 …]
/external/rust/crates/debug_tree/doc/build/
Dasciidoc-coalescer.rb3 # This script coalesces the AsciiDoc content from a document master into a
4 # single output file. It does so by resolving all preprocessor directives in
5 # the document, and in any files which are included. The resolving of include
10 # result to the output.
13 # in the document header. It does not currently process attributes defined in
14 # other, arbitrary locations within the document.
17 # https://github.com/hibernate/hibernate-asciidoctor-extensions/blob/master/src/main/java/org/hiber…
20 # - add cli option to write attributes passed to cli to header of document
21 # - escape all preprocessor directives after lines are processed (these are preprocessor directives…
22 # - wrap in a custom converter so it can be used as an extension
[all …]
/external/googleapis/google/ads/googleads/v16/resources/
Dlocal_services_verification_artifact.proto7 // http://www.apache.org/licenses/LICENSE-2.0
56 // Output only. The ID of the verification artifact.
59 // Output only. The timestamp when this verification artifact was created.
60 // The format is "YYYY-MM-DD HH:MM:SS" in the Google Ads account's timezone.
61 // Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30"
64 // Output only. The status of the verification artifact.
69 // Output only. The type of the verification artifact.
76 // Output only. A background check verification artifact.
80 // Output only. An insurance verification artifact.
84 // Output only. A license verification artifact.
[all …]
/external/autotest/client/site_tests/platform_PrinterPpds/
Dhelpers.py2 # 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 …]
/external/googleapis/google/cloud/contentwarehouse/v1/
Ddocument.proto7 // http://www.apache.org/licenses/LICENSE-2.0
21 import "google/cloud/documentai/v1/document.proto";
33 // Defines the structure for content warehouse document proto.
34 message Document { message
36 type: "contentwarehouse.googleapis.com/Document"
37 pattern: "projects/{project}/locations/{location}/documents/{document}"
41 // The resource name of the document.
45 // The name is ignored when creating a document.
51 // Required. Display name of the document given by the user. This name will be
53 // document. This differs from the 'title' field as 'title' is optional and
[all …]
/external/google-cloud-java/java-contentwarehouse/proto-google-cloud-contentwarehouse-v1/src/main/java/com/google/cloud/contentwarehouse/v1/
DCreateDocumentResponseOrBuilder.java8 * https://www.apache.org/licenses/LICENSE-2.0
30 * Document created after executing create request.
33 * <code>.google.cloud.contentwarehouse.v1.Document document = 1;</code>
35 * @return Whether the document field is set.
42 * Document created after executing create request.
45 * <code>.google.cloud.contentwarehouse.v1.Document document = 1;</code>
47 * @return The document.
49 com.google.cloud.contentwarehouse.v1.Document getDocument(); in getDocument()
54 * Document created after executing create request.
57 * <code>.google.cloud.contentwarehouse.v1.Document document = 1;</code>
[all …]
/external/jsoup/src/test/java/org/jsoup/helper/
DW3CDomTest.java9 import org.w3c.dom.Document;
33 private static Document parseXml(String xml, boolean nameSpaceAware) { in parseXml()
38 builder.setEntityResolver((publicId, systemId) -> { in parseXml()
39 if (systemId.contains("about:legacy-compat")) { // <!doctype html> in parseXml()
45Document dom = builder.parse(new ByteArrayInputStream(xml.getBytes(StandardCharsets.UTF_8))); in parseXml()
55 …l><head><title>W3c</title></head><body><p class='one' id=12>Text</p><!-- comment --><invalid>What<… in simpleConversion()
56 org.jsoup.nodes.Document doc = Jsoup.parse(html); in simpleConversion()
59 Document wDoc = w3c.fromJsoup(doc); in simpleConversion()
64 …g=\"UTF-8\"?><html xmlns=\"http://www.w3.org/1999/xhtml\"><head><title>W3c</title></head><body><p … in simpleConversion()
67 Document roundTrip = parseXml(out, true); in simpleConversion()
[all …]
/external/google-cloud-java/java-dialogflow/proto-google-cloud-dialogflow-v2beta1/src/main/java/com/google/cloud/dialogflow/v2beta1/
DDocument.java8 * 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 …]
/external/spdx-tools/rdfloader/parser2v3/
Dutils_test.go1 // SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
10 "github.com/spdx/tools-golang/spdx/common"
17 output := getLastPartOfURI(input)
18 if output != expectedOutput {
19 t.Errorf("expected %s, found %s", expectedOutput, output)
25 output = getLastPartOfURI(input)
26 if output != expectedOutput {
27 t.Errorf("expected %s, found %s", expectedOutput, output)
33 output = getLastPartOfURI(input)
34 if output != expectedOutput {
[all …]
/external/spdx-tools/rdfloader/parser2v2/
Dutils_test.go1 // SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
10 "github.com/spdx/tools-golang/spdx/common"
17 output := getLastPartOfURI(input)
18 if output != expectedOutput {
19 t.Errorf("expected %s, found %s", expectedOutput, output)
25 output = getLastPartOfURI(input)
26 if output != expectedOutput {
27 t.Errorf("expected %s, found %s", expectedOutput, output)
33 output = getLastPartOfURI(input)
34 if output != expectedOutput {
[all …]
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ext/
DTestDOM.java23 Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse in testSerializeSimpleNonNS()
28 // And re-parse as String, since JSON has quotes... in testSerializeSimpleNonNS()
29 String output = MAPPER.readValue(outputRaw, String.class); in testSerializeSimpleNonNS() local
31 * output (single vs double quotes, xml declaration etc) in testSerializeSimpleNonNS()
33 assertEquals(SIMPLE_XML, normalizeOutput(output)); in testSerializeSimpleNonNS()
39 Document doc; in testDeserializeNonNS()
42 // First, as Document: in testDeserializeNonNS()
43 doc = MAPPER.readValue(quote(SIMPLE_XML), Document.class); in testDeserializeNonNS()
47 doc = (Document) node; in testDeserializeNonNS()
51 // non-ns, simple... in testDeserializeNonNS()
[all …]
/external/googleapis/google/cloud/documentai/v1beta2/
Ddocument_understanding.proto7 // http://www.apache.org/licenses/LICENSE-2.0
22 import "google/cloud/documentai/v1beta2/document.proto";
35 // Service to parse structured information from unstructured or semi-structured
36 // documents using state-of-the-art Google AI such as natural language,
41 "https://www.googleapis.com/auth/cloud-platform";
43 // LRO endpoint to batch process many documents. The output is written
44 // to Cloud Storage as JSON in the [Document] format.
62 // Processes a single document.
63 rpc ProcessDocument(ProcessDocumentRequest) returns (Document) {
75 // Request to batch process documents as an asynchronous operation. The output
[all …]
/external/googleapis/google/ai/generativelanguage/v1beta/
Dretriever.proto7 // http://www.apache.org/licenses/LICENSE-2.0
28 // A `Corpus` is a collection of `Document`s.
41 // (-). The ID cannot start or end with a dash. If the name is empty on
44 // Example: `corpora/my-awesome-corpora-123a456b789c`
50 // Optional. The human-readable display name for the `Corpus`. The display
55 // Output only. The Timestamp of when the `Corpus` was created.
59 // Output only. The Timestamp of when the `Corpus` was last updated.
64 // A `Document` is a collection of `Chunk`s.
65 // A `Corpus` can have a maximum of 10,000 `Document`s.
66 message Document { message
[all …]
/external/python/google-api-python-client/docs/dyn/
Dtranslate_v3.projects.locations.html8 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 …]

12345678910>>...45