16 references to Max
GenerateDocumentationAndConfigFiles (1)
Program.cs (1)
978
var maxShippedVersion = versionsBuilder.
Max
();
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Parsing\LanguageVersionTests.cs (1)
22
Max
();
Microsoft.Data.Analysis.Tests (4)
DataFrameTests.Computations.cs (4)
439
Assert.Equal((byte)byteColumn.Max(), range.Select(x => (byte)x).
Max
());
450
Assert.Equal((uint)uintColumn.Max(), range.Select(x => (uint)x).
Max
());
453
Assert.Equal((ulong)ulongColumn.Max(), range.Select(x => (ulong)x).
Max
());
456
Assert.Equal((ushort)ushortColumn.Max(), range.Select(x => (ushort)x).
Max
());
Microsoft.DotNet.Build.Tasks.Packaging (4)
GenerateRuntimeDependencies.cs (1)
120
var maxDependencyVersion = dependencyVersions.
Max
();
GetLastStablePackage.cs (1)
153
lastStablePackages.Add(CreateItem(latestPackage, candidateVersions.
Max
()));
GetPackageVersion.cs (1)
42
Version = versionsToConsider.
Max
().ToString();
UpdatePackageIndex.cs (1)
182
var maxVersion = packageInfo.StableVersions.
Max
();
Microsoft.DotNet.Helix.JobSender (1)
Payloads\DirectoryPayload.cs (1)
89
.
Max
();
Microsoft.ML.AutoML (1)
Sweepers\SmacSweeper.cs (1)
181
RunResult bestRun = (RunResult)previousRuns.
Max
();
Microsoft.ML.FastTree (1)
Dataset\DatasetUtils.cs (1)
34
short maxLab = ratings.Length > 0 ? ratings.
Max
() : (short)0;
Microsoft.ML.Sweeper (1)
Algorithms\SmacSweeper.cs (1)
195
RunResult bestRun = (RunResult)previousRuns.
Max
();
System.Linq (2)
System\Linq\Max.cs (1)
309
/// <para>If type <typeparamref name="TSource" /> implements <see cref="System.IComparable{T}" />, the <see cref="
Max
{T}(IEnumerable{T})" /> method uses that implementation to compare values. Otherwise, if type <typeparamref name="TSource" /> implements <see cref="System.IComparable" />, that implementation is used to compare values.</para>
System\Linq\OrderedEnumerable.SpeedOpt.cs (1)
397
Max
(_source);