- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 53 for 403 (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/zh/docs/tutorial/bigger-applications.md
{* ../../docs_src/bigger_applications/app_an_py310/routers/items.py hl[30:31] title["app/routers/items.py"] *} /// tip | 提示 最后的这个路径操作将包含标签的组合:`["items", "custom"]`。 并且在文档中也会有两个响应,一个用于 `404`,一个用于 `403`。 /// ## `FastAPI` 主体 { #the-main-fastapi } 现在,让我们来看看位于 `app/main.py` 的模块。 在这里你导入并使用 `FastAPI` 类。 这将是你的应用程序中将所有内容联结在一起的主文件。 并且由于你的大部分逻辑现在都存在于其自己的特定模块中,因此主文件的内容将非常简单。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 19.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
*/ protected String resolveErrorCode(final int statusCode) { if (statusCode == 429) { return LlmException.ERROR_RATE_LIMIT; } if (statusCode == 401 || statusCode == 403) { return LlmException.ERROR_AUTH; } if (statusCode == 404) { return LlmException.ERROR_MODEL_NOT_FOUND; } if (statusCode == 408) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
kotlin-js-store/yarn.lock
integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== is-glob@^4.0.1, is-glob@~4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies:
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat Jul 22 12:28:51 GMT 2023 - 87.4K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/bigger-applications.md
{* ../../docs_src/bigger_applications/app_an_py310/routers/items.py hl[30:31] title["app/routers/items.py"] *} /// tip | 提示 這最後一個路徑操作會有組合後的標籤:`["items", "custom"]`。 而且在文件中同時會有 `404` 與 `403` 兩種回應。 /// ## 主程式 `FastAPI` { #the-main-fastapi } 現在,來看看 `app/main.py` 這個模組。 你會在這裡匯入並使用 `FastAPI` 類別。 這會是你的應用程式中把一切串起來的主檔案。 而隨著大多數的邏輯都放在各自的模組中,主檔案會相當簡潔。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 18.7K bytes - Click Count (0) -
docs/tr/docs/tutorial/bigger-applications.md
/// tip | İpucu Bu son *path operation*’da tag kombinasyonu şöyle olur: `["items", "custom"]`. Ayrıca dokümantasyonda iki response da görünür: biri `404`, diğeri `403`. /// ## Ana `FastAPI` { #the-main-fastapi } Şimdi `app/main.py` module’üne bakalım. Burada `FastAPI` class’ını import edip kullanırsınız.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 20.3K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt
assertCached(false, 306) assertCached(true, 307) assertCached(true, 308) assertCached(false, 400) assertCached(false, 401) assertCached(false, 402) assertCached(false, 403) assertCached(true, 404) assertCached(true, 405) assertCached(false, 406) assertCached(false, 408) assertCached(false, 409) // the HTTP spec permits caching 410s, but the RI doesn't.
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Mar 20 09:13:37 GMT 2026 - 121K bytes - Click Count (0) -
index.yaml
maintainers: - email: ******@****.*** name: MinIO, Inc name: minio sources: - https://github.com/minio/minio urls: - https://charts.min.io/helm-releases/minio-4.0.3.tgz version: 4.0.3 - apiVersion: v1 appVersion: RELEASE.2022-05-08T23-50-31Z created: "2025-01-02T21:34:25.128974045-08:00" description: Multi-Cloud Object StorageCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Jan 03 05:34:47 GMT 2025 - 55.1K bytes - Click Count (0) -
docs/uk/docs/tutorial/bigger-applications.md
/// tip | Порада Остання операція шляху матиме комбінацію міток: `["items", "custom"]`. І вона також матиме в документації обидві відповіді: одну для `404` і одну для `403`. /// ## Основний `FastAPI` { #the-main-fastapi } Тепер розгляньмо модуль `app/main.py`. Тут ви імпортуєте і використовуєте клас `FastAPI`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 27.4K bytes - Click Count (0) -
docs/fr/docs/tutorial/bigger-applications.md
/// tip | Astuce Ce dernier *chemin d'accès* aura la combinaison de tags : `["items", "custom"]`. Et il aura également les deux réponses dans la documentation, une pour `404` et une pour `403`. /// ## Créer l'application `FastAPI` principale { #the-main-fastapi } Voyons maintenant le module `app/main.py`. C'est ici que vous importez et utilisez la classe `FastAPI`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 21.4K bytes - Click Count (0) -
docs/es/docs/tutorial/bigger-applications.md
/// tip | Consejo Esta última path operation tendrá la combinación de tags: `["items", "custom"]`. Y también tendrá ambas responses en la documentación, una para `404` y otra para `403`. /// ## El `FastAPI` principal { #the-main-fastapi } Ahora, veamos el módulo en `app/main.py`. Aquí es donde importas y usas la clase `FastAPI`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 20.2K bytes - Click Count (0)