- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 723 for tag3 (0.23 sec)
-
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt
return when { peekHeader.tagClass == Adapters.UTC_TIME.tagClass && peekHeader.tag == Adapters.UTC_TIME.tag -> { Adapters.UTC_TIME.fromDer(reader) } peekHeader.tagClass == Adapters.GENERALIZED_TIME.tagClass && peekHeader.tag == Adapters.GENERALIZED_TIME.tag -> { Adapters.GENERALIZED_TIME.fromDer(reader) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 13.6K bytes - Viewed (0) -
tests/test_tutorial/test_path_operation_configurations/test_tutorial006.py
"description": "Successful Response", "content": {"application/json": {"schema": {}}}, } }, "tags": ["items"], "summary": "Read Items", "operationId": "read_items_items__get", } }, "/users/": { "get": {
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 2.3K bytes - Viewed (0) -
docs/site-replication/run-multi-site-ldap.sh
exit_1 fi # "Test if most recent tag update is replicated" ./mc tag set minio2/newbucket "key=val1" if [ $? -ne 0 ]; then echo "expecting tag set to be successful. exiting.." exit_1 fi sleep 10 val=$(./mc tag list minio1/newbucket --json | jq -r .tagset | jq -r .key) if [ "${val}" != "val1" ]; then echo "expected bucket tag to have replicated, exiting..." exit_1 fi # stop minio1
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 10.1K bytes - Viewed (0) -
docs/em/docs/tutorial/bigger-applications.md
โ๏ธ ๐ ๐ ๐ญ โ โซ๏ธ ๐ท, ๐ ๐ช โ๏ธ โ ๐ ๐ ๐ ๐ฑ ๐ โโ ๐ค โ ๐ ๐ซ. ๐ถ ### ๐ฎ ๐ `tags`, `responses`, & `dependencies` ๐ฅ ๐ซ โ ๐ก `/items` ๐ซ `tags=["items"]` ๐ *โก ๐ ๏ธ* โฉ๏ธ ๐ฅ ๐ฎ ๐ซ `APIRouter`. โ๏ธ ๐ฅ ๐ช ๐ฎ _๐ _ `tags` ๐ ๐ โ ๐ฏ *โก ๐ ๏ธ*, & โ `responses` ๐ฏ ๐ *โก ๐ ๏ธ*: ```Python hl_lines="30-31" title="app/routers/items.py"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 15.5K bytes - Viewed (0) -
tests/test_openapi_separate_input_output_schemas.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 09:44:57 UTC 2024 - 19.7K bytes - Viewed (0) -
docs_src/bigger_applications/app_an_py39/routers/users.py
from fastapi import APIRouter router = APIRouter() @router.get("/users/", tags=["users"]) async def read_users(): return [{"username": "Rick"}, {"username": "Morty"}] @router.get("/users/me", tags=["users"]) async def read_user_me(): return {"username": "fakecurrentuser"} @router.get("/users/{username}", tags=["users"]) async def read_user(username: str):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 407 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java
public static final String USER_BOOST = "userBoost"; public static final String KINDS = "kinds"; public static final String TIMESTAMP = "@timestamp"; public static final String TAGS = "tags"; public static final String ROLES = "roles"; public static final String FIELDS = "fields"; public static final String LANGUAGES = "languages"; public static final String ARRAY_KEY = "key";
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 2.1K bytes - Viewed (0) -
tensorflow/c/eager/BUILD
], ) tf_cuda_cc_test( name = "gradients_test", size = "small", srcs = [ "gradients_test.cc", ], args = ["--heap_check="], tags = tf_cuda_tests_tags() + ["nomac"], deps = [ ":abstract_context", ":abstract_tensor_handle", ":c_api_experimental", ":c_api_test_util", ":c_api_unified_internal",
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Apr 11 23:52:39 UTC 2024 - 33.3K bytes - Viewed (0) -
cmd/bucket-replication.go
ReplicationRequest: true, // always set this to distinguish between `mc mirror` replication and serverside }, } if objInfo.UserTags != "" { tag, _ := tags.ParseObjectTags(objInfo.UserTags) if tag != nil { putOpts.UserTags = tag.ToMap() // set tag timestamp in opts tagTimestamp := objInfo.ModTime if tagTmstampStr, ok := objInfo.UserDefined[ReservedMetadataPrefixLower+TaggingTimestamp]; ok {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 06:49:55 UTC 2024 - 116.1K bytes - Viewed (0) -
docs/de/docs/tutorial/body-nested-models.md
``` //// ## Set-Typen Aber dann denken wir darรผber nach und stellen fest, dass sich die Tags nicht wiederholen sollen, es sollen eindeutige Strings sein. Python hat einen Datentyp speziell fรผr Mengen eindeutiger Dinge: das <abbr title="Menge">`set`</abbr>. Deklarieren wir also `tags` als Set von Strings. //// tab | Python 3.10+ ```Python hl_lines="12"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.3K bytes - Viewed (0)