- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 154 for 404 (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/smb1/ntlmssp/Type2Message.java
} catch (final UnknownHostException ex) {} final int serverLength = server.length; final byte[] targetInfo = new byte[(domainLength > 0 ? domainLength + 4 : 0) + (serverLength > 0 ? serverLength + 4 : 0) + 4]; int offset = 0; if (domainLength > 0) { writeUShort(targetInfo, offset, 2); offset += 2; writeUShort(targetInfo, offset, domainLength); offset += 2;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 13K bytes - Click Count (0) -
cmd/erasure-server-pool.go
// of an object to check for object existence. For versioned buckets, MinIO's non-recursive // call will report top level prefixes in deleted state, whereas spark/hadoop interpret this as non-empty // and throw a 404 exception. This is especially a problem for spark jobs overwriting the same partition // repeatedly. This workaround recursively lists the top 3 entries including delete markers to reflect the
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 89.2K bytes - Click Count (0) -
tests/test_path.py
assert response.status_code == 200, response.text assert response.json() == "Hello World" def test_nonexistent(): response = client.get("/nonexistent") assert response.status_code == 404, response.text assert response.json() == {"detail": "Not Found"} def test_path_foobar(): response = client.get("/path/foobar") assert response.status_code == 200 assert response.json() == "foobar"Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Dec 27 18:19:10 GMT 2025 - 20.5K bytes - Click Count (2) -
docs/ru/docs/tutorial/bigger-applications.md
/// tip | Подсказка Эта последняя операция пути будет иметь комбинацию тегов: `["items", "custom"]`. И в документации у неё будут оба ответа: один для `404` и один для `403`. /// ## Модуль main в `FastAPI` { #the-main-fastapi } Теперь давайте посмотрим на модуль `app/main.py`. Именно сюда вы импортируете и именно здесь вы используете класс `FastAPI`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 29.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. true */ String CRAWLER_IGNORE_CONTENT_EXCEPTION = "crawler.ignore.content.exception"; /** The key of the configuration. e.g. 404 */ String CRAWLER_FAILURE_URL_STATUS_CODES = "crawler.failure.url.status.codes"; /** The key of the configuration. e.g. 60 */ String CRAWLER_SYSTEM_MONITOR_INTERVAL = "crawler.system.monitor.interval";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2) -
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/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) -
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) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt
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. assertCached(true, 410)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Mar 20 09:13:37 GMT 2026 - 121K bytes - Click Count (0) -
docs/de/docs/tutorial/bigger-applications.md
Und sie wird auch beide <abbr title="Response – Antwort: Daten, die der Server zum anfragenden Client zurücksendet">Responses</abbr> in der Dokumentation haben, eine für `404` und eine für `403`. /// ## Das Haupt-`FastAPI` { #the-main-fastapi } Sehen wir uns nun das Modul unter `app/main.py` an. Hier importieren und verwenden Sie die Klasse `FastAPI`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 21.9K bytes - Click Count (0)