Home
last modified time | relevance | path

Searched +full:sdk +full:- +full:benchmarks (Results 1 – 25 of 66) sorted by relevance

123

/external/aws-sdk-java-v2/test/sdk-benchmarks/
DREADME.md1 # Sdk Benchmark Harness
4 This module contains sdk benchmark harness using [JMH].
7 JMH configurations tailored to SDK's build job and you might need to
11 There are three ways to run benchmarks.
13 - Using the executable JAR (Preferred usage per JMH site)
15 mvn clean install -P quick -pl :sdk-benchmarks --am
18 java -jar target/benchmarks.jar ApacheHttpClientBenchmark
20 # Run all benchmarks: 3 warm up iterations, 3 benchmark iterations, 1 fork
21 java -jar target/benchmarks.jar -wi 3 -i 3 -f 1
24 - Using`mvn exec:exec` commands to invoke `BenchmarkRunner` main method
[all …]
Dpom.xml1 <!--
14 -->
16 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-inst…
17 …xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <artifactId>aws-sdk-java-pom</artifactId>
26 <artifactId>sdk-benchmarks</artifactId>
29 <name>AWS Java SDK :: Test :: SDK Benchmarks</name>
30 <description>Contains JMH benchmark code for the SDK</description>
33 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35 <!--
[all …]
/external/aws-sdk-java-v2/buildspecs/
Drelease-javadoc.yml4 JAVA_HOME: "/usr/lib/jvm/java-21-amazon-corretto/"
8 - apt-get update; apt-get install -y java-21-amazon-corretto-jdk
9 - update-alternatives --auto javac
10 - update-alternatives --auto java
11 - pip install awscli==1.19.34 --upgrade --user
15 - DOC_PATH='s3://aws-java-sdk-javadoc/java/api'
19- python ./scripts/doc_crosslinks/generate_cross_link_data.py --apiDefinitionsBasePath ./services/…
20 - mvn install -P quick -T1C
21- mvn clean install javadoc:aggregate -B -Ppublic-javadoc -Dcheckstyle.skip -Dspotbugs.skip -Dskip…
22- RELEASE_VERSION=`mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive …
[all …]
Dbenchmarks.yml5 runtime-versions:
10 - mvn install -P quick -pl :sdk-benchmarks --am
11 - mvn install -pl :bom-internal
12 - cd test/sdk-benchmarks
13 - mvn exec:exec
Drelease-to-maven.yml6 - pip install awscli --upgrade --user
10 - ROOT=`pwd`
11 - SETTINGS_XML_TEMPLATE=buildspecs/resources/release-settings.xml
12 - SETTINGS_XML=release-settings-final.xml
13 - SDK_SIGNING_GPG_SECRING=secring.gpg
14- SDK_SIGNING_GPG_SECRING_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sdk-signing-gp…
15- SDK_SIGNING_GPG_KEYNAME_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sdk-signing-gp…
16- SDK_SIGNING_GPG_PASSPHRASE_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sdk-signing
17- SONATYPE_PASSWORD_ARN="arn:aws:secretsmanager:us-east-1:103431983078:secret:sonatype-password-I2…
21- RELEASE_VERSION=`mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive …
[all …]
/external/perfetto/docs/contributing/
Dtesting.md9 Platform-agnostic unit-tests.
12 End-to-end tests, involving the protobuf-based IPC transport and ftrace
16 Benchmarks tracking the performance of: (i) trace writing, (ii) trace readback
17 and (iii) ftrace raw pipe -> protobuf translation.
20 ------------------------------
23 tools/ninja -C out/default perfetto_{unittests,integrationtests,benchmarks}
24 out/default/perfetto_unittests --gtest_help
30 sudo chown -R $USER /sys/kernel/debug/tracing
34 ------------------------
36 1B) Start the build-in emulator (supported on Linux and MacOS):
[all …]
/external/aws-sdk-java-v2/test/s3-benchmarks/
DREADME.md10 mvn clean install -pl :s3-benchmarks -P quick --am
13 java -jar s3-benchmarks.jar --bucket=bucket --key=key -file=/path/to/destionfile/ --operation=downl…
16 java -jar s3-benchmarks.jar --bucket=bucket --key=key -file=/path/to/sourcefile/ --operation=upload…
22 mvn exec:exec -Dexec.executable="java" -Dexec.args="-cp %classpath software.amazon.awssdk.s3benchma…
29 The `--version` command line option is used to determine which component is under test:
31 - `--version=crt` : Indicate to run the benchmark for the CRT's S3Client
32 - `--version=java` : Indicate to run the benchmark for the java based S3 Async Client (`MultipartS3…
33 - `--version=v2`: SDK v2 transfer manager (using `S3CrtAsyncClient` to delegate requests)
34 - `--version=v1`: SDK v1 transfer manager (using `AmazonS3Client` to delegate requests)
38 The `--operation` command line argument determine which transfer operation is used
[all …]
Dpom.xml1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
15 -->
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 …xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <artifactId>aws-sdk-java-pom</artifactId>
28 <artifactId>s3-benchmarks</artifactId>
33 <sdk-v1.version>1.12.261</sdk-v1.version>
35 <name>AWS Java SDK :: Test :: S3 Benchmarks</name>
41 <artifactId>bom-internal</artifactId>
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/upb/.github/workflows/
Dbazel_tests.yml6 - main
7 - '[0-9]+.x'
10 - main
11 - '[0-9]+.x'
17 runs-on: ${{ matrix.os }}
20 fail-fast: false # Don't cancel all jobs if one fails.
23 - { NAME: "Fastbuild", BAZEL: bazel, CC: clang, os: ubuntu-20-large, flags: "" }
24- { NAME: "Optmized", BAZEL: bazel, CC: clang, os: ubuntu-20-large, flags: "-c opt" } # Some warn…
25 - { NAME: "GCC Optimized", BAZEL: bazel, CC: gcc-12, os: ubuntu-22.04, flags: "-c opt" }
26- { NAME: "FastTable", BAZEL: bazel, CC: clang, os: ubuntu-20-large, flags: "--//:fasttable_enable…
[all …]
/external/aws-sdk-java-v2/
D.brazil.json5 "annotations": { "packageName": "AwsJavaSdk-Core-Annotations" },
6 "apache-client": { "packageName": "AwsJavaSdk-HttpClient-ApacheClient" },
7 "arns": { "packageName": "AwsJavaSdk-Core-Arns" },
8 "auth": { "packageName": "AwsJavaSdk-Core-Auth" },
9 "auth-crt": { "packageName": "AwsJavaSdk-Core-AuthCrt" },
10 "aws-cbor-protocol": { "packageName": "AwsJavaSdk-Core-AwsCborProtocol" },
11 "aws-core": { "packageName": "AwsJavaSdk-Core-AwsCore" },
12 "aws-crt-client": { "packageName": "AwsJavaSdk-HttpClient-CrtClient" },
13 "aws-ion-protocol": { "packageName": "AwsJavaSdk-Core-AwsIonProtocol" },
14 "aws-json-protocol": { "packageName": "AwsJavaSdk-Core-AwsJsonProtocol" },
[all …]
/external/nullaway/.github/workflows/
Djmh-benchmark.yml1 # This GitHub Actions workflow runs JMH benchmarks when a new comment is created on a pull request
2 name: Run JMH Benchmarks for Pull Request
15 runs-on: ubuntu-latest
16 permissions: write-all
19 - name: Add reaction
20 uses: peter-evans/create-or-update-comment@v3
22 comment-id: ${{ github.event.comment.id }}
25 - name: Checkout repository
28 - name: Set branch name
35 - id: 'auth'
[all …]
/external/protobuf/benchmarks/
DREADME.md2 # Protocol Buffers Benchmarks
26 We're using maven to build the java benchmarks, which is the same as to build
39 $ sudo apt-get install python-dev
40 $ sudo apt-get install python3-dev
42 And you also need to make sure `pkg-config` is installed.
47 toolchain and the Go protoc-gen-go plugin for protoc.
49 To install protoc-gen-go, run:
52 $ go get -u github.com/golang/protobuf/protoc-gen-go
56 The first command installs `protoc-gen-go` into the `bin` directory in your local `GOPATH`.
68 solution. It requires the .NET Core SDK, and depends on
[all …]
/external/cronet/third_party/protobuf/benchmarks/
DREADME.md2 # Protocol Buffers Benchmarks
26 We're using maven to build the java benchmarks, which is the same as to build
39 $ sudo apt-get install python-dev
40 $ sudo apt-get install python3-dev
42 And you also need to make sure `pkg-config` is installed.
47 toolchain and the Go protoc-gen-go plugin for protoc.
49 To install protoc-gen-go, run:
52 $ go get -u github.com/golang/protobuf/protoc-gen-go
56 The first command installs `protoc-gen-go` into the `bin` directory in your local `GOPATH`.
68 solution. It requires the .NET Core SDK, and depends on
[all …]
/external/grpc-grpc-java/
Dsettings.gradle22 useModule("com.google.cloud.tools:appengine-gradle-plugin:${requested.version}")
33 include ":grpc-api"
34 include ":grpc-core"
35 include ":grpc-context"
36 include ":grpc-stub"
37 include ":grpc-census"
38 include ":grpc-auth"
39 include ":grpc-okhttp"
40 include ":grpc-protobuf"
41 include ":grpc-protobuf-lite"
[all …]
/external/flatbuffers/.github/workflows/
Dbuild.yml2 permissions: read-all
9 - "*" # new tag version, like `0.8.4` or else
11 - master
14 - master
17 build-linux:
21 digests-gcc: ${{ steps.hash-gcc.outputs.hashes }}
22 digests-clang: ${{ steps.hash-clang.outputs.hashes }}
24 runs-on: ubuntu-latest
27 cxx: [g++-10, clang++-12]
28 fail-fast: false
[all …]
/external/FXdiv/
DWORKSPACE8 strip_prefix = "rules_cc-master",
12 # Google Test framework, used by most unit-tests.
15 strip_prefix = "googletest-master",
19 # Google Benchmark library, used in micro-benchmarks.
22 strip_prefix = "benchmark-master",
26 # Android NDK location and version is auto-detected from $ANDROID_NDK_HOME environment variable
29 # Android SDK location and API is auto-detected from $ANDROID_HOME environment variable
/external/pthreadpool/
DWORKSPACE8 strip_prefix = "rules_cc-master",
12 # Google Test framework, used by most unit-tests.
15 strip_prefix = "googletest-master",
19 # Google Benchmark library, used in micro-benchmarks.
22 strip_prefix = "benchmark-master",
29 strip_prefix = "FXdiv-f7dd0576a1c8289ef099d4fd8b136b1c4487a873",
34 # Android NDK location and version is auto-detected from $ANDROID_NDK_HOME environment variable
37 # Android SDK location and API is auto-detected from $ANDROID_HOME environment variable
/external/conscrypt/
DAndroid.bp8 // http://www.apache.org/licenses/LICENSE-2.0
24 // Added automatically by a large-scale-change that took the approach of
38 // large-scale-change included anything that looked like it might be a license
42 // See: http://go/android-license-faq
47 "SPDX-license-identifier-Apache-2.0",
91 "-Wall",
92 "-Wextra",
93 "-Werror",
94 "-Wunused",
116 name: "conscrypt_unbundled-jni-defaults",
[all …]
/external/conscrypt/benchmark-android/
Dbuild.gradle11 description = 'Conscrypt: Android Benchmarks'
63 depsJarApi project(path: ':conscrypt-android'),
67 depsJarImplementation project(':conscrypt-benchmark-base'),
68 project(path: ":conscrypt-testing", configuration: "shadow"),
69 project(':conscrypt-libcore-stub')
71 implementation 'com.google.caliper:caliper:1.0-beta-2'
92 ].collect { config ->
93 config.findResults { archive ->
100 }.collect { file ->
111 exclude 'META-INF/*.SF'
[all …]
/external/conscrypt/repackaged/benchmark-android/src/main/java/com/android/org/conscrypt/
DCaliperAlpnBenchmark.java9 * http://www.apache.org/licenses/LICENSE-2.0
26 * Cipher benchmarks. Only runs on AES currently because of the combinatorial
28 * @hide This class is not part of the Android public SDK API
DCaliperClientSocketBenchmark.java9 * http://www.apache.org/licenses/LICENSE-2.0
28 * @hide This class is not part of the Android public SDK API
75 // Use the same server for all benchmarks, since we're looking at the perf of the client. in serverFactory()
/external/gson/
DReleaseProcess.md3 The following is a step-by-step procedure for releasing a new version of Google-Gson.
6 1. Ensure all changelists are code-reviewed and have +1
10- Answer questions: usually the defaults are fine. Try to follow [Semantic Versioning](https://sem…
11- This will do a full build, change version from `-SNAPSHOT` to the released version, commit and c…
15 1. Release the staging repository for Gson. Gson will now get synced to Maven Central with-in the n…
18 - [`README.md`](README.md)
19 - [`UserGuide.md`](UserGuide.md)
22 1. Optional: Create a post on the [Gson Discussion Forum](https://groups.google.com/group/google-gs…
31 …following this [guide](https://blog.sonatype.com/2010/01/how-to-generate-pgp-signatures-with-maven…
32 1. [Create encrypted passwords](https://maven.apache.org/guides/mini/guide-encryption.html).
[all …]
/external/grpc-grpc/tools/gce/
Dlinux_kokoro_performance_worker_init.sh8 # http://www.apache.org/licenses/LICENSE-2.0
20 set -ex
22 sudo apt-get update
25 sudo apt-get install -y openjdk-8-jdk
26 sudo apt-get install -y unzip lsof
28 sudo apt-get install -y \
30 autotools-dev \
31 build-essential \
36 gcc-multilib \
41 libc6-dbg \
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/gce/
Dlinux_kokoro_performance_worker_init.sh8 # http://www.apache.org/licenses/LICENSE-2.0
20 set -ex
22 sudo apt-get update
25 sudo apt-get install -y openjdk-8-jdk
26 sudo apt-get install -y unzip lsof
28 sudo apt-get install -y \
30 autotools-dev \
31 build-essential \
36 gcc-multilib \
41 libc6-dbg \
[all …]
/external/pigweed/docs/
Dmodule_metadata.json18 "tagline": "Analog-to-digital converter libraries and utilities",
70 "tagline": "Flash-backed persistent storage for data blobs",
77 "tagline": "Host-layer Bluetooth Low Energy APIs and utilities",
105 "tagline": "Battle-tested Bluetooth with rock-solid reliability",
136 "tagline": "Generate, embed, and parse build-related information",
145 "tagline": "Utilities for building NXP MCUXpresso SDK targets",
160 "tagline": "Async, zero-copy API for sending and receiving bytes or datagrams",
182 "tagline": "Enhance and accelerate custom command-line tooling",
196 "tagline": "NXP MCUXpresso SDK implementation for pw_clock_tree",
203 "tagline": "Multi-purpose pluggable interactive console for dev & manufacturing",
[all …]

123