Skip to content
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

Merge main to VBOverloadResolutionPriority #75876

Merged
merged 25 commits into from
Nov 12, 2024

Commits on Apr 3, 2022

  1. Configuration menu
    Copy the full SHA
    5c5f8a6 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2022

  1. Add four spaces

    Youssef1313 committed Jun 23, 2022
    Configuration menu
    Copy the full SHA
    658a8d5 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2024

  1. Configuration menu
    Copy the full SHA
    66a0c72 View commit details
    Browse the repository at this point in the history
  2. Share fixer

    CyrusNajmabadi committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    af475f1 View commit details
    Browse the repository at this point in the history
  3. Update tests

    CyrusNajmabadi committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    eff1394 View commit details
    Browse the repository at this point in the history
  4. Add test

    CyrusNajmabadi committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    ad7f251 View commit details
    Browse the repository at this point in the history
  5. Work item

    CyrusNajmabadi committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    fcaaaf6 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2024

  1. Move HasHome out of Binder (#75851)

    * Move HasHome out of Binder
    
    * Fixup references
    
    * Add a comment
    jjonescz authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    62fc746 View commit details
    Browse the repository at this point in the history
  2. Update structured logger (#75865)

    Upgrade to latest structured logger binaries and see if that addresses the failure to read binary logs.
    jaredpar authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    5780d35 View commit details
    Browse the repository at this point in the history
  3. Make VBCSCompiler pipe name insensitive to casing of the path (#75852)

    * Make VBCSCompiler pipe name insensitive to casing of the path
    
    * Improve comment wording
    
    Co-authored-by: Jared Parsons <[email protected]>
    
    ---------
    
    Co-authored-by: Jared Parsons <[email protected]>
    jjonescz and jaredpar authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    d3176f5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c576a3b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    83480ec View commit details
    Browse the repository at this point in the history
  6. Wrap types

    CyrusNajmabadi committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    6a24d0c View commit details
    Browse the repository at this point in the history
  7. Add tests

    CyrusNajmabadi committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    002f3bf View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fa02ecd View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    e0f7781 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    6f02ad9 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    9980db3 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    84e2b49 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    d1f0374 View commit details
    Browse the repository at this point in the history
  14. Editor

    tmat committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    f155e6b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    9b88f4f View commit details
    Browse the repository at this point in the history
  16. Change tagging to free a SegmentedList back to a pool (#75873)

    The GetTags calls into our taggers require passing back an IEnumerable. Previously, we created a SegmentedList to hold all the data and then passed that back. However, that suffers from not being able to add back the returned list into a pool. Instead, switch to using yield return over the populated segmented list as that will allow the list to be freed back to the pool upon completion.
    
    Utilizing the yield state machinery does incur an allocation, but this should be a much smaller allocation than the potentially very large arrays that our taggers were returning.
    ToddGrun authored Nov 12, 2024
    Configuration menu
    Copy the full SHA
    856a1a2 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    3b99be5 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    30f5e30 View commit details
    Browse the repository at this point in the history