1. 09 12月, 2015 1 次提交
  2. 08 12月, 2015 1 次提交
  3. 06 12月, 2015 1 次提交
  4. 03 12月, 2015 3 次提交
  5. 02 12月, 2015 2 次提交
  6. 27 11月, 2015 3 次提交
  7. 25 11月, 2015 1 次提交
    • R
      [corlib] Re-introduce Thread.Abort/Suspend/Resume, but make them throw... · 50791d90
      Rolf Bjarne Kvinge 提交于
      [corlib] Re-introduce Thread.Abort/Suspend/Resume, but make them throw NotSupportedException instead.
      
      Re-introduce Thread.Abort/Suspend/Resume so that we don't have to
      create separate PCL profiles.
      
      Instead make them throw a NotSupportedException, and add an
      [Obsolete (error: true)] attribute so that these methods can't
      be used from source.
      50791d90
  8. 21 11月, 2015 1 次提交
  9. 20 11月, 2015 1 次提交
  10. 19 11月, 2015 3 次提交
  11. 18 11月, 2015 1 次提交
  12. 17 11月, 2015 2 次提交
  13. 15 11月, 2015 1 次提交
  14. 13 11月, 2015 4 次提交
    • M
      [corlib] Fixes TimeZoneInfo.ParseTZBuffer abbrevs. · 54d3309f
      Marcos Henrich 提交于
      Context: https://bugzilla.xamarin.com/show_bug.cgi?id=31432
      
      In a few android devices TimeZoneInfo.ParseTZBuffer was failing ito
      parse Europe/Moscow with:
      at System.ThrowHelper.ThrowKeyNotFoundException ()
      at System.Collections.Generic.Dictionary`2[System.Int32,System.String].get_Item (Int32 key)mscorlib/system/collections/generic/dictionary.cs:176
      at System.TimeZoneInfo.ParseTimesTypes (System.Byte[] buffer, Int32 index, Int32 count, System.Collections.Generic.Dictionary`2 abbreviations) [0x0002f] in mcs/class/corlib/System/TimeZoneInfo.cs:1293
      at System.TimeZoneInfo.ParseTZBuffer (System.String id, System.Byte[] buffer, Int32 length)
      
      It was failing while getting the third index [3] from] from abbrevs.
      
      abbrevs added values were the following:
      [0, MMT]
      [1, MT]
      [2, T]
      [4, MST]
      [5, ST]
      [6, T]
      [8, MDST]
      [9, DST]
      [10, ST]
      [11, T]
      [13, S]
      [15, M]
      [17, MSK]
      [18, SK]
      [19, K]
      [21, EET]
      [22, ET]
      [23, T]
      [25, MSD]
      [26, SD]
      [27, D]
      [29, EEST]
      [30, EST]
      [31, ST]
      [32, T]
      
      Index 3 was not added because its values is an empty string, as indexes
      with empty values are used in this case we are now adding them to the
      abbrevs dictionary.
      
      Fixes #31432
      54d3309f
    • M
      [corlib] Tests TimeZoneInfo.ParseTZBuffer · 1ca88f95
      Marcos Henrich 提交于
      Context: https://bugzilla.xamarin.com/show_bug.cgi?id=31432
      
      Tests TimeZoneInfo.ParseTZBuffer with Europe/Moscow data that thrown
      at System.ThrowHelper.ThrowKeyNotFoundException ()
      at System.Collections.Generic.Dictionary`2[System.Int32,System.String].get_Item (Int32 key)mscorlib/system/collections/generic/dictionary.cs:176
      at System.TimeZoneInfo.ParseTimesTypes (System.Byte[] buffer, Int32 index, Int32 count, System.Collections.Generic.Dictionary`2 abbreviations) [0x0002f] in mcs/class/corlib/System/TimeZoneInfo.cs:1293
      at System.TimeZoneInfo.ParseTZBuffer (System.String id, System.Byte[] buffer, Int32 length)
      1ca88f95
    • L
      [IO] Dump handle when we run out of them · e389dac6
      Ludovic Henry 提交于
      When running out of handle, it's hard to know exactly why. Dumping them
      will help troubleshoot handle leaks.
      e389dac6
    • M
  15. 12 11月, 2015 2 次提交
  16. 11 11月, 2015 2 次提交
  17. 10 11月, 2015 1 次提交
  18. 02 11月, 2015 1 次提交
  19. 30 10月, 2015 1 次提交
    • L
      [tests] Adjust MathTest double epsilon value · 5fb2e37f
      Ludovic Henry 提交于
      The double.Epsilon value represent the smallest value that double is
      able to represent. And that is diferent from the machine epsilon, which
      is the smallest difference between two double values.
      
      The second is equal to 2 ^ (-52), because there are 52bits to
      represent the mantissa in a IEEE 754 double.
      5fb2e37f
  20. 29 10月, 2015 1 次提交
  21. 28 10月, 2015 1 次提交
  22. 24 10月, 2015 1 次提交
  23. 23 10月, 2015 1 次提交
  24. 22 10月, 2015 4 次提交