| 20 | namespace tensorflow { |
| 21 | |
| 22 | GcsThrottle::GcsThrottle(EnvTime* env_time) |
| 23 | : last_updated_secs_(env_time->NowSeconds()), |
| 24 | available_tokens_(0), |
| 25 | env_time_(env_time) {} |
| 26 | |
| 27 | bool GcsThrottle::AdmitRequest() { |
| 28 | mutex_lock l(mu_); |
nothing calls this directly
no test coverage detected