- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 256 for 19 (0.01 sec)
-
istioctl/pkg/install/k8sversion/version.go
if err != nil { return false, err } return MinK8SVersion <= v, nil } // extractKubernetesVersion returns the Kubernetes minor version. For example, `v1.19.1` will return `19` func extractKubernetesVersion(versionInfo *version.Info) (int, error) { ver, err := goversion.NewVersion(versionInfo.String()) if err != nil { return 0, fmt.Errorf("could not parse %v", err) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 30 21:50:50 UTC 2024 - 2.6K bytes - Viewed (0) -
docs/ja/docs/tutorial/dependencies/classes-as-dependencies.md
どちらの場合も以下を持っています: * オプショナルの`q`クエリパラメータ。 * `skip`クエリパラメータ、デフォルトは`0`。 * `limit`クエリパラメータ、デフォルトは`100`。 どちらの場合も、データは変換され、検証され、OpenAPIスキーマなどで文書化されます。 ## 使用 これで、このクラスを使用して依存関係を宣言することができます。 ```Python hl_lines="19" {!../../docs_src/dependencies/tutorial002.py!} ``` **FastAPI** は`CommonQueryParams`クラスを呼び出します。これにより、そのクラスの「インスタンス」が作成され、インスタンスはパラメータ`commons`として関数に渡されます。 ## 型注釈と`Depends`
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.2K bytes - Viewed (0) -
internal/s3select/simdj/testdata/parking-citations-10.json.zst
Color":"BK","Location":"GEORGIA ST/OLYMPIC","Route":"1FB70","Agency":1,"ViolationCode":"8069A","ViolationDescr":"NO STOPPING/STANDING","Fine":93,"Latitude":99999,"Longitude":99999} {"Ticket":1106226590,"IssueData":"2015-09-15T00:00:00","IssueTime":"19","RPState":"CA","PlateExpiry":"201507","Make":"CHEV","BodyStyle":"VN","Color":"GY","Location":"SAN PEDRO S/O BOYD","Route":"1A35W","Agency":1,"ViolationCode":"4000A1","ViolationDescr":"NO EVIDENCE OF REG","Fine":50,"Latitude":99999,"Longitude":99999}...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 693 bytes - Viewed (0) -
docs/pt/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
O *decorador da operação de rota* recebe um argumento opcional `dependencies`. Ele deve ser uma lista de `Depends()`: //// tab | Python 3.9+ ```Python hl_lines="19" {!> ../../docs_src/dependencies/tutorial006_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="18" {!> ../../docs_src/dependencies/tutorial006_an.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.5K bytes - Viewed (0) -
docs/ru/docs/tutorial/path-operation-configuration.md
<img src="/img/tutorial/path-operation-configuration/image02.png"> ## Описание ответа Вы можете указать описание ответа с помощью параметра `response_description`: //// tab | Python 3.10+ ```Python hl_lines="19" {!> ../../docs_src/path_operation_configuration/tutorial005_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="21" {!> ../../docs_src/path_operation_configuration/tutorial005_py39.py!}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/de/docs/tutorial/path-operation-configuration.md
## Beschreibung der Response Die Response können Sie mit dem Parameter `response_description` beschreiben: //// tab | Python 3.10+ ```Python hl_lines="19" {!> ../../docs_src/path_operation_configuration/tutorial005_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="21" {!> ../../docs_src/path_operation_configuration/tutorial005_py39.py!}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.9K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt
@JvmStatic fun selectVersionsFrom(minimumSupported: String, allVersions: List<String>): List<String> { val versionsByMinor = allVersions .groupBy { it.take(3) } // e.g. 1.9 .toSortedMap() val latests = buildList { versionsByMinor.entries.forEachIndexed { idx, entry -> // Earliest stable of the minor
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jul 23 18:27:26 UTC 2024 - 5.2K bytes - Viewed (0) -
common-protos/k8s.io/api/extensions/v1beta1/generated.proto
// or '#'. message HTTPIngressRuleValue { // A collection of paths that map requests to backends. repeated HTTPIngressPath paths = 1; } // DEPRECATED 1.9 - This group version of IPBlock is deprecated by networking/v1/IPBlock. // IPBlock describes a particular CIDR (Ex. "192.168.1.0/24","2001:db8::/64") that is allowed
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 45.6K bytes - Viewed (0) -
src/archive/tar/strconv_test.go
longName := strings.Repeat("AB", 100) vectors := []struct { in string wantRes string wantKey string wantVal string ok bool }{ {"6 k=v\n\n", "\n", "k", "v", true}, {"19 path=/etc/hosts\n", "", "path", "/etc/hosts", true}, {"210 path=" + longName + "\nabc", "abc", "path", longName, true}, {"110 path=" + medName + "\n", "", "path", medName, true}, {"9 foo=ba\n", "", "foo", "ba", true},
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Feb 09 05:28:50 UTC 2021 - 14K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/sub-dependencies.md
{!> ../../docs_src/dependencies/tutorial005_an.py!} ``` //// //// tab | Python 3.10 non-Annotated /// tip Prefer to use the `Annotated` version if possible. /// ```Python hl_lines="19" {!> ../../docs_src/dependencies/tutorial005_py310.py!} ``` //// //// tab | Python 3.8 non-Annotated /// tip Prefer to use the `Annotated` version if possible. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.5K bytes - Viewed (0)