6 references to StableStartTimeMatchTolerance
Aspire.Hosting (5)
src\Shared\ProcessStartTimeHelper.cs (5)
24
/// <see cref="
StableStartTimeMatchTolerance
"/>.
135
/// <param name="tolerance">Allowed difference between the expected and observed start time. Defaults to <see cref="
StableStartTimeMatchTolerance
"/>.</param>
289
/// process. Defaults to <see cref="
StableStartTimeMatchTolerance
"/> so a within-tick rounding
295
/// <param name="tolerance">Optional allowed difference; defaults to <see cref="
StableStartTimeMatchTolerance
"/>.</param>
298
var toleranceMilliseconds = (long)(tolerance ??
StableStartTimeMatchTolerance
).TotalMilliseconds;
Aspire.Hosting.Tests (1)
Cli\ProcessStartTimeHelperTests.cs (1)
189
Assert.Equal(TimeSpan.FromMilliseconds(20), ProcessStartTimeHelper.
StableStartTimeMatchTolerance
);