1. 20 2月, 2016 2 次提交
  2. 19 2月, 2016 10 次提交
  3. 18 2月, 2016 13 次提交
  4. 17 2月, 2016 12 次提交
  5. 16 2月, 2016 3 次提交
    • J
      Merge pull request #8669 from JohnHamby/IOpFriday · 5b7d263a
      John Hamby 提交于
      IOperation conditional access expression API change
      5b7d263a
    • J
      Renamed more VB private members that implement interface members using the... · 6bc77eaf
      John Hamby 提交于
      Renamed more VB private members that implement interface members using the convention of InterfaceName_MemberName.
      6bc77eaf
    • H
      turn off low latency mode when we hit low memory situation. · ed2e502e
      Heejae Chang 提交于
      the low latency mode is introduced in the early days of Roslyn to make sure we always hit 50ms typing responsive time in our own perf lab typing test.
      
      basically that mode prevent GC to get into most expensvie blocking gen 2 collection. which is nice most of time, but when we are under low memory sitatuion, not doing blocking gen 2 also means we don't do compact.
      
      and that I believe can cause us to be in a sitatuion such as https://github.com/dotnet/roslyn/issues/6802
      
      this basically let us turn that optimization off sacrifying keystroke responsiveness time to time to have more memory available to us.
      
      this mode is supposed to force blocking gen 2 collection when GC detects its own low memory condition, but that seems not consider when there is some free memory left but all those are fregmented.
      ed2e502e