View generate-missing-github-release
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
input="./release.txt" | |
git tag -l > $input | |
while IFS= read -r line | |
do | |
echo "$line" | |
# 19 because maven-shade-plugin- :) | |
version=${line:19} | |
eval "gh release create --generate-notes --title $version $line" | |
done < "$input" |
View gist:d651e21fd89b73612a42e3617a1d0261
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
foo-slf4-impl: with a particular class foo.bar.logging.FooBarHelper | |
module-info.java | |
module foo.bar.logging | |
{ | |
requires transitive org.slf4j; | |
exports foo.bar.logging; | |
provides org.slf4j.spi.SLF4JServiceProvider with | |
foo.bar.logging.Slf4jLoggingServiceProvider; |
View gist:3abc38a7968eeebece75d1a8f65291c5
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
[ERROR] Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream. | |
[ERROR] The forked VM terminated without properly saying goodbye. VM crash or System.exit called? | |
[ERROR] Command was /bin/sh -c cd /home/jenkins/agent/workspace/ject_jetty-9.4.x_no_skip_failure/jetty-webapp && /home/jenkins/agent/tools/hudson.model.JDK/jdk8/jre/bin/java -Dfile.encoding=UTF-8 -Duser.language=en -Duser.region=US -showversion -Xmx8g -Xms2g -XX:+PrintGCDetails org.apache.maven.surefire.booter.ForkedBooter /home/jenkins/agent/workspace/ject_jetty-9.4.x_no_skip_failure/jetty-webapp/target/surefire 2020-09-10T09-01-37_438-jvmRun1 surefire6053626550950799058tmp surefire_103239931600276459121tmp | |
[ERROR] Error occurred in starting fork, check output in log |
View gist:a8c1b75508a1a16701f0e763bc495604
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
version: 2 | |
updates: | |
- package-ecosystem: "maven" | |
directory: "/" | |
schedule: | |
interval: "weekly" | |
ignore: | |
- dependency-name: org.infinispan:infinispan-core | |
versions: | |
- ">= 10.0.0.Final" |
View threadwatch.sh
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 | |
PID=$1 | |
CPUFILE=/tmp/cpu-$PID-0 | |
LASTFILE=/tmp/cpu-$PID-1 | |
>$LASTFILE | |
function cleanup { rm $CPUFILE $LASTFILE ; } | |
trap cleanup EXIT |
View gist:ed910a3b79171a55870635c122176b84
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
set -x | |
cd /Users/olamy/dev/sources/open-sources/jetty/jetty.project/jetty-home/target | |
rm -rf jetty-base | |
mkdir jetty-base | |
cd jetty-base | |
mkdir etc | |
#/Library/Java/JavaVirtualMachines/jdk-11.0.2.jdk/Contents/Home/bin/java -jar ../jetty-home/start.jar --approve-all-licenses --create-startd --add-to-start=resources,server,http,https,http2c,webapp,deploy,jsp,logging-log4j2 | |
/Library/Java/JavaVirtualMachines/jdk-11.0.2.jdk/Contents/Home/bin/java -jar ../jetty-home/start.jar --approve-all-licenses --create-startd --add-to-start=resources,server,http,http2c,webapp,deploy,jsp | |
cd /Users/olamy/dev/sources/open-sources/jetty/tck_tests/servlet-tck | |
find . -name "*.war" -exec cp {} /Users/olamy/dev/sources/open-sources/jetty/jetty.project/jetty-home/target/jetty-base/webapps \; |
View gist:07d58c646b4051d248cbfa5814d09e10
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
--module-path | |
"/Users/olamy/dev/sources/open-sources/jetty/cometd/cometd-java/cometd-java-server/cometd-java-server-common/target/classes:/Users/olamy/.m2/repository/org/eclipse/jetty/toolchain/jetty-servlet-api/4.0.2/jetty-servlet-api-4.0.2.jar:/Users/olamy/.m2/repository/org/cometd/java/cometd-java-api-server/6.0.0-SNAPSHOT/cometd-java-api-server-6.0.0-SNAPSHOT.jar:/Users/olamy/.m2/repository/org/cometd/java/cometd-java-api-client/6.0.0-SNAPSHOT/cometd-java-api-client-6.0.0-SNAPSHOT.jar:/Users/olamy/.m2/repository/org/cometd/java/cometd-java-api-common/6.0.0-SNAPSHOT/cometd-java-api-common-6.0.0-SNAPSHOT.jar:/Users/olamy/.m2/repository/org/cometd/java/cometd-java-common/6.0.0-SNAPSHOT/cometd-java-common-6.0.0-SNAPSHOT.jar:/Users/olamy/.m2/repository/org/eclipse/jetty/jetty-util/10.0.0.alpha1/jetty-util-10.0.0.alpha1.jar:/Users/olamy/.m2/repository/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar:/Users/olamy/.m2/repository/org/eclipse/jetty/jetty-jmx/10.0.0.alpha1/jetty-jmx-10.0.0.alpha1.jar:/Users |
View gist:e1647e6b760468c6d81e221a033ced5a
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 org.eclipse.jetty.proxy.AsyncMiddleManServletTest.testAfterContentTransformerOverflowingToDisk() | |
2019-09-08 21:30:12.044:DBUG:oejuc.ContainerLifeCycle:main: Server@276eafad{STOPPED}[9.4.21-SNAPSHOT] added {QueuedThreadPool[server]@76d220eb{STOPPED,8<=0<=200,i=0,r=-1,q=0}[NO_TRY],AUTO} | |
2019-09-08 21:30:12.044:DBUG:oejuc.ContainerLifeCycle:main: HttpConnectionFactory@29dcad7e[HTTP/1.1] added {HttpConfiguration@5ce1ec7{32768/8192,8192/8192,https://:0,[]},POJO} | |
2019-09-08 21:30:12.044:DBUG:oejuc.ContainerLifeCycle:main: ServerConnector@627cb3ed{null,[]}{0.0.0.0:0} added {Server@276eafad{STOPPED}[9.4.21-SNAPSHOT],UNMANAGED} | |
2019-09-08 21:30:12.044:DBUG:oejuc.ContainerLifeCycle:main: ServerConnector@627cb3ed{null,[]}{0.0.0.0:0} added {QueuedThreadPool[server]@76d220eb{STOPPED,8<=0<=200,i=0,r=-1,q=0}[NO_TRY],AUTO} | |
2019-09-08 21:30:12.044:DBUG:oejuc.ContainerLifeCycle:main: ServerConnector@627cb3ed{null,[]}{0.0.0.0:0} added {ScheduledExecutorScheduler@30bd6bc8{STOPPED},AUTO} | |
2019-09-08 21:30:12.044:DBUG:oejuc |
View gist:e0359d1d3dc1a40be084b97402987700
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
apiVersion: kubeadm.k8s.io/v1alpha2 | |
kind: MasterConfiguration | |
kubernetesVersion: v1.11.0 | |
api: | |
advertiseAddress: 192.168.0.102 | |
bindPort: 6443 | |
controlPlaneEndpoint: "" | |
auditPolicy: | |
logDir: /var/log/kubernetes/audit | |
logMaxAge: 2 |
View gist:33d69dbfe8ab3e7ccecabb3a872c0fc5
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
pipeline { | |
agent any | |
stages { | |
stage("top") { | |
parallel { | |
stage("first") { | |
stages { | |
stage("first-inner-first") { | |
steps { | |
echo "stage first-inner-first" |
NewerOlder