From: Levi Broderick Date: Wed, 11 Nov 2020 21:03:43 +0000 (-0800) Subject: Convert aka.ms links to https (#44501) X-Git-Tag: submit/tizen/20210909.063632~4670 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f56a56f90ff9124c85e4d889faeeca0824d2d437;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Convert aka.ms links to https (#44501) --- diff --git a/docs/coding-guidelines/adding-api-guidelines.md b/docs/coding-guidelines/adding-api-guidelines.md index b9eba22..f6014fd 100644 --- a/docs/coding-guidelines/adding-api-guidelines.md +++ b/docs/coding-guidelines/adding-api-guidelines.md @@ -15,7 +15,7 @@ Recommended reading to better understand this document: ### Determine what library -- Propose a library for exposing it as part of the [API review process](http://aka.ms/apireview). +- Propose a library for exposing it as part of the [API review process](https://aka.ms/apireview). - Keep in mind the API might be exposed in a reference assembly that doesn't match the identity of the implementation. There are many reasons for this but the primary reason is to abstract the runtime assembly identities across diff --git a/docs/project/api-review-process.md b/docs/project/api-review-process.md index e958896..4773d06 100644 --- a/docs/project/api-review-process.md +++ b/docs/project/api-review-process.md @@ -42,7 +42,7 @@ APIs and some code samples that show how it should be used. If changes are neces There are three methods to get an API review: -* **Get into the backlog**. Generally speaking, filing an issue in `dotnet/runtime` and applying the label `api-ready-for-review` on it will make your issue show up during API reviews. The downside is that we generally walk the backlog oldest-newest, so your issue might not be looked at for a while. Progress of issues can be tracked via http://aka.ms/ready-for-api-review. +* **Get into the backlog**. Generally speaking, filing an issue in `dotnet/runtime` and applying the label `api-ready-for-review` on it will make your issue show up during API reviews. The downside is that we generally walk the backlog oldest-newest, so your issue might not be looked at for a while. Progress of issues can be tracked via https://aka.ms/ready-for-api-review. * **Fast track**. If you need to bypass the backlog apply both `api-ready-for-review` and `blocking`. All blocking issues are looked at before we walk the backlog. * **Dedicated review**. This only applies to area owners. If an issue you are the area owner for needs an hour or longer, send an email to FXDC and we book dedicated time. Rule of thumb: if the API proposal has more than a dozen APIs and/or the APIs have complex policy, then you need 60 min or more. When in doubt, send mail to FXDC. diff --git a/docs/project/linux-performance-tracing.md b/docs/project/linux-performance-tracing.md index ff70c26..720c54c 100644 --- a/docs/project/linux-performance-tracing.md +++ b/docs/project/linux-performance-tracing.md @@ -19,9 +19,9 @@ CoreCLR supports two different mechanisms for tracing .NET applications on Linux ## Required Tools ## - **perfcollect**: Bash script that automates data collection. - - Available at . + - Available at . - **PerfView**: Windows-based performance tool that can also analyze trace files collected with Perfcollect. - - Available at . + - Available at . ## Preparing Your Machine ## Follow these steps to prepare your machine to collect a performance trace. @@ -29,7 +29,7 @@ Follow these steps to prepare your machine to collect a performance trace. 1. Download Perfcollect. > ```bash - > curl -OL http://aka.ms/perfcollect + > curl -OL https://aka.ms/perfcollect > ``` 2. Make the script executable. @@ -212,7 +212,7 @@ Traces are best viewed using PerfView on Windows. Note that we're currently loo ### Open the Trace File ### 1. Copy the trace.zip file from Linux to a Windows machine. -2. Download PerfView from . +2. Download PerfView from . 3. Run PerfView.exe > ```cmd @@ -269,7 +269,7 @@ dotnet-trace collect --process-id ``` ## Viewing the Trace ## -The resulting trace can be viewed in [PerfView](http://aka.ms/perfview) on Windows. Alternatively on Linux/macOS, it can be viewed on [SpeedScope](https://speedscope.app) if you convert the trace format to speedscope by passing `--format speedscope` argument when collecting the trace. +The resulting trace can be viewed in [PerfView](https://aka.ms/perfview) on Windows. Alternatively on Linux/macOS, it can be viewed on [SpeedScope](https://speedscope.app) if you convert the trace format to speedscope by passing `--format speedscope` argument when collecting the trace. ## More Information ## To read more about how to use dotnet-trace, please refer to the [dotnet-trace documentation](https://github.com/dotnet/diagnostics/blob/master/documentation/dotnet-trace-instructions.md). diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/GC.cs b/src/coreclr/src/System.Private.CoreLib/src/System/GC.cs index d932d18..bcbf042 100644 --- a/src/coreclr/src/System.Private.CoreLib/src/System/GC.cs +++ b/src/coreclr/src/System.Private.CoreLib/src/System/GC.cs @@ -485,7 +485,7 @@ namespace System throw new InvalidOperationException("The NoGCRegion mode was already in progress"); case StartNoGCRegionStatus.AmountTooLarge: throw new ArgumentOutOfRangeException(nameof(totalSize), - "totalSize is too large. For more information about setting the maximum size, see \"Latency Modes\" in http://go.microsoft.com/fwlink/?LinkId=522706"); + "totalSize is too large. For more information about setting the maximum size, see \"Latency Modes\" in https://go.microsoft.com/fwlink/?LinkId=522706"); } Debug.Assert(status == StartNoGCRegionStatus.Succeeded); diff --git a/src/coreclr/src/System.Private.CoreLib/src/System/Threading/Overlapped.cs b/src/coreclr/src/System.Private.CoreLib/src/System/Threading/Overlapped.cs index e84d962..7289543 100644 --- a/src/coreclr/src/System.Private.CoreLib/src/System/Threading/Overlapped.cs +++ b/src/coreclr/src/System.Private.CoreLib/src/System/Threading/Overlapped.cs @@ -169,7 +169,7 @@ namespace System.Threading _overlappedData._asyncResult = ar; } - [Obsolete("This constructor is not 64-bit compatible. Use the constructor that takes an IntPtr for the event handle. http://go.microsoft.com/fwlink/?linkid=14202")] + [Obsolete("This constructor is not 64-bit compatible. Use the constructor that takes an IntPtr for the event handle. https://go.microsoft.com/fwlink/?linkid=14202")] public Overlapped(int offsetLo, int offsetHi, int hEvent, IAsyncResult? ar) : this(offsetLo, offsetHi, new IntPtr(hEvent), ar) { } @@ -192,7 +192,7 @@ namespace System.Threading set => _overlappedData!.OffsetHigh = value; } - [Obsolete("This property is not 64-bit compatible. Use EventHandleIntPtr instead. http://go.microsoft.com/fwlink/?linkid=14202")] + [Obsolete("This property is not 64-bit compatible. Use EventHandleIntPtr instead. https://go.microsoft.com/fwlink/?linkid=14202")] public int EventHandle { get => EventHandleIntPtr.ToInt32(); @@ -210,7 +210,7 @@ namespace System.Threading * Roots the iocb and stores it in the ReservedCOR field of native Overlapped * Pins the native Overlapped struct and returns the pinned index. ====================================================================*/ - [Obsolete("This method is not safe. Use Pack (iocb, userData) instead. http://go.microsoft.com/fwlink/?linkid=14202")] + [Obsolete("This method is not safe. Use Pack (iocb, userData) instead. https://go.microsoft.com/fwlink/?linkid=14202")] [CLSCompliant(false)] public unsafe NativeOverlapped* Pack(IOCompletionCallback? iocb) { @@ -223,7 +223,7 @@ namespace System.Threading return _overlappedData!.Pack(iocb, userData); } - [Obsolete("This method is not safe. Use UnsafePack (iocb, userData) instead. http://go.microsoft.com/fwlink/?linkid=14202")] + [Obsolete("This method is not safe. Use UnsafePack (iocb, userData) instead. https://go.microsoft.com/fwlink/?linkid=14202")] [CLSCompliant(false)] public unsafe NativeOverlapped* UnsafePack(IOCompletionCallback? iocb) { diff --git a/src/coreclr/src/inc/ngen.h b/src/coreclr/src/inc/ngen.h index 9e63b30..3f8f5aa 100644 --- a/src/coreclr/src/inc/ngen.h +++ b/src/coreclr/src/inc/ngen.h @@ -22,7 +22,7 @@ // ngen events. (Roughly 200KB of space including secondary log file.) #define DEFAULT_APPLOCAL_WIDE_LOG_SIZE (100*1024) -#define NGEN_LOG_HEADER_TEXT W("To learn about increasing the verbosity of the NGen log files please see http://go.microsoft.com/fwlink/?linkid=210113\r\n") +#define NGEN_LOG_HEADER_TEXT W("To learn about increasing the verbosity of the NGen log files please see https://go.microsoft.com/fwlink/?linkid=210113\r\n") // supported debug info types enum DebugType diff --git a/src/libraries/Common/src/System/Net/Http/aspnetcore/SR.resx b/src/libraries/Common/src/System/Net/Http/aspnetcore/SR.resx index c6c8b9b..9c5ece6 100644 --- a/src/libraries/Common/src/System/Net/Http/aspnetcore/SR.resx +++ b/src/libraries/Common/src/System/Net/Http/aspnetcore/SR.resx @@ -160,7 +160,7 @@ Connection aborted by peer ({0}). - QUIC is not supported on this platform. See http://aka.ms/dotnetquic + QUIC is not supported on this platform. See https://aka.ms/dotnetquic Operation aborted. diff --git a/src/libraries/Common/tests/Resources/Strings.resx b/src/libraries/Common/tests/Resources/Strings.resx index 06f6019..a8749ad 100644 --- a/src/libraries/Common/tests/Resources/Strings.resx +++ b/src/libraries/Common/tests/Resources/Strings.resx @@ -199,7 +199,7 @@ Connection aborted by peer ({0}). - QUIC is not supported on this platform. See http://aka.ms/dotnetquic + QUIC is not supported on this platform. See https://aka.ms/dotnetquic Operation aborted. diff --git a/src/libraries/Microsoft.VisualBasic.Core/ref/Microsoft.VisualBasic.Core.cs b/src/libraries/Microsoft.VisualBasic.Core/ref/Microsoft.VisualBasic.Core.cs index f9270fa..ff0c35f 100644 --- a/src/libraries/Microsoft.VisualBasic.Core/ref/Microsoft.VisualBasic.Core.cs +++ b/src/libraries/Microsoft.VisualBasic.Core/ref/Microsoft.VisualBasic.Core.cs @@ -376,7 +376,7 @@ namespace Microsoft.VisualBasic public static void FilePut(int FileNumber, float Value, long RecordNumber = (long)-1) { } public static void FilePut(int FileNumber, string Value, long RecordNumber = (long)-1, bool StringIsFixedLength = false) { } public static void FilePut(int FileNumber, System.ValueType Value, long RecordNumber = (long)-1) { } - [System.ObsoleteAttribute("This member has been deprecated. Please use FilePutObject to write Object types, or coerce FileNumber and RecordNumber to Integer for writing non-Object types. http://go.microsoft.com/fwlink/?linkid=14202")] + [System.ObsoleteAttribute("This member has been deprecated. Please use FilePutObject to write Object types, or coerce FileNumber and RecordNumber to Integer for writing non-Object types. https://go.microsoft.com/fwlink/?linkid=14202")] public static void FilePut(object FileNumber, object Value, object RecordNumber) { } public static void FilePutObject(int FileNumber, object Value, long RecordNumber = (long)-1) { } public static void FileWidth(int FileNumber, int RecordWidth) { } diff --git a/src/libraries/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/FileSystem.vb b/src/libraries/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/FileSystem.vb index 7caadfb..a1939f1 100644 --- a/src/libraries/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/FileSystem.vb +++ b/src/libraries/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/FileSystem.vb @@ -719,7 +719,7 @@ Namespace Microsoft.VisualBasic End Try End Sub - + Public Sub FilePut(ByVal FileNumber As Object, ByVal Value As Object, Optional ByVal RecordNumber As Object = -1) Throw New ArgumentException(SR.UseFilePutObject) End Sub diff --git a/src/libraries/System.Net.Http/src/Resources/Strings.resx b/src/libraries/System.Net.Http/src/Resources/Strings.resx index a85ef7c..e97aec5 100644 --- a/src/libraries/System.Net.Http/src/Resources/Strings.resx +++ b/src/libraries/System.Net.Http/src/Resources/Strings.resx @@ -562,7 +562,7 @@ Connection aborted by peer ({0}). - QUIC is not supported on this platform. See http://aka.ms/dotnetquic + QUIC is not supported on this platform. See https://aka.ms/dotnetquic Operation aborted. diff --git a/src/libraries/System.Net.Quic/src/Resources/Strings.resx b/src/libraries/System.Net.Quic/src/Resources/Strings.resx index a4c46ca..0703551 100644 --- a/src/libraries/System.Net.Quic/src/Resources/Strings.resx +++ b/src/libraries/System.Net.Quic/src/Resources/Strings.resx @@ -121,7 +121,7 @@ Connection aborted by peer ({0}). - QUIC is not supported on this platform. See http://aka.ms/dotnetquic + QUIC is not supported on this platform. See https://aka.ms/dotnetquic Operation aborted. diff --git a/src/libraries/System.Private.CoreLib/src/Resources/Strings.resx b/src/libraries/System.Private.CoreLib/src/Resources/Strings.resx index 5b12e47..cd4d6a2 100644 --- a/src/libraries/System.Private.CoreLib/src/Resources/Strings.resx +++ b/src/libraries/System.Private.CoreLib/src/Resources/Strings.resx @@ -2819,7 +2819,7 @@ Delegates that are not of type MulticastDelegate may not be combined. - An assembly (probably "{1}") must be rewritten using the code contracts binary rewriter (CCRewrite) because it is calling Contract.{0} and the CONTRACTS_FULL symbol is defined. Remove any explicit definitions of the CONTRACTS_FULL symbol from your project and rebuild. CCRewrite can be downloaded from http://go.microsoft.com/fwlink/?LinkID=169180. \r\nAfter the rewriter is installed, it can be enabled in Visual Studio from the project's Properties page on the Code Contracts pane. Ensure that "Perform Runtime Contract Checking" is enabled, which will define CONTRACTS_FULL. + An assembly (probably "{1}") must be rewritten using the code contracts binary rewriter (CCRewrite) because it is calling Contract.{0} and the CONTRACTS_FULL symbol is defined. Remove any explicit definitions of the CONTRACTS_FULL symbol from your project and rebuild. CCRewrite can be downloaded from https://go.microsoft.com/fwlink/?LinkID=169180. \r\nAfter the rewriter is installed, it can be enabled in Visual Studio from the project's Properties page on the Code Contracts pane. Ensure that "Perform Runtime Contract Checking" is enabled, which will define CONTRACTS_FULL. This non-CLS method is not implemented. diff --git a/src/libraries/System.Private.Xml/src/Resources/Strings.resx b/src/libraries/System.Private.Xml/src/Resources/Strings.resx index 2384609..f8cf992 100644 --- a/src/libraries/System.Private.Xml/src/Resources/Strings.resx +++ b/src/libraries/System.Private.Xml/src/Resources/Strings.resx @@ -3343,7 +3343,7 @@ Array of type {0} is not supported. - Type '{0}' cannot be serialized by XmlSerializer, serialization code for the type is missing. Consult the SDK documentation for adding it as a root serialization type. http://go.microsoft.com/fwlink/?LinkId=613136 + Type '{0}' cannot be serialized by XmlSerializer, serialization code for the type is missing. Consult the SDK documentation for adding it as a root serialization type. https://go.microsoft.com/fwlink/?LinkId=613136 Uppercase-First sorting option is not supported. diff --git a/src/libraries/System.Security.Principal/ref/System.Security.Principal.Forwards.cs b/src/libraries/System.Security.Principal/ref/System.Security.Principal.Forwards.cs index 3d0adfb..eafe571 100644 --- a/src/libraries/System.Security.Principal/ref/System.Security.Principal.Forwards.cs +++ b/src/libraries/System.Security.Principal/ref/System.Security.Principal.Forwards.cs @@ -1,7 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // ------------------------------------------------------------------------------ -// Changes to this file must follow the http://aka.ms/api-review process. +// Changes to this file must follow the https://aka.ms/api-review process. // ------------------------------------------------------------------------------ [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Principal.IIdentity))] diff --git a/src/libraries/System.Xml.XmlSerializer/ref/System.Xml.XmlSerializer.Forwards.cs b/src/libraries/System.Xml.XmlSerializer/ref/System.Xml.XmlSerializer.Forwards.cs index 17d94a5..baf9521 100644 --- a/src/libraries/System.Xml.XmlSerializer/ref/System.Xml.XmlSerializer.Forwards.cs +++ b/src/libraries/System.Xml.XmlSerializer/ref/System.Xml.XmlSerializer.Forwards.cs @@ -1,7 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // ------------------------------------------------------------------------------ -// Changes to this file must follow the http://aka.ms/api-review process. +// Changes to this file must follow the https://aka.ms/api-review process. // ------------------------------------------------------------------------------ [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.IXmlSerializable))] diff --git a/src/mono/netcore/System.Private.CoreLib/src/System/Threading/Overlapped.cs b/src/mono/netcore/System.Private.CoreLib/src/System/Threading/Overlapped.cs index 8c4bb28..117e75c 100644 --- a/src/mono/netcore/System.Private.CoreLib/src/System/Threading/Overlapped.cs +++ b/src/mono/netcore/System.Private.CoreLib/src/System/Threading/Overlapped.cs @@ -224,7 +224,7 @@ namespace System.Threading _overlappedData.AsyncResult = ar; } - [Obsolete("This constructor is not 64-bit compatible. Use the constructor that takes an IntPtr for the event handle. http://go.microsoft.com/fwlink/?linkid=14202")] + [Obsolete("This constructor is not 64-bit compatible. Use the constructor that takes an IntPtr for the event handle. https://go.microsoft.com/fwlink/?linkid=14202")] public Overlapped(int offsetLo, int offsetHi, int hEvent, IAsyncResult? ar) : this(offsetLo, offsetHi, new IntPtr(hEvent), ar) { } @@ -247,7 +247,7 @@ namespace System.Threading set { _overlappedData.OffsetHigh = value; } } - [Obsolete("This property is not 64-bit compatible. Use EventHandleIntPtr instead. http://go.microsoft.com/fwlink/?linkid=14202")] + [Obsolete("This property is not 64-bit compatible. Use EventHandleIntPtr instead. https://go.microsoft.com/fwlink/?linkid=14202")] public int EventHandle { get { return EventHandleIntPtr.ToInt32(); } @@ -265,7 +265,7 @@ namespace System.Threading * Roots the iocb and stores it in the ReservedCOR field of native Overlapped * Pins the native Overlapped struct and returns the pinned index. ====================================================================*/ - [Obsolete("This method is not safe. Use Pack (iocb, userData) instead. http://go.microsoft.com/fwlink/?linkid=14202")] + [Obsolete("This method is not safe. Use Pack (iocb, userData) instead. https://go.microsoft.com/fwlink/?linkid=14202")] [CLSCompliant(false)] public unsafe NativeOverlapped* Pack(IOCompletionCallback? iocb) { @@ -278,7 +278,7 @@ namespace System.Threading return _overlappedData.Pack(iocb, userData); } - [Obsolete("This method is not safe. Use UnsafePack (iocb, userData) instead. http://go.microsoft.com/fwlink/?linkid=14202")] + [Obsolete("This method is not safe. Use UnsafePack (iocb, userData) instead. https://go.microsoft.com/fwlink/?linkid=14202")] [CLSCompliant(false)] public unsafe NativeOverlapped* UnsafePack(IOCompletionCallback? iocb) {