Skip to content

Instantly share code, notes, and snippets.

View harlowja's full-sized avatar

Joshua Harlow harlowja

  • Waymo
  • Campbell
  • 09:35 (UTC -07:00)
View GitHub Profile
running build_ext
building 'carla.libcarla' extension
creating build/temp.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/source
creating build/temp.linux-x86_64-2.7/source/libcarla
creating build/temp.linux-x86_64-2.7/dependencies
creating build/temp.linux-x86_64-2.7/dependencies/include
creating build/temp.linux-x86_64-2.7/dependencies/include/carla
creating build/temp.linux-x86_64-2.7/dependencies/include/carla/client
creating build/temp.linux-x86_64-2.7/dependencies/include/carla/client/detail
- name: "Create temporary public keys directory"
become_user: jenkins
become: yes
tempfile:
state: directory
suffix: keys
register: output
- name: "Capture all slaves host keys into known_hosts"
become: yes
[2018.10.17-22.46.29:183][864]LogShaderCompilers: Display: Shaders left to compile 294
[2018.10.17-22.46.30:268][995]LogShaderCompilers: Display: Shaders left to compile 284
[2018.10.17-22.46.30:385][ 9]LogShaderCompilers: Display: Shaders left to compile 274
[2018.10.17-22.46.30:963][ 77]LogShaderCompilers: Display: Shaders left to compile 264
[2018.10.17-22.46.30:975][ 78]LogShaderCompilers: Display: Shaders left to compile 254
[2018.10.17-22.46.31:111][ 92]LogShaderCompilers: Display: Shaders left to compile 244
[2018.10.17-22.46.31:446][132]LogShaderCompilers: Display: Shaders left to compile 234
[2018.10.17-22.46.31:568][146]LogShaderCompilers: Display: Shaders left to compile 224
[2018.10.17-22.46.31:903][187]LogShaderCompilers: Display: Shaders left to compile 214
[2018.10.17-22.46.32:828][298]LogShaderCompilers: Display: Shaders left to compile 204
[1397/1429] Link (ld) libUE4Editor-AndroidMediaFactory.so
[1398/1429] Link (ld) libUE4Editor-LocationServicesIOSEditor.so
[1399/1429] Link (ld) libUE4Editor-AvfMediaFactory.so
[1400/1429] Link (ld) libUE4Editor-WmfMediaFactory.so
[1401/1429] Link (ld) libUE4Editor-AndroidDeviceProfileSelector.so
[1402/1429] Link (ld) libUE4Editor-FileLogging.so
[1403/1429] Link (ld) libUE4Editor-ArchVisCharacter.so
[1404/1429] Link (ld) libUE4Editor-AnalyticsMulticast.so
[1405/1429] Link (ld) libUE4Editor-RuntimeAssetCache.so
[1406/1429] Link (ld) libUE4Editor-NullSourceCodeAccess.so
FROM ubuntu:16.04
ARG DEBIAN_FRONTEND=noninteractive
# Extracted from UE4/Engine/Build/BatchFiles/Linux
RUN apt-get update && apt-get install -y mesa-utils \
cmake \
git \
gdb \
dos2unix \
@harlowja
harlowja / get_cuda_sm.sh
Created October 9, 2018 01:34 — forked from eyalroz/get_cuda_sm.sh
Shell script for determining the SM value for your (single) GPU
#!/bin/bash
#
# Prints the compute capability of the first CUDA device installed
# on the system, or alternatively the device whose index is the
# first command-line argument
device_index=${1:-0}
timestamp=$(date +%s.%N)
gcc_binary=${CMAKE_CXX_COMPILER:-$(which c++)}
cuda_root=${CUDA_DIR:-/usr/local/cuda}
This file has been truncated, but you can view the full file.
Setup.sh: Retrieving libc++.
Setup.sh: Compiling libc++.
-- The C compiler identification is Clang 5.0.0
-- The CXX compiler identification is Clang 5.0.0
-- The ASM compiler identification is Clang
-- Found assembler: /usr/bin/clang-5.0
-- Check for working C compiler: /usr/bin/clang-5.0
-- Check for working C compiler: /usr/bin/clang-5.0 -- works
-- Detecting C compiler ABI info
# NOTE: this is a template, not the actual docker file...
#
# It will be turned into a dockerfile and processed by
# jenkins and the corresponding jenkinsfile contained in
# this working directory.
FROM centos:7
MAINTAINER ${maintainers}
From e482cee76b9a4e8e0cb865bc2f9c7bb14fe29cae Mon Sep 17 00:00:00 2001
From: David Moreau Simard <dmsimard@redhat.com>
Date: Thu, 30 Nov 2017 18:34:19 -0500
Subject: [PATCH] Add support for configuring sqlalchemy pool size, timeout and
recycle
These are especially useful when using remote database servers.
We need to be able to tweak when timeouts and recycling are occuring
on the client side in order to prevent server-side timeouts to be
happening.
From ply Mon Sep 17 00:00:00 2001
From: dbingham <dbingham@godaddy.com>
Date: Fri, 17 Jun 2016 09:25:23 -0700
Subject: GD: Allow multiple floating IPs to single port.
diff --git a/neutron/db/l3_db.py b/neutron/db/l3_db.py
index ef4c486..607c310 100644
--- a/neutron/db/l3_db.py
+++ b/neutron/db/l3_db.py
@@ -914,20 +914,6 @@ class L3_NAT_dbonly_mixin(l3.RouterPluginBase):