44 references to PadRight
HttpStress (1)
Program.cs (1)
561
Console.Write("\t" + clientOperations[i].Item1.
PadRight
(30));
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (1)
MigrationsEndPointMiddleware.cs (1)
140
await response.WriteAsync(error.
PadRight
(513));
Microsoft.Build (1)
Evaluation\Expander\WellKnownFunctions.cs (1)
310
returnVal = text.
PadRight
(totalWidth);
Microsoft.Data.Analysis (2)
DataFrame.cs (2)
718
sb.Append(string.Format(Columns[i].Name.
PadRight
(padding)));
726
sb.Append((obj ?? "null").ToString().
PadRight
(padding));
Microsoft.DotNet.XUnitAssert.Tests (24)
AsyncCollectionAssertsTests.cs (24)
761
Environment.NewLine + "Expected: " + expectedType.
PadRight
(padding) + expectedDisplay +
762
Environment.NewLine + "Actual: " + actualType.
PadRight
(padding) + actualDisplay;
798
"Expected: " + expectedType.
PadRight
(padding) + "[1, 2, 3, 4, 5]" + Environment.NewLine +
799
"Actual: " + actualType.
PadRight
(padding) + "[1, 2, 3, 4, 5]" + Environment.NewLine +
879
"Expected: " + expectedType.
PadRight
(padding) + "[1, 2]" + Environment.NewLine +
880
"Actual: " + actualType.
PadRight
(padding) + "[1, 3]" + Environment.NewLine +
931
"Expected: " + expectedType.
PadRight
(padding) + "[EquatableObject { Char = 'a' }]" + Environment.NewLine +
932
"Actual: " + actualType.
PadRight
(padding) + "[EquatableObject { Char = 'b' }]" + Environment.NewLine +
971
"Expected: " + expectedType.
PadRight
(padding) + "[1, 2, 3, 4, 5]" + Environment.NewLine +
972
"Actual: " + actualType.
PadRight
(padding) + "[1, 2, 3, 4, 5]" + Environment.NewLine +
1032
"Expected: " + expectedType.
PadRight
(padding) + "[1, 2]" + Environment.NewLine +
1033
"Actual: " + actualType.
PadRight
(padding) + "[1, 3]" + Environment.NewLine +
1146
$"Expected: Not {expectedType.
PadRight
(padding)}[1, 2, 3, 4, 5, {ArgumentFormatter.Ellipsis}]" + Environment.NewLine +
1147
$"Actual: {actualType.
PadRight
(padding)}[1, 2, 3, 4, 5, {ArgumentFormatter.Ellipsis}]",
1196
"Expected: Not " + expectedType.
PadRight
(padding) + "[1, 2, 3, 4, 5]" + Environment.NewLine +
1197
"Actual: " + actualType.
PadRight
(padding) + "[0, 0, 0, 0, 0]",
1238
"Expected: Not " + expectedType.
PadRight
(padding) + "[1, 2]" + Environment.NewLine +
1239
"Actual: " + actualType.
PadRight
(padding) + "[1, 2]" + Environment.NewLine +
1279
"Expected: Not " + expectedType.
PadRight
(padding) + "[EquatableObject { Char = 'a' }]" + Environment.NewLine +
1280
"Actual: " + actualType.
PadRight
(padding) + "[EquatableObject { Char = 'a' }]",
1337
"Expected: Not " + expectedType.
PadRight
(padding) + "[1, 2, 3, 4, 5]" + Environment.NewLine +
1338
"Actual: " + actualType.
PadRight
(padding) + "[0, 0, 0, 0, 0]",
1365
"Expected: Not " + expectedType.
PadRight
(padding) + "[1, 2]" + Environment.NewLine +
1366
"Actual: " + actualType.
PadRight
(padding) + "[1, 2]" + Environment.NewLine +
Microsoft.ML.Data (3)
Evaluators\EvaluatorUtils.cs (3)
1547
sb.Append(string.Format("{0}{1}: ", weighted ? "Weighted " : "", metricNames[i]).
PadRight
(20));
1578
sb.Append($"{metrics[i].Name}: ".
PadRight
(20));
1580
weightedSb?.Append($"Weighted {weightedMetrics[i].Name}: ".
PadRight
(20));
Microsoft.ML.FastTree (4)
Utils\Timer.cs (4)
157
string padded = "Name".
PadRight
(MaxEventNameLen);
168
padded = n.ToString().
PadRight
(MaxEventNameLen);
173
padded = "Name".
PadRight
(MaxEventNameLen);
179
padded = n.ToString().
PadRight
(MaxEventNameLen);
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\Strings.vb (1)
928
Return Source.
PadRight
(Length)
xunit.assert (5)
EqualityAsserts.cs (4)
282
formattedExpected = expectedTypeName.
PadRight
(typeNameIndent) + formattedExpected;
283
formattedActual = actualTypeName.
PadRight
(typeNameIndent) + formattedActual;
796
formattedExpected = expectedTypeName.
PadRight
(typeNameIndent) + formattedExpected;
797
formattedActual = actualTypeName.
PadRight
(typeNameIndent) + formattedActual;
Sdk\Exceptions\AllException.cs (1)
64
string.Format(CultureInfo.CurrentCulture, "[{0}]:", error.Item1).
PadRight
(maxItemIndexLength),
xunit.console (2)
ConsoleRunner.cs (2)
250
Console.WriteLine($" -{reporter.RunnerSwitch.ToLowerInvariant().
PadRight
(21)} : {reporter.Description}");
257
transform => Console.WriteLine($" -{$"{transform.CommandLine} <filename>".
PadRight
(21).Substring(0, 21)} : {transform.Description}")