- Sort Score
- Num 10 results
- Language All
Results 521 - 530 of 705 for imagem (0.04 seconds)
-
docs/zh-hant/docs/tutorial/cookie-param-models.md
**FastAPI** 會從請求收到的 **Cookie** 中擷取 **每個欄位** 的資料,並交給你定義的 Pydantic 模型。 ## 查看文件 { #check-the-docs } 你可以在 `/docs` 的文件介面中看到已定義的 Cookie: <div class="screenshot"> <img src="/img/tutorial/cookie-param-models/image01.png"> </div> /// info 請注意,由於**瀏覽器會以特殊且在背景進行的方式處理 Cookie**,因此**不會**輕易允許 **JavaScript** 存取它們。 當你前往位於 `/docs` 的 **API 文件介面**時,可以看到路徑操作的 Cookie 說明。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 2.9K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/query-param-models.md
**FastAPI** 將會從請求的**查詢參數**中**提取**出**每個欄位**的資料,並將其提供給你定義的 Pydantic 模型。 ## 查看文件 { #check-the-docs } 你可以在 `/docs` 頁面的 UI 中查看查詢參數: <div class="screenshot"> <img src="/img/tutorial/query-param-models/image01.png"> </div> ## 禁止額外的查詢參數 { #forbid-extra-query-parameters } 在一些特殊的使用場景中(可能不是很常見),你可能希望**限制**你要收到的查詢參數。 你可以使用 Pydantic 的模型設定來 `forbid`(禁止)任何 `extra`(額外)欄位:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 05 15:32:56 GMT 2026 - 2.1K bytes - Click Count (0) -
docs/uk/docs/advanced/openapi-webhooks.md
Ви побачите у своїй документації звичайні *операції шляху*, а також деякі **вебхуки**:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 4.7K bytes - Click Count (0) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt
buffer.writeUtf8CodePoint(0x1a) buffer.writeUtf8CodePoint(0x0a) server.enqueue( MockResponse .Builder() .body(buffer) .setHeader("Content-Type", "image/png; charset=utf-8") .build(), ) val response = client.newCall(request().build()).execute() response.body.close() applicationLogs .assertLogEqual("--> GET $url")
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Nov 07 02:57:33 GMT 2025 - 39.4K bytes - Click Count (0) -
src/main/webapp/js/marked.min.js
sions?.renderers?.[i.type]){let a=this.options.extensions.renderers[i.type].call({parser:this},i);if(a!==!1||!["escape","html","link","image","strong","em","codespan","br","del","text"].includes(i.type)){n+=a||"";continue}}let s=i;switch(s.type){case"escape":{n+=t.text(s);break}case"html":{n+=t.html(s);break}case"link":{n+=t.link(s);break}case"image":{n+=t.image(s);break}case"checkbox":{n+=t.checkbox(s);break}case"strong":{n+=t.strong(s);break}case"em":{n+=t.em(s);break}case"codespan":{n+=t.code...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 41.5K bytes - Click Count (0) -
docs/de/docs/tutorial/header-param-models.md
## Die Dokumentation testen { #check-the-docs } Sie können die erforderlichen Header in der Dokumentationsoberfläche unter `/docs` sehen: <div class="screenshot"> <img src="/img/tutorial/header-param-models/image01.png"> </div> ## Zusätzliche Header verbieten { #forbid-extra-headers }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Sep 20 15:10:09 GMT 2025 - 3.1K bytes - Click Count (0) -
docs/fr/docs/tutorial/header-param-models.md
## Consulter la documentation { #check-the-docs } Vous pouvez voir les en-têtes requis dans l'interface de la documentation à `/docs` : <div class="screenshot"> <img src="/img/tutorial/header-param-models/image01.png"> </div> ## Interdire les en-têtes supplémentaires { #forbid-extra-headers }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 3K bytes - Click Count (0) -
docs/en/docs/tutorial/header-param-models.md
## Check the Docs { #check-the-docs } You can see the required headers in the docs UI at `/docs`: <div class="screenshot"> <img src="/img/tutorial/header-param-models/image01.png"> </div> ## Forbid Extra Headers { #forbid-extra-headers } In some special use cases (probably not very common), you might want to **restrict** the headers that you want to receive.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Aug 31 09:15:41 GMT 2025 - 2.6K bytes - Click Count (0) -
docs/ko/docs/tutorial/query-param-models.md
**FastAPI**는 요청의 **쿼리 매개변수**에서 **각 필드**의 데이터를 **추출**해 정의한 Pydantic 모델을 제공합니다. ## 문서 확인하기 { #check-the-docs } `/docs`의 문서 UI에서 쿼리 매개변수를 확인할 수 있습니다: <div class="screenshot"> <img src="/img/tutorial/query-param-models/image01.png"> </div> ## 추가 쿼리 매개변수 금지 { #forbid-extra-query-parameters } 몇몇의 특이한 경우에 (흔치 않지만), 받으려는 쿼리 매개변수를 **제한**하고 싶을 수 있습니다. Pydantic의 모델 설정을 사용해 어떤 `extra` 필드도 `forbid`할 수 있습니다:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Jan 11 00:15:26 GMT 2026 - 2.4K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/MediaTypeTest.kt
) } @Test fun testValidParse() { assertMediaType("text/plain") assertMediaType("application/atom+xml; charset=utf-8") assertMediaType("application/atom+xml; a=1; a=2; b=3") assertMediaType("image/gif; foo=bar") assertMediaType("text/plain; a=1") assertMediaType("text/plain; a=1; a=2; b=3") assertMediaType("text/plain; charset=utf-16") assertMediaType("text/plain; \t \n \r a=b")
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 7.5K bytes - Click Count (0)