- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 170 for tago (0.06 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/RequestTest.kt
val request = Request .Builder() .url("https://square.com") .tag(tag) .build() assertThat(request.tag()).isSameAs(tag) assertThat(request.tag(Any::class.java)).isSameAs(tag) assertThat(request.tag(UUID::class.java)).isNull() assertThat(request.tag(String::class.java)).isNull() // Alternate access APIs also work.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 19K bytes - Viewed (0) -
docs/vi/docs/environment-variables.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 07 22:17:13 UTC 2025 - 9.8K bytes - Viewed (0) -
docs/ru/docs/tutorial/body-nested-models.md
{* ../../docs_src/body_nested_models/tutorial002_py310.py hl[12] *} ## Типы множеств Но затем мы подумали и поняли, что теги не должны повторяться и, вероятно, они должны быть уникальными строками. И в Python есть специальный тип данных для множеств уникальных элементов - `set`. Тогда мы можем обьявить поле `tags` как множество строк:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 12.3K bytes - Viewed (0) -
docs/ko/docs/tutorial/body-nested-models.md
``` 이 모든 것은 타입 선언을 위한 표준 파이썬 문법입니다. 내부 타입을 갖는 모델 어트리뷰트에 대해 동일한 표준 문법을 사용하세요. 마찬가지로 예제에서 `tags`를 구체적으로 "문자열의 리스트"로 만들 수 있습니다: {* ../../docs_src/body_nested_models/tutorial002.py hl[14] *} ## 집합 타입 그런데 생각해보니 태그는 반복되면 안 되고, 고유한(Unique) 문자열이어야 할 것 같습니다. 그리고 파이썬은 집합을 위한 특별한 데이터 타입 `set`이 있습니다. 그렇다면 `Set`을 임포트 하고 `tags`를 `str`의 `set`으로 선언할 수 있습니다: {* ../../docs_src/body_nested_models/tutorial003.py hl[1,14] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.3K bytes - Viewed (0) -
docs/vi/docs/virtual-environments.md
/// ## Tạo một Dự án Đầu tiên, tạo một thư mục cho dự án của bạn. Cách tôi thường làm là tạo một thư mục có tên `code` trong thư mục `home/user`. Và trong thư mục đó, tôi tạo một thư mục cho mỗi dự án. <div class="termy"> ```console // Đi đến thư mục home $ cd // Tạo một thư mục cho tất cả các dự án của bạn $ mkdir code // Vào thư mục code
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 07 22:19:18 UTC 2025 - 26.1K bytes - Viewed (0) -
docs/em/docs/tutorial/response-model.md
```Python hl_lines="3 5-6" { "name": "Baz", "description": None, "price": 50.2, "tax": 10.5, "tags": [] } ``` FastAPI 🙃 🥃 (🤙, Pydantic 🙃 🥃) 🤔 👈, ✋️ `description`, `tax`, & `tags` ✔️ 🎏 💲 🔢, 👫 ⚒ 🎯 (↩️ ✊ ⚪️➡️ 🔢). , 👫 🔜 🔌 🎻 📨. /// tip 👀 👈 🔢 💲 💪 🕳, 🚫 🕴 `None`. 👫 💪 📇 (`[]`), `float` `10.5`, ♒️.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingConfig.java
public static final String HTML_CANONICAL_XPATH = "html.canonical.xpath"; public static final String HTML_PRUNED_TAGS = "html.pruned.tags"; public static final String PIPELINE = "pipeline"; public static final String IGNORE_ROBOTS_TAGS = "ignore.robots.tags"; public static final String SCRIPT_TYPE = "script.type"; public static final String HTML_CHILD_URL_RULES = "html.child.url.rules";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.6K bytes - Viewed (0) -
docs/ja/docs/tutorial/body-nested-models.md
``` 型宣言の標準的なPythonの構文はこれだけです。 内部の型を持つモデルの属性にも同じ標準の構文を使用してください。 そのため、以下の例では`tags`を具体的な「文字列のリスト」にすることができます: {* ../../docs_src/body_nested_models/tutorial002.py hl[14] *} ## セット型 しかし、よく考えてみると、タグは繰り返すべきではなく、おそらくユニークな文字列になるのではないかと気付いたとします。 そして、Pythonにはユニークな項目のセットのための特別なデータ型`set`があります。 そのため、以下のように、`Set`をインポートして`str`の`set`として`tags`を宣言することができます: {* ../../docs_src/body_nested_models/tutorial003.py hl[1,14] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 8.5K bytes - Viewed (0) -
docs/vi/docs/tutorial/first-steps.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Nov 10 16:58:43 UTC 2024 - 11K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/AnyValue.kt
*/ internal data class AnyValue( var tagClass: Int, var tag: Long, var constructed: Boolean = false, var length: Long = -1L, val bytes: ByteString, ) { // Avoid Long.hashCode(long) which isn't available on Android 5. override fun hashCode(): Int { var result = 0 result = 31 * result + tagClass result = 31 * result + tag.toInt() result = 31 * result + (if (constructed) 0 else 1)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.3K bytes - Viewed (0)