- Sort Score
- Num 10 results
- Language All
Results 711 - 720 of 882 for _path_ (0.04 seconds)
-
docs/zh-hant/docs/tutorial/extra-data-types.md
* `Decimal`: * 標準的 Python `Decimal`。 * 在請求與回應中,與 `float` 的處理方式相同。 * 你可以在此查閱所有可用的 Pydantic 資料型別:[Pydantic 資料型別](https://docs.pydantic.dev/latest/usage/types/types/)。 ## 範例 { #example } 以下是一個帶有參數、使用上述部分型別的 *路徑操作 (path operation)* 範例。 {* ../../docs_src/extra_data_types/tutorial001_an_py310.py hl[1,3,12:16] *} 請注意,函式內的參數會是它們的自然資料型別,因此你可以進行一般的日期運算,例如:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/tr/docs/benchmarks.md
* Uvicorn'dan sonra en iyi performansa sahip olacaktır. Aslında Starlette çalışmak için Uvicorn'u kullanır. Bu yüzden muhtemelen yalnızca daha fazla kod çalıştırmak zorunda kaldığı için Uvicorn'dan "daha yavaş" olabilir. * Ancak path tabanlı routing vb. ile basit web uygulamaları oluşturmanız için araçlar sağlar. * Starlette'i karşılaştırıyorsanız, Sanic, Flask, Django vb. web framework'lerle (veya mikroframework'lerle) karşılaştırın. * **FastAPI**:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 4K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/CurlTest.java
@Test public void test_FactoryMethodsWithDifferentUrls() { // ## Test factory methods with various URL formats ## // ## Act & Assert ## assertNotNull(Curl.get("https://secure.example.com/path?param=value")); assertNotNull(Curl.post("http://api.example.com/v1/resource")); assertNotNull(Curl.put("ftp://files.example.com/upload")); assertNotNull(Curl.delete("http://localhost:8080/delete"));Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 16.3K bytes - Click Count (0) -
docs/ja/docs/advanced/websockets.md
そして、これらの通信はすべて同じWebSocket接続を使用します。 ## `Depends` などの使用 { #using-depends-and-others } WebSocketエンドポイントでは、`fastapi` から以下をインポートして使用できます。 * `Depends` * `Security` * `Cookie` * `Header` * `Path` * `Query` これらは、他のFastAPI エンドポイント/*path operations* の場合と同じように機能します。 {* ../../docs_src/websockets_/tutorial002_an_py310.py hl[68:69,82] *} /// info | 情報Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 6.8K bytes - Click Count (0) -
cmd/prepare-storage.go
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Jul 12 20:51:54 GMT 2024 - 11.1K bytes - Click Count (1) -
internal/event/target/kafka.go
package target import ( "context" "crypto/tls" "crypto/x509" "encoding/json" "errors" "fmt" "log" "net/url" "os" "path/filepath" "strings" "time" "github.com/minio/minio/internal/event" "github.com/minio/minio/internal/logger" "github.com/minio/minio/internal/once" "github.com/minio/minio/internal/store"
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Sep 06 23:06:30 GMT 2024 - 13.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/SearchListTests.java
import java.util.HashMap; import java.util.List; import java.util.Map; import org.codelibs.fess.it.CrudTestBase; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import io.restassured.path.json.JsonPath; @Tag("it") public class SearchListTests extends CrudTestBase { private static final String NAME_PREFIX = "searchListTest_"; private static final String API_PATH = "/api/admin/searchlist";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jun 12 02:18:38 GMT 2025 - 4.5K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeResponseTest.java
/** * Unit tests for {@link TransWaitNamedPipeResponse}. * * The implementation contains only trivial methods that return {@code 0} * or construct a string representation. The tests focus on: * * <ul> * <li>happy‑path behaviour</li> * <li>boundary arguments (e.g., negative indices, large values)</li> * <li>string representation containing the class name</li> * <li>null buffer handling</li> * </ul> */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 5.4K bytes - Click Count (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsProblem.java
* creator of the problem, the general expectation is that the hint provides sufficient information to the user to * track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from * which the settings were read. * * @return The hint about the source of the problem or an empty string if unknown, never {@code null}. */ String getSource(); /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.5K bytes - Click Count (0) -
docs/ja/docs/advanced/response-change-status-code.md
しかし、データが存在しなければそれを作成し、HTTP ステータスコード "CREATED" `201` を返したい。 それでも、返すデータは `response_model` でフィルタ・変換できるようにしておきたい。 そのような場合は `Response` パラメータを使えます。 ## `Response` パラメータを使う { #use-a-response-parameter } *path operation* 関数で `Response` 型のパラメータを宣言できます(Cookie やヘッダーと同様です)。 そして、その*一時的な*レスポンスオブジェクトに `status_code` を設定できます。 {* ../../docs_src/response_change_status_code/tutorial001_py310.py hl[1,9,12] *}
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 2K bytes - Click Count (0)