- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 201 for node_name (0.1 sec)
-
disabled-Jenkinsfile
runITsTasks[stageId] = { node(jenkinsEnv.nodeSelection(osLabel)) { stage("${stageLabel}") { echo "NODE_NAME = ${env.NODE_NAME}" // on Windows, need a short path or we hit 256 character limit for paths // using EXECUTOR_NUMBER guarantees that concurrent builds on same agent
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Sep 30 14:11:55 UTC 2024 - 8.4K bytes - Viewed (0) -
cni/pkg/nodeagent/options.go
SystemNamespace = env.RegisterStringVar("SYSTEM_NAMESPACE", constants.IstioSystemNamespace, "istio system namespace").Get() PodName = env.RegisterStringVar("POD_NAME", "", "").Get() NodeName = env.RegisterStringVar("NODE_NAME", "", "").Get() Revision = env.RegisterStringVar("REVISION", "", "").Get()
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 2.1K bytes - Viewed (0) -
disabled-Jenkinsfile.s390x
String stageLabel = "Run ITs ${os.capitalize()} Java ${jdk} on s390x" runITsTasks[stageId] = { node('s390x') { stage("${stageLabel}") { echo "NODE_NAME = ${env.NODE_NAME}" // on Windows, need a short path or we hit 256 character limit for paths // using EXECUTOR_NUMBER guarantees that concurrent builds on same agent
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Sep 30 14:11:55 UTC 2024 - 7.7K bytes - Viewed (0) -
tensorflow/c/c_api_internal.h
TF_Graph* parent; TF_Output* parent_inputs; }; struct TF_OperationDescription { TF_OperationDescription(TF_Graph* g, const char* op_type, const char* node_name) : node_builder(node_name, op_type, g->graph.op_registry()), graph(g) {} tensorflow::NodeBuilder node_builder; TF_Graph* graph; std::set<tensorflow::string> colocation_constraints; }; struct TF_Operation {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat May 13 00:49:12 UTC 2023 - 7.6K bytes - Viewed (0) -
tensorflow/c/c_api.cc
TF_EXCLUSIVE_LOCKS_REQUIRED(desc->graph->mu) { Node* ret = nullptr; if (desc->graph->name_map.count(desc->node_builder.node_name())) { status->status = InvalidArgument("Duplicate node name in graph: '", desc->node_builder.node_name(), "'"); } else { if (!desc->colocation_constraints.empty()) { desc->node_builder.Attr( tensorflow::kColocationAttrName,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0) -
docs_src/path_params/tutorial005.py
class ModelName(str, Enum): alexnet = "alexnet" resnet = "resnet" lenet = "lenet" app = FastAPI() @app.get("/models/{model_name}") async def get_model(model_name: ModelName): if model_name is ModelName.alexnet: return {"model_name": model_name, "message": "Deep Learning FTW!"} if model_name.value == "lenet":
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 26 13:26:03 UTC 2022 - 546 bytes - Viewed (0) -
tests/test_tutorial/test_path_params/test_tutorial005.py
response = client.get("/models/alexnet") assert response.status_code == 200 assert response.json() == {"model_name": "alexnet", "message": "Deep Learning FTW!"} def test_get_enums_lenet(): response = client.get("/models/lenet") assert response.status_code == 200 assert response.json() == {"model_name": "lenet", "message": "LeCNN all the images"} def test_get_enums_resnet():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Sep 28 04:14:40 UTC 2023 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/query/StoredLtrQueryBuilder.java
} public String modelName() { return modelName; } public StoredLtrQueryBuilder modelName(final String modelName) { this.modelName = Objects.requireNonNull(modelName); return this; } public String featureSetName() { return featureSetName; } public StoredLtrQueryBuilder featureSetName(final String featureSetName) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 5.8K bytes - Viewed (0) -
docs/em/docs/tutorial/path-params.md
โคด๏ธ โ *โก ๐ข* โฎ๏ธ ๐ โ โ๏ธ ๐ข ๐ ๐ โ (`ModelName`): ```Python hl_lines="16" {!../../docs_src/path_params/tutorial005.py!} ``` ### โ ๐ฉบ โฉ๏ธ ๐ช ๐ฒ *โก ๐ข* ๐ข, ๐ ๐ฉบ ๐ช ๐ฆ ๐ซ ๐: <img src="/img/tutorial/path-params/image03.png"> ### ๐ท โฎ๏ธ ๐ *๐ข* ๐ฒ *โก ๐ข* ๐ *๐ข ๐จโ๐*. #### ๐ฌ *๐ข ๐จโ๐* ๐ ๐ช ๐ฌ โซ๏ธ โฎ๏ธ *๐ข ๐จโ๐* ๐ โ ๐ข `ModelName`: ```Python hl_lines="17"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.7K bytes - Viewed (0) -
docs/de/docs/tutorial/path-params.md
#### *Enum-Member* vergleichen Sie kรถnnen ihn mit einem Member Ihres Enums `ModelName` vergleichen: ```Python hl_lines="17" {!../../docs_src/path_params/tutorial005.py!} ``` #### *Enum-Wert* erhalten Den tatsรคchlichen Wert (in diesem Fall ein `str`) erhalten Sie via `model_name.value`, oder generell, `ihr_enum_member.value`: ```Python hl_lines="20"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.2K bytes - Viewed (0)