I hereby claim:
- I am philwo on github.
- I am philwo (https://keybase.io/philwo) on keybase.
- I have a public key ASBotoJ4BPlMtPgYkD8yoeV78iw0f2PjPTtQBnP0KiSuzgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
java_binary( | |
name = "repro", | |
main_class = "Repro", | |
srcs = ["Repro.java"], | |
) |
#!/bin/bash | |
set -euo pipefail | |
unset IFS | |
args=() | |
found="no" | |
function add_env_flags() { |
This is how I managed to build TensorFlow 2.0 on Ubuntu 18.04 (x86_64) with Bazelisk:
$ sudo apt update
$ sudo apt full-upgrade
$ sudo apt install curl
# Install Bazelisk.
$ sudo curl -Lo /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64
$ sudo chmod +x /usr/local/bin/bazel
FROM ubuntu:18.04 | |
RUN uname -a | |
RUN cat /etc/lsb-release | |
ENV DEBIAN_FRONTEND="noninteractive" | |
RUN apt-get update && \ | |
apt-get install -y \ | |
openjdk-11-jdk-headless \ | |
build-essential \ |
#include <dirent.h> | |
#include <fcntl.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <sys/stat.h> | |
#include <sys/types.h> | |
//const char *target = "shortlink"; |
#!/bin/bash | |
set -euo pipefail | |
bandwidth="1000mbit" | |
latency="200ms" | |
jitter="50ms" | |
correlation="25%" | |
case "$1" in |