- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for apiKey (0.19 sec)
-
tensorflow/c/c_api.h
// // This object maps the name of a TensorFlow operation to a description of the // API to generate for it, as defined by the ApiDef protocol buffer ( // https://www.tensorflow.org/code/tensorflow/core/framework/api_def.proto) // // The ApiDef messages are typically used to generate convenience wrapper // functions for TensorFlow operations in various language bindings.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
cmd/admin-handlers-users.go
a.importIAM(w, r, "v2") } // ImportIAM - imports all IAM info into MinIO func (a adminAPIHandlers) importIAM(w http.ResponseWriter, r *http.Request, apiVer string) { ctx := r.Context() // Get current object layer instance. objectAPI := newObjectLayerFn() if objectAPI == nil || globalNotificationSys == nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 03 23:11:02 UTC 2024 - 85.1K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
auto* api_def_buf = TF_ApiDefMapGet(api_def_map, op_name.c_str(), op_name.size(), status); EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status); TF_DeleteStatus(status); tensorflow::ApiDef api_def; EXPECT_TRUE(api_def.ParseFromArray(api_def_buf->data, api_def_buf->length)); EXPECT_EQ(op_name, api_def.graph_op_name()); EXPECT_EQ(R"doc(Used to test C API)doc", api_def.summary());
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 97K bytes - Viewed (0)