This file contains hidden or 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
rkubacki@dev1:~$ sudo /opt/jdk/jdk1.5.0_22/bin/jstack 32753 | |
Attaching to process ID 32753, please wait... | |
Debugger attached successfully. | |
Server compiler detected. | |
JVM version is 1.5.0_22-b03 | |
Deadlock Detection: | |
No deadlocks found. | |
Thread 316: (state = IN_NATIVE) |
This file contains hidden or 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
package cz.kubacki.gradle.toolingaction; | |
import java.io.File; | |
import java.util.HashMap; | |
import java.util.Map; | |
import org.gradle.tooling.BuildAction; | |
import org.gradle.tooling.BuildActionExecuter; | |
import org.gradle.tooling.BuildController; | |
import org.gradle.tooling.GradleConnector; | |
import org.gradle.tooling.ProjectConnection; |
This file contains hidden or 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
Tooling API is using target Gradle version: 2.3-20141114165927+0000. | |
Connected to daemon DaemonInfo{pid=23599, address=[e3043b5d-9163-42d8-ad36-93bdbe7940e8 port:34463, addresses:[/0:0:0:0:0:0:0:1%1, /127.0.0.1]], idle=true, context=DefaultDaemonContext[uid=48dd208e-da1e-46ef-8bb6-b0bab2d38da1,javaHome=/usr/lib/jvm/jdk-6-oracle-x64,daemonRegistryDir=/home/radim/.gradle/daemon,pid=23599,idleTimeout=10800000,daemonOpts=-XX:MaxPermSize=256m,-XX:+HeapDumpOnOutOfMemoryError,-Xmx1024m,-Dfile.encoding=UTF-8,-Duser.country=US,-Duser.language=en,-Duser.variant]}. Dispatching request Build{id=0f5ab84e-6e7e-478e-9b5e-4accb1963c58.1, currentDir=/home/radim/src/github.com/gradle/tooling/subprojects/eclipse/com.gradleware.tooling.eclipse.core.test}. | |
Received result DaemonCommandResult[type=DaemonFailure, value=java.lang.NullPointerException] from daemon DaemonInfo{pid=23599, address=[e3043b5d-9163-42d8-ad36-93bdbe7940e8 port:34463, addresses:[/0:0:0:0:0:0:0:1%1, /127.0.0.1]], idle=true, context=DefaultDaemonContext[uid=48d |
This file contains hidden or 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
ansible-playbook -i .vagrant/provisioners/ansible/inventory/vagrant_ansible_inventory --private-key=~/.vagrant.d/insecure_private_key -u vagrant playbook.yml |
This file contains hidden or 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
sudo apt-get update | |
sudo apt-get upgrade | |
# possibly reboot to new kernel | |
sudo apt-get install g++ libevent-2.0.5 zlib1g zlib1g-dev python patch make | |
sudo apt-get install autoconf automake libtool pkg-config libssl-dev flex bison | |
sudo apt-get install ant # installs also openjdk | |
wget https://archive.apache.org/dist/thrift/0.9.1/thrift-0.9.1.tar.gz | |
tar xzf thrift-0.9.1.tar.gz | |
cd thrift-0.9.1/ | |
# wget http://gitpaste.rfiserve.net/paste/595/raw/ -O withoutcxx11.patch |
This file contains hidden or 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
building 'lxml.etree' extension | |
creating build/temp.linux-x86_64-2.7 | |
creating build/temp.linux-x86_64-2.7/src | |
creating build/temp.linux-x86_64-2.7/src/lxml | |
x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fdebug-prefix-map=/build/python2.7-HVkOs2/python2.7-2.7.13=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/usr/include/libxml2 -I/tmp/pip-1g11WY-build/src/lxml/includes -I/usr/include/python2.7 -c src/lxml/lxml.etree.c -o build/temp.linux-x86_64-2.7/src/lxml/lxml.etree.o | |
src/lxml/lxml.etree.c: In function ‘__pyx_f_4lxml_5etree__getFilenameForFile’: | |
src/lxml/lxml.etree.c:26719:7: warning: variable ‘__pyx_clineno’ set but not used [-Wunused-but-set-variable] | |
int __pyx_clineno = 0; | |
^~~~~~~~~~~~~ | |
src/lxml/lxml.etree.c:26718:15: warning: variable ‘__pyx_filename’ set but not used [-Wunused-but-set-variable] |
OlderNewer