| /external/aws-sdk-java-v2/test/stability-tests/ |
| D | README.md | 1 # SDK Stability Regression Tests 4 This module contains stability regression tests. 6 We define "stable" to mean that the SDK does not encounter any client-side errors for identified si… 11 As these tests will be running against live, running services, we can expect some subset of request… 20 - Run from your IDE 22 - Run from maven command line 25 mvn clean install -P stability-tests -pl :stability-tests 28 - Build JAR and use the executable JAR 30 First add tests to TestRunner Class, then run the following command. 33 mvn clean install -pl :stability-tests --am -P quick [all …]
|
| D | pom.xml | 1 <?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>stability-tests</artifactId> 29 <name>AWS Java SDK :: Test :: Stability Tests</name> 30 <description>Contains stability regression tests.</description> 35 <artifactId>bom-internal</artifactId> [all …]
|
| /external/aws-sdk-java-v2/test/stability-tests/src/it/java/software/amazon/awssdk/stability/tests/transcribestreaming/ |
| D | TranscribeStreamingStabilityTest.java | 16 package software.amazon.awssdk.stability.tests.transcribestreaming; 36 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 37 import software.amazon.awssdk.stability.tests.utils.RetryableTest; 38 import software.amazon.awssdk.stability.tests.utils.StabilityTestRunner; 39 import software.amazon.awssdk.stability.tests.utils.TestEventStreamingResponseHandler; 40 import software.amazon.awssdk.stability.tests.utils.TestTranscribeStreamingSubscription; 74 IntFunction<CompletableFuture<?>> futureIntFunction = i -> in startTranscription() 75 transcribeStreamingClient.startStreamTranscription(b -> b.mediaSampleRateHertz(8_000) in startTranscription() 107 … .subscribe(result -> log.debug(() -> "Record Batch - " + result.transcript().results())); in onEventStream()
|
| /external/aws-sdk-java-v2/test/stability-tests/src/it/java/software/amazon/awssdk/stability/tests/s3/ |
| D | S3AsyncWithCrtAsyncHttpClientStabilityTest.java | 1 package software.amazon.awssdk.stability.tests.s3; 10 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 11 import software.amazon.awssdk.stability.tests.utils.RetryableTest; 14 * Stability tests for {@link S3AsyncClient} using {@link AwsCrtAsyncHttpClient} 30 .overrideConfiguration(b -> b.apiCallTimeout(Duration.ofMinutes(10)) 42 s3CrtClient.createBucket(b -> b.bucket(bucketName)).join(); in setup()
|
| D | S3MockStabilityTestBase.java | 16 package software.amazon.awssdk.stability.tests.s3; 26 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 27 import software.amazon.awssdk.stability.tests.utils.RetryableTest; 28 import software.amazon.awssdk.stability.tests.utils.StabilityTestRunner; 49 IntFunction<CompletableFuture<?>> future = i -> { in putObjectChecksumVariations() 52 return testClient.putObject(b -> b.bucket(getTestBucketName()) in putObjectChecksumVariations()
|
| D | S3NettyAsyncStabilityTest.java | 1 package software.amazon.awssdk.stability.tests.s3; 8 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 9 import software.amazon.awssdk.stability.tests.utils.RetryableTest; 24 .overrideConfiguration(b -> b.apiCallTimeout(Duration.ofMinutes(10)) 36 s3NettyClient.createBucket(b -> b.bucket(bucketName)).join(); in setup()
|
| D | S3AsyncBaseStabilityTest.java | 16 package software.amazon.awssdk.stability.tests.s3; 38 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 39 import software.amazon.awssdk.stability.tests.utils.RetryableTest; 40 import software.amazon.awssdk.stability.tests.utils.StabilityTestRunner; 60 … .overrideConfiguration(b -> b.apiCallTimeout(Duration.ofMinutes(10))) 88 …IntFunction<CompletableFuture<?>> future = i -> testClient.getBucketAcl(b -> b.bucket(getTestBucke… in doGetBucketAcl_lowTpsLongInterval() 104 … .futures(testClient.getObject(b -> b.bucket(getTestBucketName()).key(LARGE_KEY_NAME), in downloadLargeObjectToFile() 125 … .futures(testClient.putObject(b -> b.bucket(getTestBucketName()).key(LARGE_KEY_NAME), in uploadLargeObjectFromFile() 141 IntFunction<CompletableFuture<?>> future = i -> { in putObject() 143 return testClient.putObject(b -> b.bucket(getTestBucketName()).key(keyName), in putObject() [all …]
|
| D | S3BaseStabilityTest.java | 16 package software.amazon.awssdk.stability.tests.s3; 39 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 40 import software.amazon.awssdk.stability.tests.utils.RetryableTest; 41 import software.amazon.awssdk.stability.tests.utils.StabilityTestRunner; 70 … .overrideConfiguration(b -> b.apiCallTimeout(Duration.ofMinutes(10))) 106 …i -> CompletableFuture.supplyAsync(() -> testClient.getBucketAcl(b -> b.bucket(getTestBucketName()… in doGetBucketAcl_lowTpsLongInterval() 123 .futures(CompletableFuture.supplyAsync(() -> { in downloadLargeObjectToFile() 124 testClient.getObject(b -> b.bucket(getTestBucketName()) in downloadLargeObjectToFile() 148 .futures(CompletableFuture.supplyAsync(() -> { in uploadLargeObjectFromFile() 149 … testClient.putObject(b -> b.bucket(getTestBucketName()).key(LARGEST_KEY_NAME), file.toPath()); in uploadLargeObjectFromFile() [all …]
|
| D | S3CrtAsyncClientStabilityTest.java | 16 package software.amazon.awssdk.stability.tests.s3; 26 * Stability tests for {@link S3CrtAsyncClient} 45 s3ApacheClient.createBucket(b -> b.bucket(BUCKET_NAME)); in setup()
|
| /external/aws-sdk-java-v2/test/stability-tests/src/it/java/software/amazon/awssdk/stability/tests/kinesis/ |
| D | KinesisStabilityTest.java | 16 package software.amazon.awssdk.stability.tests.kinesis; 48 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 49 import software.amazon.awssdk.stability.tests.utils.RetryableTest; 50 import software.amazon.awssdk.stability.tests.utils.StabilityTestRunner; 51 import software.amazon.awssdk.stability.tests.utils.TestEventStreamingResponseHandler; 57 * Stability Tests using Kinesis. 90 asyncClient.createStream(r -> r.streamName(streamName) in setup() 95 streamARN = asyncClient.describeStream(r -> r.streamName(streamName)).join() in setup() 99 shardIds = asyncClient.listShards(r -> r.streamName(streamName)) in setup() 111 … asyncClient.deleteStream(b -> b.streamName(streamName).enforceConsumerDeletion(true)).join(); in tearDown() [all …]
|
| /external/aws-sdk-java-v2/test/stability-tests/src/it/java/software/amazon/awssdk/stability/tests/cloudwatch/ |
| D | CloudWatchNettyAsyncStabilityTest.java | 16 package software.amazon.awssdk.stability.tests.cloudwatch; 25 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 26 import software.amazon.awssdk.stability.tests.utils.RetryableTest; 45 .overrideConfiguration(b -> b in setup()
|
| D | CloudWatchCrtAsyncStabilityTest.java | 16 package software.amazon.awssdk.stability.tests.cloudwatch; 28 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 29 import software.amazon.awssdk.stability.tests.utils.RetryableTest; 50 … .overrideConfiguration(b -> b.apiCallTimeout(Duration.ofMinutes(10)) in setup()
|
| D | CloudWatchBaseStabilityTest.java | 16 package software.amazon.awssdk.stability.tests.cloudwatch; 28 import software.amazon.awssdk.stability.tests.utils.StabilityTestRunner; 49 IntFunction<CompletableFuture<?>> futureIntFunction = i -> in putMetrics() 50 getTestClient().putMetricData(b -> b.namespace(getNamespace()) in putMetrics()
|
| /external/aws-sdk-java-v2/test/stability-tests/src/it/java/software/amazon/awssdk/stability/tests/sqs/ |
| D | SqsNettyAsyncStabilityTest.java | 16 package software.amazon.awssdk.stability.tests.sqs; 23 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 24 import software.amazon.awssdk.stability.tests.utils.RetryableTest; 46 .overrideConfiguration(b -> b.apiCallTimeout(Duration.ofMinutes(1))) in setup()
|
| D | SqsCrtAsyncStabilityTest.java | 16 package software.amazon.awssdk.stability.tests.sqs; 27 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 28 import software.amazon.awssdk.stability.tests.utils.RetryableTest; 53 … .overrideConfiguration(b -> b.apiCallTimeout(Duration.ofMinutes(10)) in setup()
|
| /external/cronet/third_party/libc++/src/docs/DesignDocs/ |
| D | UnspecifiedBehaviorRandomization.rst | 8 Consider the follow snippet which steadily happens in tests: 11 .. code-block:: cpp 20 other implementations because tests might silently fail and the users might 21 heavily depend on the stability of implementations. 33 to gradually fix their tests while updating to new faster algorithms. 49 guarantees the same stability guarantee within a run but not through different 50 runs, for example, for tests become flaky and eventually be seen as broken. 62 ------------------ 64 Google has measured couple of thousands of tests to be dependent on the 65 stability of sorting and selection algorithms. As we also plan on updating [all …]
|
| /external/deqp/doc/testspecs/GLES3/ |
| D | performance.buffer.data_upload.txt | 1 g------------------------------------------------------------------------- 3 ----------------------------------------------- 11 http://www.apache.org/licenses/LICENSE-2.0 18 ------------------------------------------------------------------------- 19 Buffer upload performance tests 21 Tests: 22 + dEQP-GLES3.performance.buffer.data_upload.* 25 + Memcpy performance tests for reference values 27 - STREAM, STATIC and DYNAMIC buffer usages 28 - Target buffer in different states: [all …]
|
| /external/aws-sdk-java-v2/test/stability-tests/src/it/java/software/amazon/awssdk/stability/tests/utils/ |
| D | StabilityTestRunner.java | 16 package software.amazon.awssdk.stability.tests.utils; 37 import software.amazon.awssdk.stability.tests.ExceptionCounter; 38 import software.amazon.awssdk.stability.tests.TestResult; 39 import software.amazon.awssdk.stability.tests.exceptions.StabilityTestsRetryableException; 44 * Stability tests runner. 46 * There are two ways to run the tests: 48 * - providing futureFactories requestCountPerRun and totalRuns. eg: 51 * .futureFactory(i -> CompletableFuture.runAsync(() -> LOGGER.info(() -> 59 …* The tests runner will create futures from the factories and run the 10 requests per run for 5 ru… 62 * - providing futures, eg: [all …]
|
| /external/flatbuffers/tests/fuzzer/ |
| D | readme.md | 2 Test suite of Flatbuffers library has fuzzer section with tests are based on libFuzzer library. 4 > LibFuzzer is in-process, coverage-guided, evolutionary fuzzing engine. 11 To build and run these tests LLVM compiler (with clang frontend) and CMake should be installed befo… 13 The fuzzer section include four tests: 14 - `annotator_fuzzer` checks that inputs given to the flatc --annotate are always parsable; 15 - `verifier_fuzzer` checks stability of deserialization engine for `Monster` schema; 16 - `parser_fuzzer` checks stability of schema and json parser under various inputs; 17 - `scalar_parser` focused on validation of the parser while parse numeric scalars in schema and/or … 18 - `flexverifier_fuzzer` checks stability of deserialization engine for FlexBuffers only; 22 cd tests/fuzzer [all …]
|
| /external/rust/crates/env_logger/ |
| D | README.md | 5 [](https://env-logger-rs.github.io… 45 [2018-11-03T06:09:06Z INFO default] starting up 55 [2018-11-03T06:09:06Z INFO default] starting up 63 The log levels that may be specified correspond to the [`log::Level`][level-enum] 72 [level-enum]: https://docs.rs/log/latest/log/enum.Level.html "log::Level (docs.rs)" 78 …sides an environment variable. See [the examples](https://github.com/env-logger-rs/env_logger/tree… 80 ### In tests 82 Tests can use the `env_logger` crate to see log messages generated during that test: 88 [dev-dependencies] 96 fn add_one(num: i32) -> i32 { [all …]
|
| /external/aws-sdk-java-v2/buildspecs/ |
| D | stability-test.yml | 5 runtime-versions: 10 - mvn clean install -P stability-tests -pl :stability-tests --am $MAVEN_OPTIONS 11 - echo $MAVEN_OPTIONS 13 - mkdir -p codebuild-test-reports 14 - find ./ -name 'TEST-*.xml' -type f -exec cp {} codebuild-test-reports/ \; 18 - 'codebuild-test-reports/**/*'
|
| /external/mbedtls/docs/architecture/testing/ |
| D | psa-storage-format-testing.md | 1 # Mbed TLS PSA keystore format stability testing strategy 15 The goal of storage format stability testing is: as a user of Mbed TLS, I want to store a key under… 19 An alternative, semi-direct approach consists of generating test data under version V, and reading … 21 ### Save-and-compare approach 23 Importing and saving a key is deterministic. Therefore we can ensure the stability of the storage f… 25 …and checks that it has the expected data and metadata. Import-and-save testing and load-and-check … 29 …-and-save passing on version V and load-and-check passing on version W with the same data that pro… 37 …h is implemented in `scripts/abi_check.py`. This tool fails the CI if load-and-check test case dis… 39 …he storage format), then we should keep the corresponding test cases in load-only mode: create a f… 43 … interface. The state of the storage is a mapping from file identifier (a 64-bit number) to file c… [all …]
|
| /external/openthread/third_party/mbedtls/repo/docs/architecture/testing/ |
| D | psa-storage-format-testing.md | 1 # Mbed TLS PSA keystore format stability testing strategy 15 The goal of storage format stability testing is: as a user of Mbed TLS, I want to store a key under… 19 An alternative, semi-direct approach consists of generating test data under version V, and reading … 21 ### Save-and-compare approach 23 Importing and saving a key is deterministic. Therefore we can ensure the stability of the storage f… 25 …and checks that it has the expected data and metadata. Import-and-save testing and load-and-check … 29 …-and-save passing on version V and load-and-check passing on version W with the same data that pro… 37 …h is implemented in `scripts/abi_check.py`. This tool fails the CI if load-and-check test case dis… 39 …he storage format), then we should keep the corresponding test cases in load-only mode: create a f… 43 … interface. The state of the storage is a mapping from file identifier (a 64-bit number) to file c… [all …]
|
| /external/linux-kselftest/tools/testing/selftests/vm/ |
| D | test_vmalloc.sh | 2 # SPDX-License-Identifier: GPL-2.0 10 # b) stressing and stability check of vmalloc subsystem. 14 NUM_CPUS=`grep -c ^processor /proc/cpuinfo` 19 # Kselftest framework requirement - SKIP code is 4. 23 # Static templates for performance, stressing and smoke tests. 32 uid=$(id -u) 33 if [ $uid -ne 0 ]; then 52 echo "Run performance tests to evaluate how fast vmalloc allocation is." 62 echo "Run stability tests. In order to stress vmalloc subsystem all" 84 echo -n "Usage: $0 [ performance ] | [ stress ] | | [ smoke ] | " [all …]
|
| /external/autotest/server/site_tests/audio_AudioBluetoothConnectionStability/ |
| D | control | 2 # Use of this source code is governed by a BSD-style license that can be 7 AUTHOR = "chromeos-chameleon" 9 PURPOSE = "Remotely controlled bluetooth stability test." 21 This test remotely tests bluetooth stability.
|