File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
tensorflow-gcs-config/tensorflow_gcs_config Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 14
14
* ` 2.1.0-py37 ` : TensorFlow 2.1.0 with Python 3.7
15
15
* ` 2.1.0-py37-2 ` : TensorFlow 2.1.0 with Python 3.7 & DLVM base image.
16
16
* ` 2.1.0-py37-3 ` : TensorFlow 2.1.0 with Python 3.7, DLVM base image, tensorflow-gcs-config.
17
+ * ` 2.2.0-py37 ` : TensorFlow 2.2.0 with Python 3.7.
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
53
53
RUN pip install --upgrade pip
54
54
55
55
# See _TF_(MIN|MAX)_BAZEL_VERSION at https://github.com/tensorflow/tensorflow/blob/master/configure.py.
56
- ENV BAZEL_VERSION=0.29.1
56
+ ENV BAZEL_VERSION=2.0.0
57
57
RUN apt-get install -y gnupg zip openjdk-8-jdk && \
58
58
apt-get install -y --no-install-recommends \
59
59
bash-completion \
@@ -66,7 +66,7 @@ RUN apt-get install -y gnupg zip openjdk-8-jdk && \
66
66
RUN cd /usr/local/src && \
67
67
git clone https://github.com/tensorflow/tensorflow && \
68
68
cd tensorflow && \
69
- git checkout tags/v2.1 .0 && \
69
+ git checkout tags/v2.2 .0 && \
70
70
pip install keras_applications --no-deps && \
71
71
pip install keras_preprocessing --no-deps
72
72
Original file line number Diff line number Diff line change @@ -172,8 +172,8 @@ class GcsCredentialsOpKernel : public OpKernel {
172
172
Env* env_;
173
173
174
174
mutex mu_;
175
- string current_token_ GUARDED_BY (mu_);
176
- uint64 expiration_timestamp_sec_ GUARDED_BY (mu_) = 0;
175
+ string current_token_ TF_GUARDED_BY (mu_);
176
+ uint64 expiration_timestamp_sec_ TF_GUARDED_BY (mu_) = 0;
177
177
178
178
// The initial delay for exponential backoffs when retrying failed calls.
179
179
const int64 initial_retry_delay_usec_;
You can’t perform that action at this time.
0 commit comments