| /external/tensorflow/tensorflow/core/distributed_runtime/rpc/ | 
| grpc_state.h | 41                  call_opts, /*fail_fast=*/false, /*timeout_in_ms=*/0) {} 47            bool fail_fast, int64 timeout_in_ms)
 50     if (timeout_in_ms > 0) {
 51       context_.set_deadline(gpr_time_from_millis(timeout_in_ms, GPR_TIMESPAN));
 
 | 
| grpc_session.cc | 125   call_options.SetTimeout(run_options.timeout_in_ms()); 162   call_options.SetTimeout(run_options.timeout_in_ms());
 180   if (run_options.timeout_in_ms() == 0) {
 210   call_options.SetTimeout(req->options().timeout_in_ms());
 
 | 
| grpc_master_service.cc | 178     if (call->request.options().timeout_in_ms() > 0) { 179       call_opts->SetTimeout(call->request.options().timeout_in_ms());
 
 | 
| /external/tensorflow/tensorflow/core/distributed_runtime/ | 
| local_master.cc | 28   int64 timeout_in_ms = call_options->GetTimeout();  local 29   if (timeout_in_ms == 0) {
 30     timeout_in_ms = default_timeout_in_ms;
 32   if (timeout_in_ms > 0) {
 33     int64 timeout_in_us = timeout_in_ms * 1000;
 
 | 
| message_wrappers_test.cc | 69   EXPECT_EQ(37, request.options().timeout_in_ms()); 
 | 
| /external/webrtc/webrtc/p2p/base/ | 
| tcpport.h | 136   void set_reconnection_timeout(int timeout_in_ms) { 137     reconnection_timeout_ = timeout_in_ms;
 
 | 
| /external/tensorflow/tensorflow/core/grappler/ | 
| utils.cc | 184 bool ExecuteWithTimeout(std::function<void()> fn, const int64 timeout_in_ms, 186   if (timeout_in_ms <= 0) {
 196       WaitForNotificationWithTimeout(done.get(), timeout_in_ms * 1000);
 
 | 
| utils.h | 125 bool ExecuteWithTimeout(std::function<void()> fn, int64 timeout_in_ms, 
 | 
| /art/openjdkjvmti/ | 
| ti_monitor.cc | 142   bool Wait(art::Thread* self, uint64_t timeout_in_ms) { 144       cond_.wait_for(lk, std::chrono::milliseconds(timeout_in_ms));
 
 | 
| /external/tensorflow/tensorflow/core/common_runtime/ | 
| direct_session.h | 250                                            int64 timeout_in_ms); 252                            int64 timeout_in_ms);
 
 | 
| direct_session.cc | 610                       run_options.timeout_in_ms() > 0 611                           ? run_options.timeout_in_ms()
 [all...]
 | 
| /external/tensorflow/tensorflow/python/training/ | 
| server_lib_test.py | 217         sess.run(blocking_t, options=config_pb2.RunOptions(timeout_in_ms=1000)) 221         sess.run(blocking_t, options=config_pb2.RunOptions(timeout_in_ms=1000))
 
 | 
| monitored_session.py | [all...] | 
| monitored_session_test.py | [all...] | 
| /external/tensorflow/tensorflow/python/kernel_tests/ | 
| fifo_queue_test.py | [all...] | 
| /external/tensorflow/tensorflow/contrib/tpu/python/tpu/ | 
| tpu_estimator.py | 442                 options=config_pb2.RunOptions(timeout_in_ms=5 * 60 * 1000)) [all...]
 |