- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 1,004 for type3 (0.1 sec)
-
compat/maven-resolver-provider/src/site/apt/dependency-types.apt
~~ under the License. --- Default Dependency Types --- Hervé Boutemy --- 2024-04-02 --- Default Dependency Types Reference Defined in <<<DefaultTypeProvider>>> ({{{./apidocs/org/apache/maven/repository/internal/type/DefaultTypeProvider.html}javadoc}}, {{{./xref/org/apache/maven/repository/internal/type/DefaultTypeProvider.html}source}}):
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.7K bytes - Viewed (0) -
docs/ru/docs/python-types.md
В тот же момент вы пытаетесь запустить автодополнение с помощью `Ctrl+Space` и вы видите: <img src="/img/python-types/image02.png"> При этом вы можете просматривать варианты, пока не найдёте подходящий: <img src="/img/python-types/image03.png"> ## Больше мотивации Проверьте эту функцию, она уже имеет аннотации типов: ```Python hl_lines="1"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14.6K bytes - Viewed (0) -
docs/en/docs/tutorial/extra-data-types.md
* In requests and responses, handled the same as a `float`. * You can check all the valid Pydantic data types here: <a href="https://docs.pydantic.dev/latest/usage/types/types/" class="external-link" target="_blank">Pydantic data types</a>. ## Example Here's an example *path operation* with parameters using some of the above types. //// tab | Python 3.10+ ```Python hl_lines="1 3 12-16"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4K bytes - Viewed (0) -
docs/uk/docs/python-types.md
# Вступ до типів Python Python підтримує додаткові "підказки типу" ("type hints") (також звані "анотаціями типу" ("type annotations")). Ці **"type hints"** є спеціальним синтаксисом, що дозволяє оголошувати <abbr title="наприклад: str, int, float, bool">тип</abbr> змінної. За допомогою оголошення типів для ваших змінних, редактори та інструменти можуть надати вам кращу підтримку.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 19.5K bytes - Viewed (0) -
internal/grid/types.go
"sort" "strings" "sync" "github.com/tinylib/msgp/msgp" ) // Recycler will override the internal reuse in typed handlers. // When this is supported, the handler will not do internal pooling of objects, // call Recycle() when the object is no longer needed. // The recycler should handle nil pointers. type Recycler interface { Recycle() } // MSS is a map[string]string that can be serialized.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 15.5K bytes - Viewed (0) -
fastapi/py.typed
Steve B <******@****.***> 1557567827 +0200
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat May 11 09:43:47 UTC 2019 - Viewed (0) -
docs/ko/docs/tutorial/extra-data-types.md
* 생성된 스키마는 이것이 `binary` "형식"의 `str`임을 명시합니다. * `Decimal`: * 표준 파이썬의 `Decimal`. * 요청과 응답에서 `float`와 동일하게 다뤄집니다. * 여기에서 모든 유효한 pydantic 데이터 자료형을 확인할 수 있습니다: <a href="https://docs.pydantic.dev/latest/usage/types/types/" class="external-link" target="_blank">Pydantic 데이터 자료형</a>. ## 예시 위의 몇몇 자료형을 매개변수로 사용하는 *경로 작동* 예시입니다. //// tab | Python 3.10+ ```Python hl_lines="1 3 12-16"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/ja/docs/tutorial/extra-data-types.md
* `Decimal`: * Pythonの標準的な`Decimal`です。 * リクエストやレスポンスでは`float`と同じように扱います。 * Pydanticの全ての有効な型はこちらで確認できます: <a href="https://docs.pydantic.dev/latest/concepts/types/" class="external-link" target="_blank">Pydantic data types</a>。 ## 例 ここでは、上記の型のいくつかを使用したパラメータを持つ*path operation*の例を示します。 ```Python hl_lines="1 2 12-16" {!../../docs_src/extra_data_types/tutorial001.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.2K bytes - Viewed (0) -
docs/ko/docs/python-types.md
<img src="/img/python-types/image02.png"> 아래와 같이 "그렇지!"하는 옵션이 나올때까지 스크롤을 내려서 볼 수 있습니다: <img src="/img/python-types/image03.png"> ## 더 큰 동기부여 아래 함수를 보면, 이미 타입 힌트가 적용되어 있는 걸 볼 수 있습니다: ```Python hl_lines="1" {!../../docs_src/python_types/tutorial003.py!} ``` 편집기가 변수의 타입을 알고 있기 때문에, 자동완성 뿐 아니라 에러도 확인할 수 있습니다: <img src="/img/python-types/image04.png">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.5K bytes - Viewed (0) -
internal/config/dns/types.go
package dns import ( "encoding/json" "time" ) const ( defaultTTL = 30 defaultContextTimeout = 5 * time.Minute ) // SrvRecord - represents a DNS service record type SrvRecord struct { Host string `json:"host,omitempty"` Port json.Number `json:"port,omitempty"` Priority int `json:"priority,omitempty"` Weight int `json:"weight,omitempty"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 2K bytes - Viewed (0)