- Sort Score
- Num 10 results
- Language All
Results 621 - 630 of 882 for _path_ (0.32 seconds)
-
misc/ios/clangwrap.sh
# iphonesimulator with one of them. SDK=iphonesimulator PLATFORM=ios-simulator if [ "$GOARCH" == "arm64" ]; then CLANGARCH="arm64" else CLANGARCH="x86_64" fi SDK_PATH=`xcrun --sdk $SDK --show-sdk-path` # cmd/cgo doesn't support llvm-gcc-4.2, so we have to use clang. CLANG=`xcrun --sdk $SDK --find clang`
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Jun 18 16:32:49 GMT 2024 - 724 bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/bigger-applications.md
你希望把與使用者相關的「路徑操作 (path operation)」從其他程式碼分離,讓結構更有條理。 但它仍然是同一個 FastAPI 應用程式 / Web API 的一部分(屬於同一個「Python 套件」)。 你可以使用 `APIRouter` 為該模組建立路徑操作。 ### 匯入 `APIRouter` { #import-apirouter } 你可以像對 `FastAPI` 類別那樣匯入並建立一個「實例」: {* ../../docs_src/bigger_applications/app_an_py310/routers/users.py hl[1,3] title["app/routers/users.py"] *} ### 使用 `APIRouter` 宣告路徑操作 { #path-operations-with-apirouter } 然後用它來宣告你的路徑操作。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) -
tests/test_response_by_alias.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Feb 08 10:18:38 GMT 2026 - 11.7K bytes - Click Count (0) -
scripts/playwright/separate_openapi_schemas/image04.py
page.get_by_role("button", name="Item-Output").click() page.set_viewport_size({"width": 960, "height": 820}) # Manually add the screenshot page.screenshot( path="docs/en/docs/img/tutorial/separate-openapi-schemas/image04.png" ) # --------------------- context.close() browser.close() process = subprocess.Popen(
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Sep 13 09:14:46 GMT 2024 - 1K bytes - Click Count (0) -
docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md
participant dep_func as Dep scope="function" participant operation as Path Operation client ->> dep_req: Start request Note over dep_req: Run code up to yield dep_req ->> dep_func: Pass dependency Note over dep_func: Run code up to yield dep_func ->> operation: Run path operation with dependency operation ->> dep_func: Return from path operation Note over dep_func: Run code after yield
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 12.1K bytes - Click Count (0) -
docs/zh/docs/tutorial/first-steps.md
{* ../../docs_src/first_steps/tutorial001_py310.py hl[3] *} 这里的变量 `app` 会是 `FastAPI` 类的一个「实例」。 这个实例将是创建你所有 API 的主要交互对象。 ### 步骤 3:创建一个*路径操作* { #step-3-create-a-path-operation } #### 路径 { #path } 这里的「路径」指的是 URL 中从第一个 `/` 起的后半部分。 所以,在一个这样的 URL 中: ``` https://example.com/items/foo ``` ...路径会是: ``` /items/foo ``` /// infoCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 13.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
} /** * Extracts and processes the site path from a URL with proper encoding handling. * Removes protocol, query parameters, and applies URL decoding based on encoding settings. * * @param u the URL string to process * @param encoding the character encoding to use for URL decoding * @return the processed site path, abbreviated if necessary */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 14.1K bytes - Click Count (0) -
mockwebserver/src/main/kotlin/mockwebserver3/PushPromise.kt
* limitations under the License. */ package mockwebserver3 import okhttp3.Headers /** An HTTP request initiated by the server. */ public class PushPromise( public val method: String, public val path: String, public val headers: Headers, public val response: MockResponse,
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat Jun 14 16:09:26 GMT 2025 - 849 bytes - Click Count (0) -
scripts/playwright/json_base64_bytes/image01.py
page = context.new_page() page.goto("http://localhost:8000/docs") page.get_by_role("button", name="POST /data Post Data").click() # Manually add the screenshot page.screenshot(path="docs/en/docs/img/tutorial/json-base64-bytes/image01.png") # --------------------- context.close() browser.close() process = subprocess.Popen(
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 21 13:01:31 GMT 2026 - 1.1K bytes - Click Count (0) -
docs/smb3-features/02-persistent-handles-design.md
public HandleInfo getHandleForReconnect(String path) { HandleInfo info = handles.get(path); if (info != null && !info.isExpired()) { info.reconnecting = true; return info; } return null; } public void completeReconnect(String path, boolean success) { HandleInfo info = handles.get(path); if (info != null) { if (success) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 31.6K bytes - Click Count (0)