| /external/opencensus-java/ |
| D | RELEASING.md | 1 # How to Create a Release of OpenCensus Java (for Maintainers Only) 7 - Ubuntu 14.04 18 - Follow the instructions on [this 19 page](http://central.sonatype.org/pages/ossrh-guide.html) to set up an 21 - You only need to create the account, not set up a new project 22 - Contact a OpenCensus Java maintainer to add your account after you 24 - (For release deployment only) [Install 25 GnuPG](http://central.sonatype.org/pages/working-with-pgp-signatures.html#installing-gnupg) 27 pair](http://central.sonatype.org/pages/working-with-pgp-signatures.html#generating-a-key-pair). 29 …key](http://central.sonatype.org/pages/working-with-pgp-signatures.html#distributing-your-public-k… [all …]
|
| /external/OpenCL-CTS/test_conformance/compiler/ |
| D | test_compile.cpp | 8 // http://www.apache.org/licenses/LICENSE-2.0 62 " float temp = src[id] - 42;\n" 174 return -1; in test_large_single_compile() 179 lines[numLines - 1] = sample_kernel_end; in test_large_single_compile() 185 for (i = 1; i < numLines - 1; i++) in test_large_single_compile() 192 /* Try to create a program with these lines */ in test_large_single_compile() 197 log_error("ERROR: Unable to create long test program with %d lines! " in test_large_single_compile() 204 test_error(error, "Unable to release a program object"); in test_large_single_compile() 206 return -1; in test_large_single_compile() 215 test_error(error, "Unable to release a program object"); in test_large_single_compile() [all …]
|
| /external/google-auth-library-java/ |
| D | RELEASE.md | 1 One-time setup 5 ----------------------- 10 ------------------------ 12 …h rights by creating an issue similar to [this one](https://issues.sonatype.org/browse/OSSRH-16798) 13 * You must be logged in to create a new issue 14 * Use the *Create* button at the top tab 17 --------------- 22 * Generate the key ```gpg --gen-key``` 26 * One way to make a random passphrase: ```base64 /dev/urandom | head -c20; echo;``` 28 * Find the ID of your public key ```gpg --list-secret-keys``` [all …]
|
| /external/libchrome/base/synchronization/ |
| D | lock_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 17 // Basic test to make sure that Acquire()/Release()/Try() don't crash ---------- 25 lock_->Acquire(); in ThreadMain() 27 lock_->Release(); in ThreadMain() 30 lock_->Acquire(); in ThreadMain() 33 lock_->Release(); in ThreadMain() 36 if (lock_->Try()) { in ThreadMain() 39 lock_->Release(); in ThreadMain() 58 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle)); in TEST() 64 lock.Release(); in TEST() [all …]
|
| /external/OpenCL-CTS/test_conformance/extensions/cl_khr_semaphore/ |
| D | test_semaphores.cpp | 8 // http://www.apache.org/licenses/LICENSE-2.0 96 // Create semaphore in semaphore_cross_queue_helper() 104 test_error(err, "Could not create semaphore"); in semaphore_cross_queue_helper() 129 // Release semaphore in semaphore_cross_queue_helper() 131 test_error(err, "Could not release semaphore"); in semaphore_cross_queue_helper() 155 // Create ooo queue in test_semaphores_simple_1() 158 test_error(err, "Could not create command queue"); in test_semaphores_simple_1() 160 // Create semaphore in test_semaphores_simple_1() 168 test_error(err, "Could not create semaphore"); in test_semaphores_simple_1() 190 // Release semaphore in test_semaphores_simple_1() [all …]
|
| /external/gson/ |
| D | ReleaseProcess.md | 1 # Gson Release Process 3 The following is a step-by-step procedure for releasing a new version of Google-Gson. 5 …release. Mark all others with an appropriate release tag. Identify duplicates, and close the bugs … 6 1. Ensure all changelists are code-reviewed and have +1 8 1. Run `mvn release:clean` 9 1. Start the release: `mvn release:prepare` 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… 12 1. Complete the release: `mvn release:perform` 14 …release the staging repository, there is no going back. It will get synced with Maven Central and … [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | firebaserules_v1.projects.releases.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
| /external/accompanist/docs/ |
| D | updating.md | 20 # Create branch for PR 21 git checkout -b update_snapshot 40 Finally create a PR (with the base branch as `snapshot`) and send for review. 44 Once the next Jetpack Compose version is out, we're ready to push a new release: 54 # Create branch for PR 55 git checkout -b main_snapshot_merge 67 1. Update the `composesnapshot` property to a single character (usually `-`). This disables the sna… 68 2. Update the `compose` property to match the new release (i.e. `1.0.0-beta06`) 81 * Update the `VERSION_NAME` property and remove the `-SNAPSHOT` suffix. 87 Push the branch to GitHub and create a PR against the `main` branch, and send for review. Once appr… [all …]
|
| /external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/ |
| D | SurfaceTextureHelperTest.java | 4 * Use of this source code is governed by a BSD-style license 78 final long elapsedTimeMs = SystemClock.elapsedRealtime() - startTimeMs; in assertNoFrameIsDelivered() 79 timeRemainingMs = waitPeriodMs - elapsedTimeMs; in assertNoFrameIsDelivered() 89 if (Math.abs(expected - actual) <= threshold) in assertClose() 111 // Create EGL base with a pixel buffer as display output. in testThreeConstantColorFrames() 112 final EglBase eglBase = EglBase.create(null, EglBase.CONFIG_PIXEL_BUFFER); in testThreeConstantColorFrames() 116 // Create SurfaceTextureHelper and listener. in testThreeConstantColorFrames() 117 final SurfaceTextureHelper surfaceTextureHelper = SurfaceTextureHelper.create( in testThreeConstantColorFrames() 123 // Create resources for stubbing an OES texture producer. `eglOesBase` has the SurfaceTexture in in testThreeConstantColorFrames() 125 final EglBase eglOesBase = EglBase.create(eglBase.getEglBaseContext(), EglBase.CONFIG_PLAIN); in testThreeConstantColorFrames() [all …]
|
| D | GlRectDrawerTest.java | 4 * Use of this source code is governed by a BSD-style license 33 // clang-format off 39 // clang-format on 97 // Create EGL base with a pixel buffer as display output. in testRgbRendering() 98 final EglBase eglBase = EglBase.create(null, EglBase.CONFIG_PIXEL_BUFFER); in testRgbRendering() 102 // Create RGB byte buffer plane with random content. in testRgbRendering() 128 drawer.release(); in testRgbRendering() 130 eglBase.release(); in testRgbRendering() 138 // Create EGL base with a pixel buffer as display output. in testYuvRendering() 139 EglBase eglBase = EglBase.create(null, EglBase.CONFIG_PIXEL_BUFFER); in testYuvRendering() [all …]
|
| /external/cronet/base/synchronization/ |
| D | lock_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 17 // Basic test to make sure that Acquire()/Release()/Try() don't crash ---------- 28 lock_->Acquire(); in ThreadMain() 30 lock_->Release(); in ThreadMain() 33 lock_->Acquire(); in ThreadMain() 36 lock_->Release(); in ThreadMain() 39 if (lock_->Try()) { in ThreadMain() 42 lock_->Release(); in ThreadMain() 59 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle)); in TEST() 65 lock.Release(); in TEST() [all …]
|
| /external/google-cloud-java/java-deploy/google-cloud-deploy/src/main/java/com/google/cloud/deploy/v1/ |
| D | CloudDeployClient.java | 8 * https://www.apache.org/licenses/LICENSE-2.0 51 // AUTO-GENERATED DOCUMENTATION AND CLASS. 62 * // - It may require correct/in-range values for request initialization. 63 * // - It may require specifying regional endpoints when creating the service client as shown in 65 * try (CloudDeployClient cloudDeployClient = CloudDeployClient.create()) { 73 * threads. In the example above, try-with-resources is used, which automatically calls close(). 96 * create(). For example: 103 * // - It may require correct/in-range values for request initialization. 104 * // - It may require specifying regional endpoints when creating the service client as shown in 108 * .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials)) [all …]
|
| /external/grpc-grpc-java/ |
| D | RELEASING.md | 1 How to Create a Release of GRPC Java (for Maintainers Only) 5 ------------------ 7 - Ubuntu 14.04 with Docker 13.03.0 that runs CentOS 7 8 - Windows 7 64-bit with Visual Studio 9 - Mac OS X 10.14.6 14 ---------------- 15 Many of the following commands expect release-specific variables to be set. Set 19 $ MAJOR=1 MINOR=7 PATCH=0 # Set appropriately for new release 29 examples/example-*/build.gradle 30 examples/example-*/pom.xml [all …]
|
| /external/libnl/lib/cli/qdisc/ |
| D | plug.c | 1 /* SPDX-License-Identifier: LGPL-2.1-only */ 6 #include "nl-default.h" 15 "Usage: nl-qdisc-add [...] plug [OPTIONS]...\n" in print_usage() 18 " --help Show this help text.\n" in print_usage() 19 " --limit Maximum queue length in bytes.\n" in print_usage() 20 " --buffer create a new buffer(plug) and queue incoming traffic into it.\n" in print_usage() 21 " --release-one release traffic from previous buffer.\n" in print_usage() 22 " --release-indefinite stop buffering and release all (buffered and new) packets.\n" in print_usage() 26 " nl-qdisc-add --dev=ifb0 --parent=root plug --limit=32768\n" in print_usage() 28 " nl-qdisc-add --dev=ifb0 --parent=root --update plug --buffer\n" in print_usage() [all …]
|
| /external/grpc-grpc-java/xds/src/test/java/io/grpc/xds/internal/security/ |
| D | ReferenceCountingMapTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 56 when(mockFactory.create(3)).thenReturn(valueFor3); in referenceCountingMap_getAndRelease_closeCalled() 62 // at this point ref-count is 2 in referenceCountingMap_getAndRelease_closeCalled() 63 assertThat(map.release(3, val)).isNull(); in referenceCountingMap_getAndRelease_closeCalled() 65 assertThat(map.release(3, val)).isNull(); // after this ref-count is 0 in referenceCountingMap_getAndRelease_closeCalled() 77 when(mockFactory.create(3)).thenReturn(valueFor3); in referenceCountingMap_distinctElements() 78 when(mockFactory.create(4)).thenReturn(valueFor4); in referenceCountingMap_distinctElements() 83 assertThat(map.release(3, val3)).isNull(); in referenceCountingMap_distinctElements() 86 assertThat(map.release(4, val4)).isNull(); in referenceCountingMap_distinctElements() 95 when(mockFactory.create(3)).thenReturn(valueFor3); in referenceCountingMap_releaseWrongElement_expectException() [all …]
|
| /external/OpenCL-CTS/test_conformance/api/ |
| D | test_retain.cpp | 8 // http://www.apache.org/licenses/LICENSE-2.0 22 …n released. However, the spec is out of date. If it gets re-updated to allow such action, re-enable 31 return -1; } 40 /* Create a test queue */ in test_retain_queue_single() 42 test_error( err, "Unable to create command queue to test with" ); in test_retain_queue_single() 49 /* Now release the program */ in test_retain_queue_single() 53 exactly how we can tell the release worked--by making sure getting the instance count fails! */ in test_retain_queue_single() 58 return -1; in test_retain_queue_single() 72 /* Create a test program */ in test_retain_queue_multiple() 74 test_error( err, "Unable to create command queue to test with" ); in test_retain_queue_multiple() [all …]
|
| /external/rust/crates/grpcio-sys/grpc/tools/interop_matrix/ |
| D | README.md | 6 from specific releases/tag, are used to test version compatibility between gRPC release versions. 8 ## Step-by-step instructions for adding a GCR image for a new release for compatibility test 9 … server. When a gRPC developer creates a new gRPC release, s/he is also responsible to add the ju… 10 - Add (or update) an entry in `./client_matrix.py` file to reference the github tag for the release. 11 - Build new client docker image(s). For example, for C and wrapper languages release `v1.9.9`, do 12 …- `tools/interop_matrix/create_matrix_images.py --git_checkout --release=v1.9.9 --upload_images --… 13 - Verify that the new docker image was built successfully and uploaded to GCR. For example, 14 - `gcloud container images list --repository gcr.io/grpc-testing` lists available images. 15 …- `gcloud container images list-tags gcr.io/grpc-testing/grpc_interop_java` should show an image e… 16 …- images can also be viewed in https://pantheon.corp.google.com/gcr/images/grpc-testing?project=gr… [all …]
|
| /external/grpc-grpc/tools/interop_matrix/ |
| D | README.md | 6 from specific releases/tag, are used to test version compatibility between gRPC release versions. 8 ## Step-by-step instructions for adding a GCR image for a new release for compatibility test 9 … server. When a gRPC developer creates a new gRPC release, s/he is also responsible to add the ju… 10 - Add (or update) an entry in `./client_matrix.py` file to reference the github tag for the release. 11 - Build new client docker image(s). For example, for C and wrapper languages release `v1.9.9`, do 12 …- `tools/interop_matrix/create_matrix_images.py --git_checkout --release=v1.9.9 --upload_images --… 13 - Verify that the new docker image was built successfully and uploaded to GCR. For example, 14 - `gcloud container images list --repository gcr.io/grpc-testing` lists available images. 15 …- `gcloud container images list-tags gcr.io/grpc-testing/grpc_interop_java` should show an image e… 16 …- images can also be viewed in https://pantheon.corp.google.com/gcr/images/grpc-testing?project=gr… [all …]
|
| /external/angle/third_party/spirv-tools/src/.github/workflows/ |
| D | release.yml | 1 name: Create a release branch from release tag 8 - 'v[0-9]+.[0-9]+' 9 - 'vulkan-sdk-[0-9]+.[0-9]+.[0-9]+.[0-9]+' 10 - '!v[0-9]+.[0-9]+.rc*' 13 prepare-release-job: 14 runs-on: ubuntu-latest 16 - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 17 - name: Prepare CHANGELOG for version 20 - name: Create release 22 …gh release create -t "Release ${{ github.ref_name }}" -F VERSION_CHANGELOG "${{ github.ref_name }}"
|
| /external/deqp-deps/SPIRV-Tools/.github/workflows/ |
| D | release.yml | 1 name: Create a release branch from release tag 8 - 'v[0-9]+.[0-9]+' 9 - 'vulkan-sdk-[0-9]+.[0-9]+.[0-9]+.[0-9]+' 10 - '!v[0-9]+.[0-9]+.rc*' 13 prepare-release-job: 14 runs-on: ubuntu-latest 16 - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 17 - name: Prepare CHANGELOG for version 20 - name: Create release 22 …gh release create -t "Release ${{ github.ref_name }}" -F VERSION_CHANGELOG "${{ github.ref_name }}"
|
| /external/swiftshader/third_party/SPIRV-Tools/.github/workflows/ |
| D | release.yml | 1 name: Create a release branch from release tag 8 - 'v[0-9]+.[0-9]+' 9 - 'vulkan-sdk-[0-9]+.[0-9]+.[0-9]+.[0-9]+' 10 - '!v[0-9]+.[0-9]+.rc*' 13 prepare-release-job: 14 runs-on: ubuntu-latest 16 - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 17 - name: Prepare CHANGELOG for version 20 - name: Create release 22 …gh release create -t "Release ${{ github.ref_name }}" -F VERSION_CHANGELOG "${{ github.ref_name }}"
|
| /external/rust/crates/flate2/ |
| D | MAINTENANCE.md | 3 ### Creating a new release 14 1. `git checkout -b release-<next-version>` - move to a branch to prepare making changes to the rep… 16 3. `gh pr create` to create a new PR for the current branch and **get it merged**. 17 4. `cargo publish` to create a new release on `crates.io`. 18 5. `git tag <next-version>` to remember the commit. 19 6. `git push --tags` to push the new tag. 20 …o the newly created release page on GitHub and edit it by pressing the "Generate Release Notes" an…
|
| /external/libxml2/ |
| D | MAINTAINERS.md | 9 You can simply add new test cases and run `runtest -u` to update the 11 `runtest -u` and then `git diff result` to get a diff between actual and 13 `git restore result` and `git clean -xd result`. 19 make -C doc rebuild 25 apt install xsltproc python3-libxml2 docbook-xsl docbook-xml 27 doc/apibuild.py generates doc/libxml2-api.xml which is used to generate 29 - API documentation with XSLT stylesheets 30 - testapi.c with gentest.py 31 - Python bindings with python/generator.py 36 ## Making a release [all …]
|
| /external/rust/crates/grpcio-sys/grpc/third_party/opencensus-proto/ |
| D | RELEASING.md | 1 # How to Create a Release of OpenCensus Proto (for Maintainers Only) 5 We re-generate gen-go files and deploy jars to Maven Central under the following systems: 7 - Ubuntu 14.04 11 ## Release Go files 13 To generate the Go files from protos, you'll need to install protoc, protoc-gen-go and grpc-gateway… 14 Follow the instructions [here](http://google.github.io/proto-lens/installing-protoc.html), 15 …com/golang/protobuf#installation) and [here](https://github.com/grpc-ecosystem/grpc-gateway#instal… 17 Then run the following commands to re-generate the gen-go files: 20 $ cd $(go env GOPATH)/src/github.com/census-instrumentation/opencensus-proto 21 $ git checkout -b update-gen-go [all …]
|
| /external/aws-sdk-java-v2/changelogs/ |
| D | 2.21.x-CHANGELOG.md | 1 # __2.21.46__ __2023-12-14__ 3 - ### Features 4 - Documentation updates for AWS B2B Data Interchange 7 - ### Features 8 - Documentation updates for AWS Control Tower. 11 - ### Features 12 …- This release adds the ability to self-manage certificate signing in AWS IoT Core fleet provision… 15 - ### Features 16 - Updated endpoint and partition metadata. 19 - ### Bugfixes [all …]
|