- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for CheckRemoteAlive (0.08 sec)
-
internal/grid/muxserver.go
} }() // handlerErr is guarded by 'send' channel. handlerErr = handler.Handle(ctx, msg.Payload, handlerIn, send) return handlerErr } // checkRemoteAlive will check if the remote is alive. func (m *muxServer) checkRemoteAlive() { t := time.NewTicker(m.clientPingInterval) defer t.Stop() for { select { case <-m.ctx.Done(): return case <-t.C:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 07 15:51:52 UTC 2024 - 9.7K bytes - Viewed (0) -
tensorflow/c/eager/immediate_execution_distributed_manager.h
// execution. virtual absl::Status EnableCollectiveOps(const ServerDef& server_def) = 0; // Check if the remote task is alive. virtual absl::Status CheckRemoteAlive(const std::string& remote_task_name, bool* is_alive) = 0; // Get pointer to the coordination service agent instance.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 2.9K bytes - Viewed (0) -
tensorflow/c/eager/c_api.cc
"TFE_ContextSetServerDef not supported on mobile"); return false; #else // !defined(IS_MOBILE_PLATFORM) bool is_alive; status->status = tensorflow::unwrap(ctx)->GetDistributedManager()->CheckRemoteAlive( worker_name, &is_alive); return is_alive; #endif // !IS_MOBILE_PLATFORM } TF_CAPI_EXPORT extern void TFE_ContextAsyncWait(TFE_Context* ctx,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 43.9K bytes - Viewed (0)