Skip to content

Commit f56a56f

Browse files
Convert aka.ms links to https (dotnet#44501)
1 parent 1923bba commit f56a56f

File tree

17 files changed

+27
-27
lines changed

17 files changed

+27
-27
lines changed

docs/coding-guidelines/adding-api-guidelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Recommended reading to better understand this document:
1515

1616
### Determine what library
1717

18-
- Propose a library for exposing it as part of the [API review process](http://aka.ms/apireview).
18+
- Propose a library for exposing it as part of the [API review process](https://aka.ms/apireview).
1919
- Keep in mind the API might be exposed in a reference assembly that
2020
doesn't match the identity of the implementation. There are many reasons for this but
2121
the primary reason is to abstract the runtime assembly identities across

docs/project/api-review-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ APIs and some code samples that show how it should be used. If changes are neces
4242

4343
There are three methods to get an API review:
4444

45-
* **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.
45+
* **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.
4646
* **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.
4747
* **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.
4848

docs/project/linux-performance-tracing.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ CoreCLR supports two different mechanisms for tracing .NET applications on Linux
1919

2020
## Required Tools ##
2121
- **perfcollect**: Bash script that automates data collection.
22-
- Available at <http://aka.ms/perfcollect>.
22+
- Available at <https://aka.ms/perfcollect>.
2323
- **PerfView**: Windows-based performance tool that can also analyze trace files collected with Perfcollect.
24-
- Available at <http://aka.ms/perfview>.
24+
- Available at <https://aka.ms/perfview>.
2525

2626
## Preparing Your Machine ##
2727
Follow these steps to prepare your machine to collect a performance trace.
2828

2929
1. Download Perfcollect.
3030

3131
> ```bash
32-
> curl -OL http://aka.ms/perfcollect
32+
> curl -OL https://aka.ms/perfcollect
3333
> ```
3434

3535
2. Make the script executable.
@@ -212,7 +212,7 @@ Traces are best viewed using PerfView on Windows. Note that we're currently loo
212212
213213
### Open the Trace File ###
214214
1. Copy the trace.zip file from Linux to a Windows machine.
215-
2. Download PerfView from <http://aka.ms/perfview>.
215+
2. Download PerfView from <https://aka.ms/perfview>.
216216
3. Run PerfView.exe
217217
218218
> ```cmd
@@ -269,7 +269,7 @@ dotnet-trace collect --process-id <PID>
269269
```
270270
271271
## Viewing the Trace ##
272-
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.
272+
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.
273273
274274
## More Information ##
275275
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).

src/coreclr/src/System.Private.CoreLib/src/System/GC.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ private static bool StartNoGCRegionWorker(long totalSize, bool hasLohSize, long
485485
throw new InvalidOperationException("The NoGCRegion mode was already in progress");
486486
case StartNoGCRegionStatus.AmountTooLarge:
487487
throw new ArgumentOutOfRangeException(nameof(totalSize),
488-
"totalSize is too large. For more information about setting the maximum size, see \"Latency Modes\" in http://go.microsoft.com/fwlink/?LinkId=522706");
488+
"totalSize is too large. For more information about setting the maximum size, see \"Latency Modes\" in https://go.microsoft.com/fwlink/?LinkId=522706");
489489
}
490490

491491
Debug.Assert(status == StartNoGCRegionStatus.Succeeded);

src/coreclr/src/System.Private.CoreLib/src/System/Threading/Overlapped.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public Overlapped(int offsetLo, int offsetHi, IntPtr hEvent, IAsyncResult? ar) :
169169
_overlappedData._asyncResult = ar;
170170
}
171171

172-
[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")]
172+
[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")]
173173
public Overlapped(int offsetLo, int offsetHi, int hEvent, IAsyncResult? ar) : this(offsetLo, offsetHi, new IntPtr(hEvent), ar)
174174
{
175175
}
@@ -192,7 +192,7 @@ public int OffsetHigh
192192
set => _overlappedData!.OffsetHigh = value;
193193
}
194194

195-
[Obsolete("This property is not 64-bit compatible. Use EventHandleIntPtr instead. http://go.microsoft.com/fwlink/?linkid=14202")]
195+
[Obsolete("This property is not 64-bit compatible. Use EventHandleIntPtr instead. https://go.microsoft.com/fwlink/?linkid=14202")]
196196
public int EventHandle
197197
{
198198
get => EventHandleIntPtr.ToInt32();
@@ -210,7 +210,7 @@ public IntPtr EventHandleIntPtr
210210
* Roots the iocb and stores it in the ReservedCOR field of native Overlapped
211211
* Pins the native Overlapped struct and returns the pinned index.
212212
====================================================================*/
213-
[Obsolete("This method is not safe. Use Pack (iocb, userData) instead. http://go.microsoft.com/fwlink/?linkid=14202")]
213+
[Obsolete("This method is not safe. Use Pack (iocb, userData) instead. https://go.microsoft.com/fwlink/?linkid=14202")]
214214
[CLSCompliant(false)]
215215
public unsafe NativeOverlapped* Pack(IOCompletionCallback? iocb)
216216
{
@@ -223,7 +223,7 @@ public IntPtr EventHandleIntPtr
223223
return _overlappedData!.Pack(iocb, userData);
224224
}
225225

226-
[Obsolete("This method is not safe. Use UnsafePack (iocb, userData) instead. http://go.microsoft.com/fwlink/?linkid=14202")]
226+
[Obsolete("This method is not safe. Use UnsafePack (iocb, userData) instead. https://go.microsoft.com/fwlink/?linkid=14202")]
227227
[CLSCompliant(false)]
228228
public unsafe NativeOverlapped* UnsafePack(IOCompletionCallback? iocb)
229229
{

src/coreclr/src/inc/ngen.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// ngen events. (Roughly 200KB of space including secondary log file.)
2323
#define DEFAULT_APPLOCAL_WIDE_LOG_SIZE (100*1024)
2424

25-
#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")
25+
#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")
2626

2727
// supported debug info types
2828
enum DebugType

src/libraries/Common/src/System/Net/Http/aspnetcore/SR.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
<value>Connection aborted by peer ({0}).</value>
161161
</data>
162162
<data name="net_quic_notsupported" xml:space="preserve">
163-
<value>QUIC is not supported on this platform. See http://aka.ms/dotnetquic</value>
163+
<value>QUIC is not supported on this platform. See https://aka.ms/dotnetquic</value>
164164
</data>
165165
<data name="net_quic_operationaborted" xml:space="preserve">
166166
<value>Operation aborted.</value>

src/libraries/Common/tests/Resources/Strings.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@
199199
<value>Connection aborted by peer ({0}).</value>
200200
</data>
201201
<data name="net_quic_notsupported" xml:space="preserve">
202-
<value>QUIC is not supported on this platform. See http://aka.ms/dotnetquic</value>
202+
<value>QUIC is not supported on this platform. See https://aka.ms/dotnetquic</value>
203203
</data>
204204
<data name="net_quic_operationaborted" xml:space="preserve">
205205
<value>Operation aborted.</value>

src/libraries/Microsoft.VisualBasic.Core/ref/Microsoft.VisualBasic.Core.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ public static void FilePut(int FileNumber, long Value, long RecordNumber = (long
376376
public static void FilePut(int FileNumber, float Value, long RecordNumber = (long)-1) { }
377377
public static void FilePut(int FileNumber, string Value, long RecordNumber = (long)-1, bool StringIsFixedLength = false) { }
378378
public static void FilePut(int FileNumber, System.ValueType Value, long RecordNumber = (long)-1) { }
379-
[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")]
379+
[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")]
380380
public static void FilePut(object FileNumber, object Value, object RecordNumber) { }
381381
public static void FilePutObject(int FileNumber, object Value, long RecordNumber = (long)-1) { }
382382
public static void FileWidth(int FileNumber, int RecordWidth) { }

src/libraries/Microsoft.VisualBasic.Core/src/Microsoft/VisualBasic/FileSystem.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ Namespace Microsoft.VisualBasic
719719
End Try
720720
End Sub
721721

722-
<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")>
722+
<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")>
723723
Public Sub FilePut(ByVal FileNumber As Object, ByVal Value As Object, Optional ByVal RecordNumber As Object = -1)
724724
Throw New ArgumentException(SR.UseFilePutObject)
725725
End Sub

0 commit comments

Comments
 (0)