- Sort Score
- Result 10 results
- Languages All
Results 731 - 740 of 1,757 for docs (0.03 sec)
-
cmd/globals.go
// requirements - // // ``` // The canonical user ID is the Amazon S3โonly concept. // It is 64-character obfuscated version of the account ID. // ``` // http://docs.aws.amazon.com/AmazonS3/latest/dev/example-walkthroughs-managing-access-example4.html globalMinioDefaultOwnerID = "02d6176db174dc93cb1b899f7c6078f08654445fe8cf1b6ce98d8855f66bdbf4" globalMinioDefaultStorageClass = "STANDARD"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 16.2K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
LabelType[] labelTypes = parser.getLabelTypes(); assertEquals(3, labelTypes.length); } public void test_escape() { // https://www.google.com/support/enterprise/static/gsa/docs/admin/70/gsa_doc_set/admin_crawl/url_patterns.html#1076127 assertEscapePattern("", "# Test"); assertEscapePattern(".*\\Q!/\\E.*", "!/"); assertEscapePattern("\\Qindex.html\\E", "index.html");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.4K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt
* [Lets Encrypt's ASN.1 and DER][asn1_and_der] guide. * * [x690]: https://www.itu.int/rec/T-REC-X.690 * [asn1_and_der]: https://letsencrypt.org/docs/a-warm-welcome-to-asn1-and-der/ */ internal class DerReader( source: Source, ) { private val countingSource: CountingSource = CountingSource(source) private val source: BufferedSource = countingSource.buffer()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 10.5K bytes - Viewed (0) -
docs/features/https.md
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Dec 24 00:16:30 UTC 2022 - 10.5K bytes - Viewed (0) -
docs/em/docs/features.md
* ๐ฏ ๐ฉโ๐ป ๐ ๐ ๐ธ๐ฒ. * **โ**, ๐, ๐ป ๐, ๐ ๐จ. * **๐ & ๐ช** ๐โ๐ฆบ. * 1๏ธโฃ0๏ธโฃ0๏ธโฃ ๐ฏ ๐ฏ ๐ฐ. * 1๏ธโฃ0๏ธโฃ0๏ธโฃ ๐ฏ ๐ โ โ. ## Pydantic โ **FastAPI** ๐ ๐ โฎ๏ธ (& โ๏ธ ๐) <a href="https://docs.pydantic.dev/" class="external-link" target="_blank"><strong>Pydantic</strong></a>. , ๐ ๐ Pydantic ๐ ๐ โ๏ธ, ๐ ๐ท.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8K bytes - Viewed (0) -
docs/ko/docs/tutorial/body-nested-models.md
* ์ค์ฒฉ ๋ชจ๋ธ๋ ํธ์ง๊ธฐ ์ง์(์๋์์ฑ ๋ฑ) * ๋ฐ์ดํฐ ๋ณํ * ๋ฐ์ดํฐ ๊ฒ์ฆ * ์๋ ๋ฌธ์ํ ## ํน๋ณํ ํ์ ๊ณผ ๊ฒ์ฆ `str`, `int`, `float` ๋ฑ๊ณผ ๊ฐ์ ๋จ์ผ ํ์ ๊ณผ๋ ๋ณ๊ฐ๋ก, `str`์ ์์ํ๋ ๋ ๋ณต์กํ ๋จ์ผ ํ์ ์ ์ฌ์ฉํ ์ ์์ต๋๋ค. ๋ชจ๋ ์ต์ ์ ๋ณด๋ ค๋ฉด, <a href="https://docs.pydantic.dev/latest/concepts/types/" class="external-link" target="_blank">Pydantic's exotic types</a> ๋ฌธ์๋ฅผ ํ์ธํ์ธ์. ๋ค์ ์ฅ์์ ๋ช๊ฐ์ง ์์ ๋ฅผ ๋ณผ ์ ์์ต๋๋ค. ์๋ฅผ ๋ค์ด `Image` ๋ชจ๋ธ ์์ `url` ํ๋๋ฅผ `str` ๋์ Pydantic์ `HttpUrl`๋ก ์ ์ธํ ์ ์์ต๋๋ค:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.3K bytes - Viewed (0) -
docs/pt/docs/tutorial/query-params-str-validations.md
{* ../../docs_src/query_params_str_validations/tutorial006.py hl[7] *} /// info | Informaรงรฃo Se vocรช nunca viu os `...` antes: รฉ um valor รบnico especial, faz <a href="https://docs.python.org/3/library/constants.html#Ellipsis" class="external-link" target="_blank">parte do Python e รฉ chamado "Ellipsis"</a>. /// Dessa forma o **FastAPI** saberรก que o parรขmetro รฉ obrigatรณrio.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9K bytes - Viewed (0) -
cmd/signature-v4-utils.go
return nil, ErrUnsignedHeaders } } return extractedSignedHeaders, ErrNone } // Trim leading and trailing spaces and replace sequential spaces with one space, following Trimall() // in http://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html func signV4TrimAll(input string) string { // Compress adjacent spaces (a space is determined by // unicode.IsSpace() internally here) to one space and return
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Nov 25 17:10:22 UTC 2024 - 9.1K bytes - Viewed (0) -
docs/pt/docs/tutorial/handling-errors.md
/// warning | Aviso Vocรช pode pular estes detalhes tรฉcnicos caso eles nรฃo sejam importantes para vocรช neste momento. /// `RequestValidationError` รฉ uma subclasse do <a href="https://docs.pydantic.dev/latest/#error-handling" class="external-link" target="_blank">`ValidationError`</a> existente no Pydantic.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.9K bytes - Viewed (0) -
docs/ja/docs/tutorial/testing.md
<a href="https://www.python-httpx.org" class="external-link" target="_blank">HTTPX</a> ใใใผในใชใฎใงใ้ๅธธใซไฝฟใใใใ็ดๆ็ใงใใ ใใใไฝฟ็จใใใจใ**FastAPI** ใจๅ ฑใซ <a href="https://docs.pytest.org/" class="external-link" target="_blank">pytest</a> ใ็ดๆฅๅฉ็จใงใใพใใ ## `TestClient` ใไฝฟ็จ `TestClient` ใใคใณใใผใใใพใใ `TestClient` ใไฝๆใใ**FastAPI** ใซๆธกใใพใใ `test_` ใใๅงใพใๅๅใฎ้ขๆฐใไฝๆใใพใ (ใใใฏ `pytest` ใฎๆจๆบ็ใชใณใณใใณใทใงใณใงใ)ใ
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.6K bytes - Viewed (0)