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 D | multipart.js | 133 if (contype === undefined) { contype = 'text/plain' }
|
| /third_party/libabigail/include/ |
| H A D | abg-tools-utils.h | 193 /// A plain directory
|
| /third_party/python/Include/ |
| H A D | datetime.h | 91 * the plain date type is a base class for datetime, so it must also have
|
| /third_party/python/Doc/extending/ |
| H A D | building.rst | 57 A distutils package contains a driver script, :file:`setup.py`. This is a plain
|
| /third_party/python/Lib/test/ |
| H A D | ssl_servers.py | 105 self.send_header("Content-type", "text/plain; charset=utf-8")
|
| /third_party/python/Doc/library/ |
| H A D | secrets.rst | 159 whether plain text or encrypted. They should be salted and hashed
|
| H A D | crypt.rst | 105 Checking a password is usually done by passing the plain-text password
|
| /third_party/openssl/crypto/asn1/ |
| H A D | tasn_utl.c | 204 * 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 D | functional.image_load_store.txt | 26 + Plain imageStore()
|
| /third_party/skia/src/effects/ |
| H A D | SkLayerDrawLooper.cpp | 176 // top layer needs to be "plain" in asABlurShadow()
|
| /third_party/skia/src/gpu/ |
| H A D | BufferWriter.h | 43 * Each value must be POD (plain old data), or have a specialization of the "<<" operator.
|
| /third_party/openssl/providers/ |
| H A D | encoders.inc | 254 /* PKCS#1 is a well known for plain RSA keys, so we add that too */
|
| /third_party/openssl/doc/man1/ |
| H A D | openssl-ec.pod.in | 89 If none of these options is specified the key is written in plain text. This
|
| H A D | openssl-dsa.pod.in | 98 If none of these options is specified the key is written in plain text. This
|
| H A D | openssl-pkey.pod.in | 146 Output the various key components in plain text
|
| /third_party/openssl/doc/man7/ |
| H A D | provider-object.pod | 38 (see L</Parameter reference> below), where it's assumed to a plain UTF8 string.
|
| /third_party/skia/third_party/externals/libpng/scripts/ |
| H A D | makevms.com | 50 $! Build the thing plain or with mms/mmk
|
| /third_party/skia/third_party/externals/microhttpd/src/examples/ |
| H A D | mhd2spdy.c | 239 " 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 D | AutoGlitchActivity.java | 135 sharingIntent.setType("text/plain"); in onShareResult()
|
| /third_party/skia/third_party/externals/opengl-registry/extensions/AMD/ |
| H A D | AMD_seamless_cubemap_per_texture.txt | 183 priority? Explain, in plain English, how seamless filtering gets enabled.
|
| /third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
| H A D | ARB_seamless_cubemap_per_texture.txt | 136 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 D | FileCheck.h | 143 // C++17 TODO: make this a plain std::vector.
|
| /third_party/python/Lib/test/test_email/data/ |
| H A D | msg_25.txt | 94 Content-Type: text/plain;
|
| /third_party/rust/crates/peeking_take_while/src/ |
| H A D | lib.rs | 53 //! // ...except, when using plain old `take_while` we lost 10!
|
| /third_party/node/doc/api/ |
| H A D | util.json | 1353 "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&bar=1&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