mkdir -p /opt/cisco/anyconnect/lib-hack/ext
cd /opt/cisco/anyconnect/lib-hack/ext
wget -c https://archive.archlinux.org/packages/l/libxml2/libxml2-2.11.5-1-x86_64.pkg.tar.zst
wget -c https://archive.archlinux.org/packages/g/glib2/glib2-2.78.0-3-x86_64.pkg.tar.zst
wget -c https://archive.archlinux.org/packages/i/icu/icu-73.2-2-x86_64.pkg.tar.zst
tar --use-compress-program=unzstd -xvf libxml2-2.11.5-1-x86_64.pkg.tar.zst usr/lib
tar --use-compress-program=unzstd -xvf glib2-2.78.0-3-x86_64.pkg.tar.zst usr/lib
tar --use-compress-program=unzstd -xvf icu-73.2-2-x86_64.pkg.tar.zst usr/lib
cp -av usr/lib/lib* /opt/cisco/anyconnect/lib-hack
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
sk-proj-DiPMYsiRGLld-wEcKiVjJ60iBQsvO_k35lsdW1pt_jeB5UIlM_w-pSg929TGH9B1HoGhYMrzd7T3BlbkFJ3lrY3ey7I6ZzxkT7Cy5M73F2qbSZp4RJxGtp01G9ADEqHdIBR5IPu9G2JSd_SSIB9UkR |
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
Name | AOT/build sec | Warmup start ms | Warmup req/s | Startup ms | 5s run req/s | 15s run req/s | |
---|---|---|---|---|---|---|---|
Vanilla mp | 12 | 1597 | 73078 | 101809 | |||
Leyden mp | 83 | 3374 | 88586 | 615 | 73935 | 85436 | |
Crac mp | 18 | 1620 | 95163 | 32 | 92554 | 99894 | |
Nativeimage mp | 96 | 37 | 77167 | 79602 | |||
Nativeimage-pgo mp | 239 | 142 | 27250 | 31 | 94231 | 96838 |
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
Name | AOT/build sec | Warmup start ms | Warmup req/s | Startup ms | 5s run req/s | 15s run req/s | |
---|---|---|---|---|---|---|---|
Vanilla se | 6 | 383 | 347571 | 379448 | |||
Leyden se | 29 | 531 | 366131 | 126 | 362764 | 382724 | |
Crac se | 16 | 384 | 369144 | 20 | 349244.56 | 375628 | |
Nativeimage se | 51 | 8 | 374635 | 378269 | |||
Nativeimage-pgo se | 114 | 38 | 247108 | 6 | 438387 | 429550 |
pr.markFileAsViewed
- shift+alt+m
next change - alt+F5
focus on tree - Ctrl-0
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
FROM container-registry.oracle.com/java/openjdk:21.0.1 | |
ENV VEGETA_VERSION 12.8.4 | |
RUN dnf -y update && dnf -y install wget curl | |
RUN wget -q "https://github.com/tsenart/vegeta/releases/download/v${VEGETA_VERSION}/vegeta_${VEGETA_VERSION}_linux_amd64.tar.gz" -O /tmp/vegeta.tar.gz \ | |
&& cd /bin \ | |
&& tar xzf /tmp/vegeta.tar.gz \ |
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
[INFO] Scanning for projects... | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] Detecting the operating system and CPU architecture | |
[INFO] ------------------------------------------------------------------------ | |
[INFO] os.detected.name: linux | |
[INFO] os.detected.arch: x86_64 | |
[INFO] os.detected.version: 5.15 | |
[INFO] os.detected.version.major: 5 | |
[INFO] os.detected.version.minor: 15 | |
[INFO] os.detected.release: ubuntu |
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
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.time.Duration; | |
import java.util.Arrays; | |
import java.util.concurrent.ExecutorService; | |
import io.helidon.common.configurable.ThreadPoolSupplier; | |
import io.helidon.common.http.DataChunk; |
NewerOlder