Home
last modified time | relevance | path

Searched full:plain (Results 1101 - 1125 of 2599) sorted by relevance

1...<<41424344454647484950>>...104

/third_party/node/deps/undici/src/node_modules/@fastify/busboy/lib/types/
H A Dmultipart.js133 if (contype === undefined) { contype = 'text/plain' }
/third_party/libabigail/include/
H A Dabg-tools-utils.h193 /// A plain directory
/third_party/python/Include/
H A Ddatetime.h91 * the plain date type is a base class for datetime, so it must also have
/third_party/python/Doc/extending/
H A Dbuilding.rst57 A distutils package contains a driver script, :file:`setup.py`. This is a plain
/third_party/python/Lib/test/
H A Dssl_servers.py105 self.send_header("Content-type", "text/plain; charset=utf-8")
/third_party/python/Doc/library/
H A Dsecrets.rst159 whether plain text or encrypted. They should be salted and hashed
H A Dcrypt.rst105 Checking a password is usually done by passing the plain-text password
/third_party/openssl/crypto/asn1/
H A Dtasn_utl.c204 * NOTE for BOOLEAN types the field is just a plain int so we can't in ossl_asn1_get_field_ptr()
/third_party/vk-gl-cts/doc/testspecs/GLES31/
H A Dfunctional.image_load_store.txt26 + Plain imageStore()
/third_party/skia/src/effects/
H A DSkLayerDrawLooper.cpp176 // top layer needs to be "plain" in asABlurShadow()
/third_party/skia/src/gpu/
H A DBufferWriter.h43 * Each value must be POD (plain old data), or have a specialization of the "<<" operator.
/third_party/openssl/providers/
H A Dencoders.inc254 /* PKCS#1 is a well known for plain RSA keys, so we add that too */
/third_party/openssl/doc/man1/
H A Dopenssl-ec.pod.in89 If none of these options is specified the key is written in plain text. This
H A Dopenssl-dsa.pod.in98 If none of these options is specified the key is written in plain text. This
H A Dopenssl-pkey.pod.in146 Output the various key components in plain text
/third_party/openssl/doc/man7/
H A Dprovider-object.pod38 (see L</Parameter reference> below), where it's assumed to a plain UTF8 string.
/third_party/skia/third_party/externals/libpng/scripts/
H A Dmakevms.com50 $! Build the thing plain or with mms/mmk
/third_party/skia/third_party/externals/microhttpd/src/examples/
H A Dmhd2spdy.c239 " for SPDY over TLS, or 'http' for plain SPDY\n" in display_usage()
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
H A DAutoGlitchActivity.java135 sharingIntent.setType("text/plain"); in onShareResult()
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/
H A DAMD_seamless_cubemap_per_texture.txt183 priority? Explain, in plain English, how seamless filtering gets enabled.
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
H A DARB_seamless_cubemap_per_texture.txt136 cubemap feature? Explain, in plain English, how seamless filtering gets
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DFileCheck.h143 // C++17 TODO: make this a plain std::vector.
/third_party/python/Lib/test/test_email/data/
H A Dmsg_25.txt94 Content-Type: text/plain;
/third_party/rust/crates/peeking_take_while/src/
H A Dlib.rs53 //! // ...except, when using plain old `take_while` we lost 10!
/third_party/node/doc/api/
H A Dutil.json1353 "desc": "<p>Creates a new <code>MIMEType</code> object by parsing the <code>input</code>.</p>\n<pre><code class=\"language-mjs\">import { MIMEType } from 'node:util';\n\nconst myMIME = new MIMEType('text/plain');\n</code></pre>\n<pre><code class=\"language-cjs\">const { MIMEType } = require('node:util');\n\nconst myMIME = new MIMEType('text/plain');\n</code></pre>\n<p>A <code>TypeError</code> will be thrown if the <code>input</code> is not a valid MIME. Note\nthat an effort will be made to coerce the given values into strings. For\ninstance:</p>\n<pre><code class=\"language-mjs\">import { MIMEType } from 'node:util';\nconst myMIME = new MIMEType({ toString: () => 'text/plain' });\nconsole.log(String(myMIME));\n// Prints: text/plain\n</code></pre>\n<pre><code class=\"language-cjs\">const { MIMEType } = require('node:util');\nconst myMIME = new MIMEType({ toString: () => 'text/plain' });\nconsole.log(String(myMIME));\n// Prints: text/plain\n</code></pre>"
1461 "desc": "<p>Returns an iterator over the names of each name-value pair.</p>\n<pre><code class=\"language-mjs\">import { MIMEType } from 'node:util';\n\nconst { params } = new MIMEType('text/plain;foo=0;bar=1');\nfor (const name of params.keys()) {\n console.log(name);\n}\n// Prints:\n// foo\n// bar\n</code></pre>\n<pre><code class=\"language-cjs\">const { MIMEType } = require('node:util');\n\nconst { params } = new MIMEType('text/plain;foo=0;bar=1');\nfor (const name of params.keys()) {\n console.log(name);\n}\n// Prints:\n// foo\n// bar\n</code></pre>"
1483 "desc": "<p>Sets the value in the <code>MIMEParams</code> object associated with <code>name</code> to\n<code>value</code>. If there are any pre-existing name-value pairs whose names are <code>name</code>,\nset the first such pair's value to <code>value</code>.</p>\n<pre><code class=\"language-mjs\">import { MIMEType } from 'node:util';\n\nconst { params } = new MIMEType('text/plain;foo=0;bar=1');\nparams.set('foo', 'def');\nparams.set('baz', 'xyz');\nconsole.log(params.toString());\n// Prints: foo=def&#x26;bar=1&#x26;baz=xyz\n</code></pre>\n<pre><code class=\"language-cjs\">const { MIMEType } = require('node:util');\n\nconst { params } = new MIMEType('text/plain;fo
[all...]

Completed in 17 milliseconds

1...<<41424344454647484950>>...104