Skip to content

Instantly share code, notes, and snippets.

View alexgirao's full-sized avatar
💭
I may be slow to respond.

Alexandre Girão alexgirao

💭
I may be slow to respond.
View GitHub Profile
#!/bin/sh
set -eu
#OPT_DIR=/opt
OPT_DIR=${HOME}/Ephemeral/opt
jmeter_url=https://dlcdn.apache.org//jmeter/binaries/apache-jmeter-5.5.tgz
asm_util_url=https://repo1.maven.org/maven2/org/ow2/asm/asm-util/9.3/asm-util-9.3.jar
asm_commons_url=https://repo1.maven.org/maven2/org/ow2/asm/asm-commons/9.3/asm-commons-9.3.jar
export ARCH=x86_64
export XBPS_ARCH="${ARCH}"
export REPO=https://alpha.de.repo.voidlinux.org/current
xbps-install -R "${REPO}" -S
xbps-install -R "${REPO}" docker xclip
como root:
cd /var/service
ln -s /etc/sv/docker .
--- a/subprojects/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelProjectExecutionIntegrationTest.groovy
+++ b/subprojects/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelProjectExecutionIntegrationTest.groovy
@@ -44,6 +44,7 @@ allprojects {
}
"""
executer.withArgument('--parallel')
+ executer.withArgument('--parallel-threads=10')
executer.withArgument('--info')
}
Premain-Class: mypackage.Agent
Agent-Class: mypackage.Agent
Can-Retransform-Classes: true
#!/usr/bin/env perl
eval 'exec perl -wS $0 ${1+"$@"}'
if 0;
use strict;
use warnings;
use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK);
use FileHandle;