- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for function_name (0.08 sec)
-
tensorflow/c/c_test_util.cc
const tensorflow::GraphDef& graph_def) { std::vector<std::pair<string, string>> grads; for (const tensorflow::GradientDef& grad : graph_def.library().gradient()) { grads.emplace_back(grad.function_name(), grad.gradient_func()); } std::sort(grads.begin(), grads.end()); return grads; } std::vector<string> GetFuncNames(const tensorflow::GraphDef& graph_def) { std::vector<string> names;Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Sat Oct 04 05:55:32 UTC 2025 - 17.8K bytes - Viewed (1) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt
path: Path, functionName: String, parameterName: String, ): Path { events.add("$functionName:$path") return path } override fun onPathResult( path: Path, functionName: String, ): Path { events.add("$functionName:$path") return path } }Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Oct 03 17:41:45 UTC 2025 - 116.8K bytes - Viewed (0) -
doc/go_spec.html
a bit. --> <p> A function declaration binds an identifier, the <i>function name</i>, to a function. </p> <pre class="ebnf"> FunctionDecl = "func" FunctionName [ TypeParameters ] Signature [ FunctionBody ] . FunctionName = identifier . FunctionBody = Block . </pre> <p> If the function's <a href="#Function_types">signature</a> declares
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Dec 02 23:07:19 UTC 2025 - 286.5K bytes - Viewed (1)