Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-20[corlib] BinaryReader with Unicode encoding needs to read bytes in a pair. ↵mono-4.0.1.44Marek Safar
Fixes #30171
2015-05-07Add a monotouch_runtime corlib sources.mono-4.0.1.28Rolf Bjarne Kvinge
2015-04-27[corlib] First specific culture returned by enumerator was not fully ↵Marek Safar
initialized. Fixes #29039
2015-04-25[corlib] Add DefaultDllImportSearchPathsAttributeMarek Safar
2015-04-04[corlib] TimeZoneInfo.TryAddTicks is now private.Marcos Henrich
2015-04-03[corlib] Refactored TimeZoneInfo DateTime overflow checks.Marcos Henrich
Added more overflow checks. Fixed some overflow checks.
2015-04-03[corlib] Fixed ParseTZBuffer with DST periods longer than a year.Marcos Henrich
AdjustmentRule specifies a DST period that starts and ends within a year. When we have a DST period longer than a year, the generated AdjustmentRule may not be usable. Thus we fallback to the transitions. Fixes #24086.
2015-04-03[corlib] Removed referencesource duplicated code.Marcos Henrich
2015-04-03[corlib] Renamed GetUtcOffset to GetUtcOffsetHelper.Marcos Henrich
The new name is to avoid using the helper method instead of GetUtcOffset.
2015-04-03[corlib] Changed TimeZoneInfo methods to use GetUtcOffset.Marcos Henrich
In some cases rules are not available so we use GetUtcOffset instead of GetApplicableRule.
2015-04-01[tests] ManualResetEventSlim.SpinCount depends on the number of CPU/cores ↵Sebastien Pouliot
and we can't assume everything as multiple CPU/cores [#28611]
2015-03-25[runtime] Avoid returning null from Marshal.AllocCoTaskMem () if size is 0. ↵Zoltan Varga
Fixes #28383.
2015-03-24[tests] Tweak DateTime.AddMillisecondsOutOfRangeException* tests to work on ↵Sebastien Pouliot
ARM [#28311]
2015-03-20[tests] Some of the new decimal tests (ported from MS tests) do not work on ↵Sebastien Pouliot
every culture, this set one that works for them
2015-03-12[corlib] TimeZoneInfo.TryGetTransitionOffset overflow checks.Marcos Henrich
2015-03-12[corlib] Fixed DateTime overflow check in TimeZoneInfo.Marcos Henrich
2015-03-10[corlib] Fix timezone dependent DateTimeOffset testAlexander Köplinger
Instead of trying to recreate the date with the current timezone, we should make the date assume UTC and compare against that.
2015-02-26Ignore a few decimal tests on mobile, according to #27269Rolf Bjarne Kvinge
https://bugzilla.xamarin.com/show_bug.cgi?id=27269
2015-02-24[bcl] Fix Console support on ios, the TextWriter class from the reference ↵Zoltan Varga
sources called TextWriter:Write(char), so stdout was never flushed.
2015-02-20[corlib] Fixes build with old UnmanagedMemoryStreamMarek Safar
2015-02-20[corlib] Remove ResourceCloseHandler usageMarek Safar
2015-02-20[corlib] Add more internal apisMarek Safar
2015-02-20Use more resource text strings from reference sourcesMarek Safar
2015-02-20[corlib] Switch to official mscorlib.txtMarek Safar
2015-02-19[tpl] Increase wait timing in test suite to adapt to the slower ramp up of ↵Ludovic Henry
the ThreadPool
2015-02-19[corlib] BufferedStream from reference sourcesMarek Safar
2015-02-19Add ReferenceSources/mscorlib.txt to EXTRA_DIST (fixes distcheck)Jo Shields
2015-02-19[corlib] Text streams from reference sourcesMarek Safar
2015-02-19[corlib] Use public TextWriter.Synchronized for Console synchronization and ↵Marek Safar
leave stream closing handling to underlying stream
2015-02-19[corlib] Stream, MemoryStream from reference sourcesMarek Safar
2015-02-19[corlib] Access null stream using public propertyMarek Safar
2015-02-19[corlib] Rename IsDirectorySeparator method to match reference sourcesMarek Safar
2015-02-18[corlib] Removes extra bufffer from FileStream async mode writes. Fixes #27086Marek Safar
2015-02-17[build] Remove misused bootstrap profile definitionMarek Safar
2015-02-17[corlib] Remove duplicate source filesMarek Safar
2015-02-17[corlib] Replace resource keys with actual messages during compilationMarek Safar
2015-02-17Bug 27010 - Difference in Assembly.GetExportedTypes with .NETUngureanu Marius
2015-02-16Merge branch 'import-text-encoding-2'Atsushi Eno
2015-02-13[corlib] Random from reference sourcesMarek Safar
2015-02-13[corlib] MissingMember exceptions from reference sourcesMarek Safar
2015-02-13[corlib] UnitySerialization from reference sourcesMarek Safar
2015-02-13avoid reflection in EncodingHelper.Atsushi Eno
as per https://github.com/mono/mono/pull/1566#discussion_r24653304
2015-02-13[encoding] import referencesource encoding foundation types.Atsushi Eno
This change does not involve Windows-specific NLS-based encodings. We will be still using I18N assemblies until we make more grand design changes (Xamarin products premise those assemblies). This also fixes bug #23771 and probably more.
2015-02-13[corlib] Fix a race in LazyTest.EnsureSingleThreadSafeExecution ().Zoltan Varga
2015-02-12[encoding] as part of referencesource import, use new EncodingHelper class.Atsushi Eno
This will remain after importing referencesource and offer mono-only internals for some classes. This involves icall (owner class) change.
2015-02-12Merge pull request #1534 from haf/bugs/hmac-wrong-keysizesJoão Matos
Bugs/hmac wrong keysizes
2015-02-12[corlib] Add timeout to more testsMarek Safar
2015-02-12[corlib] Fixes commit ceef1e2.Marcos Henrich
We want to remove the module check from GetMethodToken not SetUserEntryPoint.
2015-02-11Merge pull request #1560 from esdrubal/xlstregressionMarek Safar
[corlib] ModuleBuilder.GetMethodToken no longer has a module check.
2015-02-11[corlib] ModuleBuilder.GetMethodToken no longer has a module check.Marcos Henrich
.NET implementation is able to get method tokens from other modules. This was causing a regression on a System.Xml.Xsl.XslTransformTests.Bug487065 while using referencesource's System.Xml implementation.