This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[1;35mSetup.sh: Retrieving libc++.[0m | |
[1;35mSetup.sh: Compiling libc++.[0m | |
-- 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 | |
-- Detecting C compiler ABI info - done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From e482cee76b9a4e8e0cb865bc2f9c7bb14fe29cae Mon Sep 17 00:00:00 2001 | |
From: David Moreau Simard <[email protected]> | |
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From ply Mon Sep 17 00:00:00 2001 | |
From: dbingham <[email protected]> | |
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): |