- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 9,601 for versions (0.05 sec)
-
cmd/warm-backend-gcs.go
// // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful // but WITHOUT ANY WARRANTY; without even the implied warranty of
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 6.1K bytes - Viewed (0) -
manifests/addons/dashboards/ztunnel-dashboard.gen.json
"uid": "$datasource" }, "expr": "sum by (tag) (istio_build{component=\"ztunnel\"})", "legendFormat": "Version ({{tag}})" } ], "title": "Ztunnel Versions", "type": "timeseries" }, { "datasource": { "type": "datasource", "uid": "-- Mixed --" },
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jul 26 23:54:32 UTC 2024 - 17.3K bytes - Viewed (0) -
docs/ko/docs/tutorial/schema-extra-example.md
* <a href="https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#parameter-object" class="external-link" target="_blank">`(명세서에 있는) Parameter Object`</a>는 FastAPI의 다음 기능에서 쓰였습니다: * `Path()` * `Query()` * `Header()` * `Cookie()`
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.5K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilter.java
* {@link #writeTo} and {@link #readFrom} methods. Both serialized forms will continue to be * supported by future versions of this library. However, serial forms generated by newer versions * of the code may not be readable by older versions of the code (e.g., a serialized Bloom filter * generated today may <i>not</i> be readable by a binary that was compiled 6 months ago). *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 23 16:45:30 UTC 2024 - 26.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/AbstractStandardUndirectedGraphTest.java
putEdge(N2, N1); assertThat(graph.outDegree(N1)).isEqualTo(3); } // Stable order tests // Note: Stable order means that the ordering doesn't change between iterations and versions. // Ideally, the ordering in test should never be updated. @Test public void stableIncidentEdgeOrder_edges_returnsInStableOrder() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 02 18:21:29 UTC 2024 - 12.7K bytes - Viewed (0) -
docs/en/docs/advanced/events.md
A **context manager** in Python is something that you can use in a `with` statement, for example, `open()` can be used as a context manager: ```Python with open("file.txt") as file: file.read() ``` In recent versions of Python, there's also an **async context manager**. You would use it with `async with`: ```Python async with lifespan(app): await do_stuff() ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 10:36:22 UTC 2024 - 7.6K bytes - Viewed (0) -
tests/test_dependency_contextmanager.py
async def bg(state: dict): state["bg"] = f"bg set - b: {state['context_b']} - a: {state['context_a']}" tasks.add_task(bg, state) return state # Sync versions @app.get("/sync_async") def get_sync_async(state: str = Depends(asyncgen_state)): return state @app.get("/sync_sync") def get_sync_sync(state: str = Depends(generator_state)):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 17 04:13:50 UTC 2024 - 11.6K bytes - Viewed (0) -
Makefile.core.mk
SHELL := /bin/bash -o pipefail # Version can be defined: # (1) in a $VERSION shell variable, which takes precedence; or # (2) in the VERSION file, in which we will append "-dev" to it ifeq ($(VERSION),) VERSION_FROM_FILE := $(shell cat VERSION) ifeq ($(VERSION_FROM_FILE),) $(error VERSION not detected. Make sure it's stored in the VERSION file or defined in VERSION variable) endif VERSION := $(VERSION_FROM_FILE)-dev endif
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 03 23:53:59 UTC 2024 - 18.4K bytes - Viewed (0) -
tensorflow/c/c_api.cc
} void TF_GraphVersions(TF_Graph* graph, TF_Buffer* output_version_def, TF_Status* status) { VersionDef versions; { mutex_lock l(graph->mu); versions = graph->graph.versions(); } status->status = MessageToBuffer(versions, output_version_def); } TF_ImportGraphDefOptions* TF_NewImportGraphDefOptions() { return new TF_ImportGraphDefOptions; }
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0) -
cmd/api-router.go
// ListObjectVersions router.Methods(http.MethodGet). HandlerFunc(s3APIMiddleware(api.ListObjectVersionsMHandler)). Queries("versions", "", "metadata", "true") // ListObjectVersions router.Methods(http.MethodGet). HandlerFunc(s3APIMiddleware(api.ListObjectVersionsHandler)). Queries("versions", "") // GetBucketPolicyStatus router.Methods(http.MethodGet). HandlerFunc(s3APIMiddleware(api.GetBucketPolicyStatusHandler)).
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 15:25:16 UTC 2024 - 23.1K bytes - Viewed (0)