- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for name_map_ (0.09 sec)
-
clause/expression.go
var ( idx int inName bool afterParenthesis bool namedMap = make(map[string]interface{}, len(expr.Vars)) ) for _, v := range expr.Vars { switch value := v.(type) { case sql.NamedArg: namedMap[value.Name] = value.Value case map[string]interface{}: for k, v := range value { namedMap[k] = v } default: var appendFieldsToMap func(reflect.Value)
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Oct 10 06:45:48 UTC 2023 - 8.3K bytes - Viewed (0) -
tensorflow/c/c_api.cc
g->mu.unlock(); if (del) delete g; } TF_Operation* TF_GraphOperationByName(TF_Graph* graph, const char* oper_name) { mutex_lock l(graph->mu); auto iter = graph->name_map.find(oper_name); if (iter == graph->name_map.end()) { return nullptr; } else { return ToOperation(iter->second); } } TF_Operation* TF_GraphNextOperation(TF_Graph* graph, size_t* pos) {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0) -
callbacks.go
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Mar 26 03:33:36 UTC 2024 - 8.6K bytes - Viewed (0) -
tensorflow/c/c_api_internal.h
// Runs shape inference. tensorflow::ShapeRefiner refiner TF_GUARDED_BY(mu); // Maps from name of an operation to the Node* in 'graph'. std::unordered_map<tensorflow::string, tensorflow::Node*> name_map TF_GUARDED_BY(mu); // The keys of this map are all the active sessions using this graph. Each // value records whether the graph has been mutated since the corresponding
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat May 13 00:49:12 UTC 2023 - 7.6K bytes - Viewed (0) -
cmd/xl-storage.go
// Apple OS X path length is limited to 1016 if runtime.GOOS == "darwin" && len(pathName) > 1016 { return errFileNameTooLong } // Disallow more than 1024 characters on windows, there // are no known name_max limits on Windows. if runtime.GOOS == "windows" && len(pathName) > 1024 { return errFileNameTooLong } // On Unix we reject paths if they are just '.', '..' or '/'
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 91.3K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), const MSG_TRUNC ideal-int pkg syscall (freebsd-arm64), const MSG_WAITALL = 64 pkg syscall (freebsd-arm64), const MSG_WAITALL ideal-int pkg syscall (freebsd-arm64), const NAME_MAX = 255 pkg syscall (freebsd-arm64), const NAME_MAX ideal-int pkg syscall (freebsd-arm64), const NET_RT_DUMP = 1 pkg syscall (freebsd-arm64), const NET_RT_DUMP ideal-int pkg syscall (freebsd-arm64), const NET_RT_FLAGS = 2
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
api/go1.16.txt
pkg syscall (darwin-arm64), const MS_KILLPAGES ideal-int pkg syscall (darwin-arm64), const MS_SYNC = 16 pkg syscall (darwin-arm64), const MS_SYNC ideal-int pkg syscall (darwin-arm64), const NAME_MAX = 255 pkg syscall (darwin-arm64), const NAME_MAX ideal-int pkg syscall (darwin-arm64), const NET_RT_DUMP = 1 pkg syscall (darwin-arm64), const NET_RT_DUMP ideal-int pkg syscall (darwin-arm64), const NET_RT_DUMP2 = 7
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 02 16:30:41 UTC 2022 - 479.2K bytes - Viewed (0) -
api/go1.20.txt
pkg syscall (freebsd-riscv64), const MS_SYNC = 0 #53466 pkg syscall (freebsd-riscv64), const MS_SYNC ideal-int #53466 pkg syscall (freebsd-riscv64), const NAME_MAX = 255 #53466 pkg syscall (freebsd-riscv64), const NAME_MAX ideal-int #53466 pkg syscall (freebsd-riscv64), const NET_RT_DUMP = 1 #53466 pkg syscall (freebsd-riscv64), const NET_RT_DUMP ideal-int #53466
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 21:23:32 UTC 2023 - 602.6K bytes - Viewed (0)