| /third_party/openssl/test/ssl-tests/ |
| D | 21-key-update.cnf | 5 test-0 = 0-update-key-client-update-not-requested 6 test-1 = 1-update-key-server-update-not-requested 7 test-2 = 2-update-key-client-update-requested 8 test-3 = 3-update-key-server-update-requested 11 [0-update-key-client-update-not-requested] 12 ssl_conf = 0-update-key-client-update-not-requested-ssl 14 [0-update-key-client-update-not-requested-ssl] 15 server = 0-update-key-client-update-not-requested-server 16 client = 0-update-key-client-update-not-requested-client 18 [0-update-key-client-update-not-requested-server] [all …]
|
| /third_party/elfutils/po/ |
| D | ChangeLog | 3 * *.po: Update for 0.188. 14 * *.po: Update for 0.187. 18 * *.po: Update for 0.186. 22 * ja.po: update Japanese translation 26 * *.po: Update for 0.185. 30 * *.po: Update for 0.184. 34 * Makevars (XGETTEXT_OPTIONS): Update. 47 * *.po: Update for 0.183. 66 * *.po: Update for 0.182. 70 * *.po: Update for 0.181. [all …]
|
| /third_party/node/tools/dep_updaters/ |
| D | README.md | 1 # Dependency update scripts 3 This folder contains scripts used to automatically update a Node.js dependency. 7 Since these scripts only update to the upstream code, changes might be needed in 8 this repository in order to successfully update (e.g: changing API calls to 13 The `update-libuv.sh` script takes the target version to update as its only 19 For example, in order to update to version `1.44.2`, the following command can 23 ./tools/dep_updaters/update-libuv.sh 1.44.2 31 2. If necessary, update `common.gypi` and `uv.gyp` with build-related changes. 33 4. Create a commit for the update and in the commit message include the 41 The `update-simdutf.sh` script takes the target version to update as its only [all …]
|
| /third_party/node/deps/npm/tap-snapshots/test/lib/utils/ |
| D | update-notifier.js.test.cjs | 8 exports[`test/lib/utils/update-notifier.js TAP notification situations 122.420.69 - color=always > … 12 Run [32mnpm install -g npm@123.420.69[39m to update! 16 exports[`test/lib/utils/update-notifier.js TAP notification situations 122.420.69 - color=false > m… 20 Run \`npm install -g npm@123.420.69\` to update! 24 exports[`test/lib/utils/update-notifier.js TAP notification situations 123.419.69 - color=always > … 28 Run [32mnpm install -g npm@123.420.69[39m to update! 32 exports[`test/lib/utils/update-notifier.js TAP notification situations 123.419.69 - color=false > m… 36 Run \`npm install -g npm@123.420.69\` to update! 40 exports[`test/lib/utils/update-notifier.js TAP notification situations 123.420.68 - color=always > … 44 Run [32mnpm install -g npm@123.420.69[39m to update! [all …]
|
| /third_party/mbedtls/tests/suites/ |
| D | test_suite_hmac_drbg.misc.data | 37 HMAC_DRBG write/update seed file SHA-1 [#1] 41 HMAC_DRBG write/update seed file SHA-1 [#2] 45 HMAC_DRBG write/update seed file SHA-224 [#1] 49 HMAC_DRBG write/update seed file SHA-224 [#2] 53 HMAC_DRBG write/update seed file SHA-256 [#1] 57 HMAC_DRBG write/update seed file SHA-256 [#2] 61 HMAC_DRBG write/update seed file SHA-384 [#1] 65 HMAC_DRBG write/update seed file SHA-384 [#2] 69 HMAC_DRBG write/update seed file SHA-512 [#1] 73 HMAC_DRBG write/update seed file SHA-512 [#2] [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
| D | DomTreeUpdater.h | 10 // update dominator tree related data structures. 71 /// least one update pending. If DT or PDT is nullptr it is treated 91 /// Note: There are two strategies to update the DominatorTree and the 96 /// explicitly call Flush APIs. It is recommended to use this update strategy 103 /// Although GenericDomTree provides several update primitives, 111 /// in sync with + all updates before that single update. 115 /// *before* submitting the updates because the internal update routine will 116 /// analyze the current state of the CFG to determine whether an update 118 /// 2. It is illegal to submit any update that has already been submitted, 131 /// in sync with + all updates before that single update. [all …]
|
| /third_party/node/test/parallel/ |
| D | test-crypto-binary-default.js | 67 .update('some data') 68 .update('to hmac') 223 .update(testCase.data) 351 .update(testCase.data) 360 .update(testCase.data) 368 const a1 = crypto.createHash('sha1').update('Test123').digest('hex'); 369 const a2 = crypto.createHash('sha256').update('Test123').digest('base64'); 370 const a3 = crypto.createHash('sha512').update('Test123').digest(); // binary 371 const a4 = crypto.createHash('sha1').update('Test123').digest('buffer'); 374 const a0 = crypto.createHash('md5').update('Test123').digest('latin1'); [all …]
|
| D | test-crypto-cipher-decipher.js | 29 let ciph = cipher.update(plaintext, 'utf8', 'hex'); 34 let txt = decipher.update(ciph, 'hex', 'utf8'); 66 let ciph = cipher.update(plaintext, 'utf8', 'base64'); 70 let txt = decipher.update(ciph, 'base64', 'utf8'); 105 () => crypto.createCipher('aes-256-cbc', 'secret').update(null), 153 const s = c.update('test', 'utf8', 'base64') + c.final('base64'); 171 // string to Cipher#update() should not assert. 174 c.update('update'); 182 c.update('update', ''); // Defaults to "utf8". 186 c.update('update', 'utf8'); [all …]
|
| D | test-crypto-hash.js | 16 const a1 = crypto.createHash('sha1').update('Test123').digest('hex'); 17 const a2 = crypto.createHash('sha256').update('Test123').digest('base64'); 18 const a3 = crypto.createHash('sha512').update('Test123').digest(); // buffer 19 const a4 = crypto.createHash('sha1').update('Test123').digest('buffer'); 45 const a0 = crypto.createHash(cryptoType).update('Test123').digest(digest); 91 const h1 = crypto.createHash('sha1').update('Test123').digest('hex'); 92 const h2 = crypto.createHash('sha1').update('Test').update('123').digest('hex'); 100 sha1Hash.update(data); 126 // arg type to update method should include all possible types 128 () => crypto.createHash('sha256').update(), [all …]
|
| /third_party/json/docs/mkdocs/docs/api/basic_json/ |
| D | update.md | 1 # <small>nlohmann::basic_json::</small>update 5 void update(const_reference j, bool merge_objects = false); 8 void update(const_iterator first, const_iterator last, bool merge_objects = false); 17 …e function is motivated by Python's [dict.update](https://docs.python.org/3.6/library/stdtypes.htm… 39 objects; example: `"cannot use update() with string"` 42 objects; example: `"cannot use update() with string"` 57 The example shows how `update()` is used. 60 --8<-- "examples/update.cpp" 66 --8<-- "examples/update.output" 71 The example shows how `update()` is used. [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/ |
| D | ChangeLog.txt | 4 Update Log for the Vulkan-Docs repository on Github. Updates are in reverse 14 Change log for November 30, 2021 Vulkan 1.2.201 spec update: 16 * Update release number to 201 for this update. 36 * Update valid usage statements for apiext:VK_NV_mesh_shader (internal 58 Change log for November 23, 2021 Vulkan 1.2.200 spec update: 60 * Update release number to 200 for this update. 81 slink:VkMemoryRequirements as a minor update to the 114 Change log for November 16, 2021 Vulkan 1.2.199 spec update: 116 * Update release number to 199 for this update. 146 * Update apiext:VK_KHR_dynamic_rendering [all …]
|
| D | ChangeLog.adoc | 4 Update Log for the Vulkan-Docs repository on GitHub. Updates are in reverse 17 Change log for January 5, 2024 Vulkan 1.3.275 spec update: 21 * Update `VK_EXT_image_compression_control` support query example (public 45 * Update buffer usage flag VUs to factor out common VUs to a new 60 Change log for December 19, 2023 Vulkan 1.3.274 spec update: 84 * Update common pipeline create info VUs for create flags (internal issue 91 * Update flink:vkGetDescriptorEXT VUs for YCbCr 117 Change log for December 8, 2023 Vulkan 1.3.273 spec update: 151 Change log for December 1, 2023 Vulkan 1.3.272 spec update: 167 * Update VU for VkSubpassDescription2 to cover sample count constraints [all …]
|
| D | ChangeLogSC.adoc | 4 Update Log for the VulkanSC-Docs repository on GitHub. 15 Change log for December 15, 2023 Vulkan SC 1.0.14 spec update: 17 * update release number to 14 for this update and reflow spec language 33 Change log for September 27, 2023 Vulkan SC 1.0.13 spec update: 35 * update release number to 13 for this update 73 Change log for January 20, 2023 Vulkan SC 1.0.12 spec update: 75 * update release number to 12 for this update 105 Change log for September 9, 2022 Vulkan SC 1.0.11 spec update: 107 * update release number to 11 for this update 128 * Update cgenerator to replace C-style casts with static_casts in defines [all …]
|
| /third_party/node/doc/contributing/ |
| D | releases-node-api.md | 10 * [1. Update the main branch](#1-update-the-main-branch) 12 * [3. Update `NODE_API_SUPPORTED_VERSION_MAX`](#3-update-node_api_supported_version_max) 14 * [5. Update version guards](#5-update-version-guards) 37 ### 1. Update the main Branch 42 $ git remote update 58 ### 3. Update `NODE_API_SUPPORTED_VERSION_MAX` 67 > Note: Do not update the `NAPI_VERSION` defined in `src/js_native_api.h`. It 77 ### 5. Update version guards 79 #### Step 1. Update define version guards 94 and update the define version guards with the release version: [all …]
|
| /third_party/node/doc/contributing/maintaining/ |
| D | maintaining-root-certs.md | 11 ## When to update 18 The `tools/dep_updaters/update-root-certs.mjs` script automates the update of 34 1. Find NSS metadata for update. 42 2. Update `certdata.txt` from the NSS release tag. 44 Update the tag in the commands below, and run: 54 with the previous update. Seek help! 56 Update metadata in the message below, and commit `certdata.txt`: 59 tools: update certdata.txt 69 3. Update `node_root_certs.h` from `certdata.txt`. 108 Use the diff to update the message below, and commit `src/node_root_certs.h`: [all …]
|
| /third_party/node/deps/npm/man/man1/ |
| D | npm-update.1 | 1 .TH "NPM-UPDATE" "1" "February 2024" "" "" 3 \fBnpm-update\fR - Update packages 8 npm update \[lB]<pkg>...\[rB] 15 This command will update all the packages listed to the latest version (specified by the \fB\fBtag\… 19 If the \fB-g\fR flag is specified, this command will update globally installed packages. 23 …update\fR will not update the semver values of direct dependencies in your project \fBpackage.json… 58 Then \fBnpm update\fR will install \fBdep1@1.2.2\fR, because \fB1.2.2\fR is \fBlatest\fR and \fB1.2… 71 In this case, running \fBnpm update\fR will install \fBdep1@1.1.2\fR. Even though the \fBlatest\fR … 84 \fBnpm update\fR will install \fBdep1@0.2.0\fR. 96 Then \fBnpm update\fR will install \fBdep1@0.4.1\fR, because that is the highest-sorting version th… [all …]
|
| /third_party/libdrm/ |
| D | xf86drmSL.c | 138 static SLEntryPtr SLLocate(void *l, unsigned long key, SLEntryPtr *update) in SLLocate() argument 149 update[i] = entry; in SLLocate() 159 SLEntryPtr update[SL_MAX_LEVEL + 1]; in drmSLInsert() local 165 entry = SLLocate(list, key, update); in drmSLInsert() 173 update[level] = list->head; in drmSLInsert() 180 entry->forward[i] = update[i]->forward[i]; in drmSLInsert() 181 update[i]->forward[i] = entry; in drmSLInsert() 191 SLEntryPtr update[SL_MAX_LEVEL + 1]; in drmSLDelete() local 197 entry = SLLocate(list, key, update); in drmSLDelete() 203 if (update[i]->forward[i] == entry) in drmSLDelete() [all …]
|
| /third_party/mesa3d/src/virtio/vulkan/ |
| D | vn_descriptor_set.c | 651 struct vn_update_descriptor_sets *update = storage; in vn_update_descriptor_sets_alloc() local 652 update->write_count = write_count; in vn_update_descriptor_sets_alloc() 653 update->writes = storage + writes_offset; in vn_update_descriptor_sets_alloc() 654 update->images = storage + images_offset; in vn_update_descriptor_sets_alloc() 655 update->buffers = storage + buffers_offset; in vn_update_descriptor_sets_alloc() 656 update->views = storage + views_offset; in vn_update_descriptor_sets_alloc() 657 update->iubs = storage + iubs_offset; in vn_update_descriptor_sets_alloc() 659 return update; in vn_update_descriptor_sets_alloc() 683 struct vn_update_descriptor_sets *update = in vn_update_descriptor_sets_parse_writes() local 686 if (!update) in vn_update_descriptor_sets_parse_writes() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/ |
| D | update-llvm-10.sh | 16 STAGING_DIR="/tmp/llvm-10-update" 31 # Clone or update the staging directory 48 # Look for the last update change. 49 …LAST_TARGET_UPDATE=`git log --grep="^llvm-10-update: [0-9a-f]\{9\}$" -n 1 --pretty=format:'%h' ${T… 51 # Get the LLVM commit hash from the update change. 52 … LAST_SOURCE_UPDATE=`git log $LAST_TARGET_UPDATE -n 1 | grep -oP "llvm-10-update: \K([0-9a-f]{9})"` 58 # Gather list of changes since last update 66 …OMMIT_MSG=`echo -e "Update LLVM 10 to ${LLVM_HEAD}\n\n${LLVM_CHANGE_LOG}Commands:\n third_party/u… 75 # Update SwiftShader's $TARGET_DIR with a clean copy of latest LLVM 88 # Update SwiftShader's $TARGET_DIR with a clean copy of latest LLVM
|
| /third_party/rust/crates/log/.github/workflows/ |
| D | main.yml | 37 rustup update ${{ matrix.rust }} --no-self-update 58 rustup update stable --no-self-update 70 rustup update nightly --no-self-update 86 rustup update nightly --no-self-update 102 rustup update 1.31.0 --no-self-update 116 rustup update stable --no-self-update
|
| /third_party/node/deps/npm/lib/utils/ |
| D | update-notifier.js | 10 // update check frequency 19 // this if we are doing the actual update 53 // ok! notify the user about this update they should get. 56 const update = semver.parse(mani.version) constant 57 const type = update.major !== current.major ? 'major' 58 : update.minor !== current.minor ? 'minor' 59 : update.patch !== current.patch ? 'patch' 73 `Run ${cmdc} to update!\n` 101 // intentional. do not await this. it's a best-effort update. if this 109 // only update the notification timeout if we actually finished checking [all …]
|
| /third_party/node/deps/npm/lib/commands/ |
| D | update.js | 8 class Update extends ArboristWorkspaceCmd { class 9 static description = 'Update packages' 10 static name = 'update' 41 const update = args.length === 0 ? true : args 45 // In the context of `npm update` the save 52 log.warn('update', 'The --depth option no longer has any effect. See RFC0019.\n' + 53 'https://github.com/npm/rfcs/blob/latest/implemented/0019-remove-update-depth-option.md') 65 await arb.reify({ ...opts, update }) field 69 module.exports = Update
|
| /third_party/node/deps/npm/docs/content/commands/ |
| D | npm-update.md | 2 title: npm-update 4 description: Update packages 10 npm update [<pkg>...] 17 This command will update all the packages listed to the latest version 24 If the `-g` flag is specified, this command will update globally installed 30 Note that by default `npm update` will not update the semver values of direct 31 dependencies in your project `package.json`. If you want to also update 32 values in `package.json` you can run: `npm update --save` (or add the 69 Then `npm update` will install `dep1@1.2.2`, because `1.2.2` is `latest` and 82 In this case, running `npm update` will install `dep1@1.1.2`. Even though the [all …]
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
| D | gen_dxgi_support_tables.py | 206 optionally_supported.update(d3d_flag) 208 always_supported.update(d3d_flag) 210 never_supported.update(d3d_flag) 212 fl_10_0_supported.update(d3d_flag) 214 fl_10_1_supported.update(d3d_flag) 216 fl_11_0_supported.update(d3d_flag) 218 fl_11_1_supported.update(d3d_flag) 221 always_supported.update(d3d_flag) 223 fl_10_0_check_10_1_supported.update(d3d_flag) 225 fl_10_0_check_11_0_supported.update(d3d_flag) [all …]
|
| /third_party/elfutils/config/ |
| D | ChangeLog | 3 * elfutils.spec.in: Update for 0.188. 41 * elfutils.spec.in: Update for 0.187. 57 * elfutils.spec.in: Update for 0.186. 77 * elfutils.spec.in: Update for 0.185. 85 * elfutils.spec.in: Update for 0.184. 105 * elfutils.spec.in: Update for 0.183. 134 * elfutils.spec.in: Update for 0.182. 164 * elfutils.spec.in: Update for 0.181. 172 * elfutils.spec.in: Update for 0.189. 185 * elfutils.spec.in: Update for 0.179. [all …]
|