[lldb][windows] Null-check m_session_data in ProcessDebugger::OnDebuggerError (#199028)
Add a null check that logs and returns, matching the pattern in
OnExitProcess.
[DirectX][ObjectYAML] Add VERS part support (#198222)
Add support for DXContainer VERS part in the ObjectYAML pipeline so it
can be represented in structured YAML and round-tripped through
yaml2obj/obj2yaml.
VERS is emitted into DXContainers inside shader PDB files. It stores
information about the version of a compiler used to produce shader
binaries.
Revert "loopback: Clear hash unconditionally."
This reverts commit 2fe37927d41990abe8d1c336e75fd75873285e90.
This turns out to have been misguided. First, clearing the
hash results in all loopback ip/ip6 traffic being hashed
to the netisr queue associated with the if_index of the loopback
interface. Eg, it bottlenecks loopback traffic. When the
hash is kept, traffic is spread evenly among netisrs.
Also, it is safe to keep the hash here. The clearing was only
needed when RSS core selection is enabled; we only enabled the
consistent hashing parts of RSS globally, not the cpuid mapping
stuff. So there is no need to clear it.
Reviewed by: glebius
Sponsored by: Netflix
(devel/R-rlang) Updated 1.1.6 to 1.2.0
# rlang 1.2.0
* rlang and tidyeval are now fully backed by official C APIs of R!
Thanks to the R core team for collaborating with us on this.
* `ns_registry_env()` is defunct in R >= 4.6.0 for compliance with the
C API of R.
* New type-checking functions exported from rlang: `check_bool()`,
`check_string()`, `check_name()`, `check_number_decimal()`,
`check_number_whole()`, and `check_data_frame()`. These were
previously only available via the `standalone-types-check.R`
standalone file. `stop_input_type()` is also now exported.
* Fixed a protection issue discovered by rchk (#1865).
[23 lines not shown]
[CI] Remove unused env var from commit-access-greeter (#199024)
LABEL_NAME has been there since the workflow's introduction in
f8ef2699d860aea97750953f1b79db8ef7574e82, but has never been used.
[OpenMP][OMPIRBuilder] Refactor removeUnusedBlocksFromParent (#198938)
This is essentially post-commit review for #198690 which was landed
quickly to fix nondeterminism in tests introduced in #197637
Change-Id: Ib3603ef3c70dde5bb22d0fc04d9249e62ecccf0c
Co-authored-by: @Meinersbur
Co-authored-by: @chichunchen