-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lib: support fs_event_wrap in the snapshot and load more modules eagerly #38737
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
So that they are included in the builtin snapshot
Now that more modules are included in the snapshot, it's not necessary to lazy load them anymore
github-actions
bot
added
lib / src
Issues and PRs related to general changes in the lib or src directory.
needs-ci
PRs that need a full CI run.
labels
May 19, 2021
joyeecheung
changed the title
lib: support fs_event_wrap in the snapshot and eagerly-load more modules
lib: support fs_event_wrap in the snapshot and load more modules eagerly
May 19, 2021
VoltrexKeyva
approved these changes
May 19, 2021
addaleax
approved these changes
May 19, 2021
joyeecheung
added a commit
that referenced
this pull request
May 27, 2021
PR-URL: #38737 Refs: #35711 Reviewed-By: Anna Henningsen <[email protected]>
joyeecheung
added a commit
that referenced
this pull request
May 27, 2021
So that they are included in the builtin snapshot PR-URL: #38737 Refs: #35711 Reviewed-By: Anna Henningsen <[email protected]>
joyeecheung
added a commit
that referenced
this pull request
May 27, 2021
Now that more modules are included in the snapshot, it's not necessary to lazy load them anymore PR-URL: #38737 Refs: #35711 Reviewed-By: Anna Henningsen <[email protected]>
Landed in b6471c9...a4ea9fc |
danielleadams
pushed a commit
that referenced
this pull request
May 31, 2021
PR-URL: #38737 Refs: #35711 Reviewed-By: Anna Henningsen <[email protected]>
danielleadams
pushed a commit
that referenced
this pull request
May 31, 2021
So that they are included in the builtin snapshot PR-URL: #38737 Refs: #35711 Reviewed-By: Anna Henningsen <[email protected]>
danielleadams
pushed a commit
that referenced
this pull request
May 31, 2021
Now that more modules are included in the snapshot, it's not necessary to lazy load them anymore PR-URL: #38737 Refs: #35711 Reviewed-By: Anna Henningsen <[email protected]>
Merged
Blocked on #32984. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Now that we support more modules in the snapshot, it's no longer necessary to lazy load them for speeding up startup.
Refs: #35711