- Sort Score
- Num 10 results
- Language All
Results 901 - 910 of 1,150 for Little (0.3 seconds)
-
docs/zh-hant/docs/tutorial/dependencies/sub-dependencies.md
query_extractor --> query_or_cookie_extractor --> read_query ``` ## 多次使用同一個相依項 { #using-the-same-dependency-multiple-times } 如果你的某個相依項在同一個路徑操作中被宣告了多次,例如多個相依共用同一個子相依,**FastAPI** 會知道只需在每次請求中呼叫該子相依一次。 它會把回傳值儲存在一個 <dfn title="用來儲存已計算/產生之值的工具/系統,以便重複使用而不必再次計算。">「快取」</dfn> 中,並在該次請求中傳遞給所有需要它的「相依者」,而不是為同一個請求多次呼叫相同的相依項。 在進階情境下,如果你確定需要在同一次請求的每個步驟都呼叫該相依(可能呼叫多次),而不是使用「快取」的值,你可以在使用 `Depends` 時設定參數 `use_cache=False`: //// tab | Python 3.10+Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 3.6K bytes - Click Count (0) -
apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt
b) its license agreement: i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose; ii) effectively excludes on behalf of all Contributors all liability for damages,Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Sep 17 05:50:12 GMT 2018 - 11.1K bytes - Click Count (0) -
docs/ru/docs/tutorial/dependencies/dependencies-with-yield.md
# Зависимости с yield { #dependencies-with-yield } FastAPI поддерживает зависимости, которые выполняют некоторые <dfn title='иногда также называемые "код выхода", "код очистки", "код завершения", "код закрытия", "код выхода менеджера контекста" и т.п.'>дополнительные шаги после завершения</dfn>. Для этого используйте `yield` вместо `return`, а дополнительные шаги (код) напишите после него. /// tip | ПодсказкаCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 19.4K bytes - Click Count (0) -
docs/uk/docs/tutorial/first-steps.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 18.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
defaultDataMap.put(fessConfig.getIndexFieldRole(), roleTypeList); // mimetype defaultDataMap.put(fessConfig.getIndexFieldMimetype(), mimeType); // title // content // cache // digest // host // site // url // anchor // content_length // last_modified // id
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.6K bytes - Click Count (0) -
docs/es/docs/tutorial/cors.md
Cualquier request con un header `Origin`. En este caso, el middleware pasará el request a través de lo normal, pero incluirá los headers CORS adecuados en el response. ## Más info { #more-info } Para más información sobre <abbr title="Cross-Origin Resource Sharing">CORS</abbr>, revisa la [documentación de CORS de Mozilla](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS). /// note | Detalles TécnicosCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 5.6K bytes - Click Count (0) -
docs/fr/docs/tutorial/server-sent-events.md
## Données brutes { #raw-data } Si vous devez envoyer des données **sans** encodage JSON, utilisez `raw_data` au lieu de `data`. C’est utile pour envoyer du texte préformaté, des lignes de log, ou des valeurs <dfn title="Une valeur utilisée pour indiquer une condition ou un état particulier">« sentinelle »</dfn> spéciales comme `[DONE]`. {* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *} /// note | RemarqueCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:33:45 GMT 2026 - 5.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/query-params.md
``` ...查詢參數為: * `skip`:值為 `0` * `limit`:值為 `10` 因為它們是 URL 的一部分,天生是字串。 但當你以 Python 型別宣告它們(如上例中的 `int`),它們會被轉換成該型別並據此驗證。 對於查詢參數,會套用與路徑參數相同的處理流程: * 編輯器支援(當然) * 資料 <dfn title="將來自 HTTP 請求的字串轉換為 Python 資料">「解析」</dfn> * 資料驗證 * 自動文件 ## 預設值 { #defaults } 由於查詢參數不是路徑的固定部分,因此可以是選填並具有預設值。 在上面的例子中,預設值為 `skip=0` 與 `limit=10`。 因此,造訪下列 URL: ``` http://127.0.0.1:8000/items/Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 4.1K bytes - Click Count (0) -
docs/en/docs/tutorial/cors.md
Any request with an `Origin` header. In this case the middleware will pass the request through as normal, but will include appropriate CORS headers on the response. ## More info { #more-info } For more info about <abbr title="Cross-Origin Resource Sharing">CORS</abbr>, check the [Mozilla CORS documentation](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS). /// note | Technical DetailsCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 5.2K bytes - Click Count (0) -
docs/uk/docs/tutorial/request-files.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 11K bytes - Click Count (0)