- Sort Score
- Result 10 results
- Languages All
Results 971 - 980 of 2,899 for name4 (0.02 sec)
-
helm/minio/templates/poddisruptionbudget.yaml
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Apr 12 04:09:29 UTC 2023 - 448 bytes - Viewed (0) -
istioctl/pkg/util/constants.go
DefaultProxyAdminPort = 15000 // DefaultMeshConfigMapName is the default name of the ConfigMap with the mesh config // The actual name can be different - use getMeshConfigMapName DefaultMeshConfigMapName = "istio" // ConfigMapKey should match the expected MeshConfig file name ConfigMapKey = "mesh" // ValuesConfigMapKey should match the expected Values file name ValuesConfigMapKey = "values" DefaultRevisionName = "default" )
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 22 15:40:30 UTC 2024 - 1.4K bytes - Viewed (0) -
guava-bom/pom.xml
<relativePath></relativePath> </parent> <name>Guava BOM</name> <description>BOM for Guava artifacts</description> <url>https://github.com/google/guava</url> <inceptionYear>2010</inceptionYear> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/google/guava/issues</url> </issueManagement> <licenses> <license> <name>Apache License, Version 2.0</name>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 10 15:48:57 UTC 2020 - 1.7K bytes - Viewed (0) -
manifests/addons/values-grafana.yaml
# Set up out dashboards dashboardProviders: dashboardproviders.yaml: apiVersion: 1 providers: - name: "istio" orgId: 1 folder: "istio" type: file disableDeletion: false options: path: /var/lib/grafana/dashboards/istio - name: "istio-services" orgId: 1 folder: "istio" type: file disableDeletion: false
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jun 12 20:46:28 UTC 2024 - 1.7K bytes - Viewed (0) -
docs_src/extra_models/tutorial004_py39.py
from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str description: str items = [ {"name": "Foo", "description": "There comes my hero"}, {"name": "Red", "description": "It's my aeroplane"}, ] @app.get("/items/", response_model=list[Item]) async def read_items():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jan 07 14:11:31 UTC 2022 - 356 bytes - Viewed (0) -
tests/test_tutorial/test_query_params/test_tutorial006.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 6.1K bytes - Viewed (0) -
istioctl/pkg/kubeinject/testdata/deployment/hello.yaml
apiVersion: apps/v1 kind: Deployment metadata: name: hello spec: replicas: 7 selector: matchLabels: app: hello tier: backend track: stable template: metadata: labels: app: hello tier: backend track: stable spec: containers: - name: hello image: "fake.docker.io/google-samples/hello-go-gke:1.0" ports:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 460 bytes - Viewed (0) -
tests/customize_field_test.go
} generateStruct := func(name string) *CustomizeFieldStruct { return &CustomizeFieldStruct{ Name: name, FieldAllowCreate: name + "_allow_create", FieldAllowUpdate: name + "_allow_update", FieldAllowSave: name + "_allow_save", FieldAllowSave2: name + "_allow_save2", FieldAllowSave3: name + "_allow_save3", FieldReadonly: name + "_allow_readonly",
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Fri Sep 11 09:33:31 UTC 2020 - 6.9K bytes - Viewed (0) -
cni/pkg/install/testdata/bridge.conf.golden
{ "cniVersion": "0.3.1", "name": "k8s-pod-network", "plugins": [ { "bridge": "cni0", "dns": { "nameservers": [ "10.1.0.1" ] }, "ipam": { "gateway": "10.1.0.1", "subnet": "10.1.0.0/16", "type": "host-local" }, "name": "dbnet", "type": "bridge" }, { "ambient_enabled": false,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 625 bytes - Viewed (0) -
tests/test_response_model_as_return_annotation.py
class BaseUser(BaseModel): name: str class User(BaseUser): surname: str class DBUser(User): password_hash: str class Item(BaseModel): name: str price: float app = FastAPI() @app.get("/no_response_model-no_annotation-return_model") def no_response_model_no_annotation_return_model(): return User(name="John", surname="Doe")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 14 09:49:57 UTC 2023 - 47.7K bytes - Viewed (0)