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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-09-18Merge remote-tracking branch 'upstream/master' into bump-corertNiklas Therning
2018-09-18Merge pull request #6342 from dotnet/nmirrorJan Kotas
Merge nmirror to master
2018-09-18* Revert the changes to TryInsert() introduced by ↵dotnet-bot
https://github.com/dotnet/coreclr/pull/17096 completely, which only showed modest size improvement * Removing the _version increment from Clear() entirely to bring it in line with the behavior in Remove() and to keep size gains [tfs-changeset: 1714543]
2018-09-18Fix inconsistent Intel hardware intrinsic APIsFei Peng
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-17System.Private.CoreLib: Move ResoureReader/ResourceSet to shared. (#19994)Filip Navara
* Move ResoureReader/ResourceSet to shared. * Remove unnecessary cast to RuntimeType from ResoureReader. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-17Fixed TimeoutHelper typos (dotnet/coreclr#19956)Joseph Musser
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-17Fixed typo ‘defualt’ (#19955)Joseph Musser
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-17Update ChineseLunisolarCalendar.cs (dotnet/coreclr#19946)elyoh
Corrects an issue with the conversion table for Gregorian to Chinese lunisolar dates. See: #19480. Issue: data discrepancy in year 2057, 2089, and 2097. Table entry for these years have incorrect days per month for some months. See #19480 for full details. Notes The DaysPerMonth flag uses the binary literal for ease of readability. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-12Implement Thread.GetApartmentState/TrySetApartmentState (#6323)Jan Kotas
Fixes #5776
2018-09-12Revert changes that are causing buildbreaks of OOB packagesJan Kotas
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-12CallSites for MemoryExtensions.Contains (CoreCLR) (dotnet/coreclr#19874)Grant
* Update additional callsites for MemoryExtensions.Contains * One more callsite * More callsites * CR fixes Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-11Move more registry files to shared partitionJan Kotas
2018-09-11Move registry interop to shared CoreLib partition (dotnet/coreclr#19886)Jan Kotas
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-10Fix multiple typos in the EventSource.cs design comment.vitek-karas
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-10Merge pull request #6311 from dotnet/nmirrorJan Kotas
Merge nmirror to master
2018-09-08ToPointerFix - VS debugger needs the ToPointer() methods to inspect a ↵Andrew Au
pointer, marking it as DependencyReductionRoot to make sure it is not optimized away. [tfs-changeset: 1713493]
2018-09-08MemoryExtensions.Contains (dotnet/coreclr#19863)Grant
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-07Updating Number.Formatting to properly print -0Tanner Gooding
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-06Add managed non-const fall-back for AVX2 gather intrinsicFei Peng
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-06Rename CarryLessMultiply to CarrylessMultiplyFei Peng
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-05Fix ServiceController name population perf (dotnet/corefx#32072)Dan Moseley
* Fix ServiceController name population perf * Split tests * Remove dead field * Remove new use of DangerousGetHandle * SafeHandle all the things! * VSB #1 * VSB #2 * Fix GLE * Initialize machineName in ctor * Test for empty name ex * Null names * Inadvertent edit * Unix build * Move interop into class * Reverse SafeHandle for HAllocGlobal * Fix tests * Disable test for NETFX * CR feedback * Pattern matching on VSB * Direct call * typo Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-05Virtual AttributeType property and signature generic types (#19818)Atsushi Kanamori
* Virtual AttributeType property and signature generic types https://github.com/dotnet/corefx/issues/31614 1. This will allow Reflection providers the option to supply the attribute type without building an entire constructor. https://github.com/dotnet/corefx/issues/31798 2. This will permit other Reflection providers to support Type.MakeGenericMethodParameter() in their implementations. * More robust argument validation. * Change parameter name Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-09-04Fix UAP build break (#6287)Michal Strehovský
Kick registry related files out of UAP builds.
2018-08-31Revert "Remove not necessary type forwarded from attributes when type comes ↵Santiago Fernandez Madero
from mscorlib in netfx" (#19784) This reverts commit 4fb001d431e0f44df15709f02f776e565fec14c7. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-31IndexOf(char, Ordinal) use fast path (dotnet/coreclr#19788)Ben Adams
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-31Fix build break in CoreRT/ProjectNJan Kotas
2018-08-31Remove not necessary type forwarded from attributes when type comes from ↵Santiago Fernandez Madero
mscorlib in netfx Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-31Review feedbackVance Morrison
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-31Fixed from testingVance Morrison
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-31fix spellingVance Morrison
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-31Add try-catchVance Morrison
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-31Fix for passing enums to EventSources based on unsigned types.Vance Morrison
See https://github.com/dotnet/coreclr/issues/19204 Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-27Using shared copy of registryvalueKind (dotnet/corefx#31922)Anirudh Agnihotry
* using local copy of registryvaluekind and advapi32 * Moving complete file to shared * name changed Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-25Fix FileStream in WinRT build (dotnet/coreclr#19659)Jeremy Kuhne
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-25Workaround to remove unnecessary bounds checks when using ↵Ahson Khan
{ReadOnly}Span.IsEmpty (#19640) Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-24Fix base types of second paramters used in Avx.PermuteVar and ↵Jacek Blaszczynski
Avx2.Permute4x64 for float, double overloads Fixes #19579 Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-23Make sure RuntimeEventSource is passed to EventListener.OnEventSourceCreated ↵Brian Robbins
(#19393) Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-22AesGcm, AesCcm (dotnet/corefx#31389)Krzysztof Wicher
* AesGcm, AesCcm * add osx stubs * disable tests on osx and desktop (APIs not there/not supported) * TagByteSizes on OSX * fix TagByteSizes compilation error * apply review feedback * fix typo when setting tag/nonce length in ccm * add missing SetCcmTagLength * attempt to detect if ccm is available on Ubuntu 14.04 * disable tests on ubuntu 14.04, attempt for osx support * attempt to fix osx * fix osx * review feedback * disable new ccm testcases on ubuntu 14.04 * attempt to make Ubuntu 14.04 work * add Interop.Initialization to OSX * fix KeySizeHelpers after merge conflict Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-21Normalize whitespace/indentationClinton Ingram
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-21Update t4 templates to generate simplified type namesClinton Ingram
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-21Mark some readonly fields readonly (dotnet/coreclr#19559)Ben Adams
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-21Optimize number formatting (dotnet/coreclr#19551)Pent Ploompuu
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-21Mark more structs as readonly (dotnet/coreclr#19557)Ben Adams
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-21Make DateTimeOffset a readonly struct (dotnet/coreclr#19552)Ben Adams
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-17Moved registry.cs to shared (dotnet/coreclr#19471)Anirudh Agnihotry
* moved registry to shared * using corefx version * set value added Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-17Optimize NumberBufferToDecimal (dotnet/coreclr#19072)Pent Ploompuu
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-16Make file handle checks accurate on Windows (dotnet/coreclr#19508)Jeremy Kuhne
* Make handle checks accurate on Windows We can actually check the async state of a handle on Windows, so check directly when we have the API available. Also allow all filetypes through when explicitly using extended syntax `\\?\` . * Fix nits * Don't throw in the handle constructor overloads * Whoops * Removing the close handle entirely. No adverse effects from closing a bad handle- or leaving it open for that matter. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-16Update JapaneseLunisolarCalendar.cs (dotnet/coreclr#19504)elyoh
Corrects an issue with the conversion table for Gregorian to Japanese lunisolar dates. See: #19450. Issue: data discrepancy in year 1962. Table entry for 1962 has incorrect days per month for months 6 and 7. Notes The DaysPerMonth flag uses the binary literal for ease of readability. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-15Add TypeConverter fallback to DefaultValueAttribute (dotnet/coreclr#19354)Marco Rossignoli
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
2018-08-13Remove unused local from List<T>.RemoveRange (dotnet/corefx#31727)Robin Sue
`int i` appears to be unused so i removed it. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>