- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 1,337 for PATH (0.01 sec)
-
docs/uk/docs/tutorial/header-params.md
# Header-параметри Ви можете визначати параметри заголовків, так само як визначаєте `Query`, `Path` і `Cookie` параметри. ## Імпорт `Header` Спочатку імпортуйте `Header`: {* ../../docs_src/header_params/tutorial001_an_py310.py hl[3] *} ## Оголошення параметрів `Header` Потім оголосіть параметри заголовків, використовуючи ту ж структуру, що й для `Path`, `Query` та `Cookie`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Feb 22 22:02:19 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/ReferralTest.java
bb.putShort((short) 76); // nodeOffset // Path string at offset 22 (relative to start of referral at position 0) bb.position(22); String path = "\\\\server\\share"; bb.put(path.getBytes(StandardCharsets.UTF_16LE)); bb.putShort((short) 0); // Alt path string at offset 54 bb.position(54); String altPath = "\\\\alt\\path";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0) -
docs/ja/docs/tutorial/security/get-current-user.md
## コードサイズ この例は冗長に見えるかもしれません。セキュリティとデータモデルユーティリティ関数および *path operations* が同じファイルに混在しているということを覚えておいてください。 しかし、ここに重要なポイントがあります。 セキュリティと依存性注入に関するものは、一度だけ書きます。 そして、それは好きなだけ複雑にすることができます。それでも、一箇所に、一度だけ書くのです。すべての柔軟性を備えます。 しかし、同じセキュリティシステムを使って何千ものエンドポイント(*path operations*)を持つことができます。 そして、それらエンドポイントのすべて(必要な、どの部分でも)がこうした依存関係や、あなたが作成する別の依存関係を再利用する利点を享受できるのです。 さらに、こうした何千もの *path operations* は、たった3行で表現できるのです:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 5.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
} /** * Returns the path to the pom file for this project. * A project is usually read from a file named {@code pom.xml}, * which contains the {@linkplain #getModel() model} in an XML form. * When a custom {@code org.apache.maven.api.spi.ModelParser} is used, * the path may point to a non XML file. * <p> * The POM path is also used to define the {@linkplain #getBasedir() base directory}
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Feb 27 11:07:03 UTC 2025 - 10.6K bytes - Viewed (0) -
docs/ja/docs/tutorial/header-params.md
# ヘッダーのパラメータ ヘッダーのパラメータは、`Query`や`Path`、`Cookie`のパラメータを定義するのと同じように定義できます。 ## `Header`をインポート まず、`Header`をインポートします: {* ../../docs_src/header_params/tutorial001.py hl[3] *} ## `Header`のパラメータの宣言 次に、`Path`や`Query`、`Cookie`と同じ構造を用いてヘッダーのパラメータを宣言します。 最初の値がデフォルト値で、追加の検証パラメータや注釈パラメータをすべて渡すことができます。 {* ../../docs_src/header_params/tutorial001.py hl[9] *} /// note | 技術詳細
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java
super(config, SMB_COM_TRANSACTION2, TRANS2_FIND_FIRST2); if (filename.equals("\\") || (filename.charAt(filename.length() - 1) == '\\')) { this.path = filename; } else { this.path = filename + "\\"; } this.wildcard = wildcard; this.searchAttributes = searchAttributes & 0x37; /* generally ignored tho */ this.tflags = 0x00;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
docs/em/docs/tutorial/body-multiple-params.md
# 💪 - 💗 🔢 🔜 👈 👥 ✔️ 👀 ❔ ⚙️ `Path` & `Query`, ➡️ 👀 🌅 🏧 ⚙️ 📨 💪 📄. ## 🌀 `Path`, `Query` & 💪 🔢 🥇, ↗️, 👆 💪 🌀 `Path`, `Query` & 📨 💪 🔢 📄 ➡ & **FastAPI** 🔜 💭 ⚫️❔. & 👆 💪 📣 💪 🔢 📦, ⚒ 🔢 `None`: {* ../../docs_src/body_multiple_params/tutorial001.py hl[19:21] *} /// note 👀 👈, 👉 💼, `item` 👈 🔜 ✊ ⚪️➡️ 💪 📦. ⚫️ ✔️ `None` 🔢 💲. /// ## 💗 💪 🔢
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/log/ApiAdminLogAction.java
if (StringUtil.isNotBlank(logFilePath) && isLogFilename(filename)) { final Path path = Paths.get(logFilePath, filename); return asStream(filename).contentTypeOctetStream().stream(out -> { try (InputStream in = Files.newInputStream(path)) { out.write(in); } }); } return StreamResponse.asEmptyBody();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
docs/es/docs/tutorial/body-multiple-params.md
# Cuerpo - Múltiples Parámetros Ahora que hemos visto cómo usar `Path` y `Query`, veamos usos más avanzados de las declaraciones del request body. ## Mezclar `Path`, `Query` y parámetros del cuerpo Primero, por supuesto, puedes mezclar las declaraciones de parámetros de `Path`, `Query` y del request body libremente y **FastAPI** sabrá qué hacer. Y también puedes declarar parámetros del cuerpo como opcionales, estableciendo el valor predeterminado a `None`:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 5K bytes - Viewed (0) -
docs/de/docs/how-to/general.md
## *Pfadoperation* in der Dokumentation deprecaten – OpenAPI
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Mar 30 18:18:42 UTC 2024 - 2.9K bytes - Viewed (0)