Uh oh!
There was an error while loading. Please reload this page.
Prevent <> links to be interpreted for intra-doc links - #96187
Conversation
GuillaumeGomez
commented
Apr 18, 2022
I don't think it should have a noticeable impact on perf but better check it: @bors try @rust-timer queue |
rust-timer
commented
Apr 18, 2022
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
bors
commented
Apr 18, 2022
⌛ Trying commit 69bff8d9a6f729ec81d3e4284f17127d26e5655d with merge 60e35f84a244c676ef8161f5fc53872259f8dbb3... |
bors
commented
Apr 18, 2022
☀️ Try build successful - checks-actions |
rust-timer
commented
Apr 18, 2022
Queued 60e35f84a244c676ef8161f5fc53872259f8dbb3 with parent 0516711, future comparison URL. |
rust-timer
commented
Apr 18, 2022
Finished benchmarking commit (60e35f84a244c676ef8161f5fc53872259f8dbb3): comparison url. Summary:
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf. @bors rollup=never Footnotes |
GuillaumeGomez
commented
Apr 18, 2022
I didn't expect a regression that big... |
4222a13 to
1040c58CompareGuillaumeGomez
commented
Apr 18, 2022
Let's try with the condition in the @bors try @rust-timer queue |
rust-timer
commented
Apr 18, 2022
Awaiting bors try build completion. @rustbot label: +S-waiting-on-perf |
bors
commented
Apr 18, 2022
⌛ Trying commit 1040c582189442b34dd910e3cf560844ae53c76f with merge fd6020410eb7165c95aa6aa41447d02ee8d48051... |
petrochenkov
commented
Apr 18, 2022
The regressions are not in rustdoc, looks like random fluctuations. |
bors
commented
Apr 18, 2022
☀️ Try build successful - checks-actions |
rust-timer
commented
Apr 18, 2022
Queued fd6020410eb7165c95aa6aa41447d02ee8d48051 with parent 8305398, future comparison URL. |
rust-timer
commented
Apr 19, 2022
Finished benchmarking commit (fd6020410eb7165c95aa6aa41447d02ee8d48051): comparison url. Summary:
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf. Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @bors rollup=never Footnotes |
GuillaumeGomez
commented
Apr 19, 2022
No change. Well, let's go then... @bors r=notriddle |
bors
commented
Apr 19, 2022
📌 Commit 1040c582189442b34dd910e3cf560844ae53c76f has been approved by |
There was a problem hiding this comment.
| cratefnpotential_intra_doc_markdown_links(md:&str) -> Vec<MarkdownLink>{ | |
| cratefnintra_doc_markdown_links(md:&str) -> Vec<MarkdownLink>{ |
With #96135 preprocessing is done as a part of this function and all the returned links are indeed intra doc links.
There was a problem hiding this comment.
I'll keep the kind pattern matching but I'll remove the other changes.
bors
commented
Apr 20, 2022
☔ The latest upstream changes (presumably #96135) made this pull request unmergeable. Please resolve the merge conflicts. |
1040c58 to
33aee10Compare
This comment has been minimized.
This comment has been minimized.
33aee10 to
f988f86CompareGuillaumeGomez
commented
Apr 20, 2022
@bors r=notriddle |
bors
commented
Apr 20, 2022
📌 Commit f988f86 has been approved by |
bors
commented
Apr 20, 2022
bors
commented
Apr 20, 2022
☀️ Test successful - checks-actions |
rust-timer
commented
Apr 21, 2022
Finished benchmarking commit (879aff3): comparison url. Summary:
If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. @rustbot label: -perf-regression Footnotes |
As discussed in this thread. As mentioned, the intra-doc RFC states that
<>links shouldn't be potential intra-doc links: https://rust-lang.github.io/rfcs/1946-intra-rustdoc-links.html#no-autolinks-style.I renamed
markdown_linksintopotential_intra_doc_markdown_linksto make it more obvious what it's doing.cc @petrochenkov
r? @notriddle