| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
|
Review requested:
|
Sorry, something went wrong.
There was a problem hiding this comment.
| libuv objects is performed automatically, i.e. handles are closed and requests | |
| are cancelled if possible. | |
| libuv objects is performed automatically, (i.e. handles are closed and requests | |
| are cancelled, if possible). |
Sorry, something went wrong.
There was a problem hiding this comment.
Thanks for the suggestion but I don't think it is necessary to add parentheses here.
Sorry, something went wrong.
There was a problem hiding this comment.
| [`Environment`][] is destroyed with cleanup hook. A [`ShadowRealm`][] can also | |
| [`Environment`][] is destroyed with [a/the] cleanup hook. A [`ShadowRealm`][] can also |
Sorry, something went wrong.
Codecov Report❌ Patch coverage is 84.21053% with 6 lines in your changes missing coverage. Please review.
@@ Coverage Diff @@
## main #55104 +/- ##
==========================================
- Coverage 88.24% 88.24% -0.01%
==========================================
Files 651 651
Lines 183877 183867 -10
Branches 35858 35855 -3
==========================================
- Hits 162266 162253 -13
- Misses 14901 14904 +3
Partials 6710 6710
... and 39 files with indirect coverage changes 🚀 New features to boost your workflow:
|
Sorry, something went wrong.
There was a problem hiding this comment.
lgtm
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
Commit Queue failed- Loading data for nodejs/node/pull/55104 ✔ Done loading data for nodejs/node/pull/55104 ----------------------------------- PR info ------------------------------------ Title src: track BaseObjects with an efficient list (#55104) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch legendecas:realm/base-obj -> nodejs:main Labels c++, lib / src, author ready, needs-ci Commits 1 - src: track BaseObjects with an efficient list Committers 1 - Chengzhong Wu <legendecas@gmail.com> PR-URL: https://github.com/nodejs/node/pull/55104 Refs: https://github.com/nodejs/node/pull/54880 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/55104 Refs: https://github.com/nodejs/node/pull/54880 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> -------------------------------------------------------------------------------- ℹ This PR was created on Tue, 24 Sep 2024 16:11:00 GMT ✔ Approvals: 2 ✔ - Matteo Collina (@mcollina) (TSC): https://github.com/nodejs/node/pull/55104#pullrequestreview-2327733103 ✔ - Joyee Cheung (@joyeecheung) (TSC): https://github.com/nodejs/node/pull/55104#pullrequestreview-2328639766 ✘ Last GitHub CI failed ℹ Last Full PR CI on 2024-09-26T08:31:26Z: https://ci.nodejs.org/job/node-test-pull-request/62782/ - Querying data for job/node-test-pull-request/62782/ ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/11056331072 |
Sorry, something went wrong.
|
I had to remove from v22.x-staging because it failed in GitHub CI (I think I didn't catch it because make test doesn't run pummel tests?): |
Sorry, something went wrong.
PR-URL: nodejs#55104 Refs: nodejs#54880 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
| Back | FazBrowse Home | New Git URL |
Since BaseObjects are internal structs, use a linked list to efficiently
maintain the tracking list. This also makes iterating BaseObject list
efficient as it no longer needs to compare the BaseObject::DeleteMe
cleanup callback.
Refs: #54880