in JetBrains.HabitatDetector/src/Impl/Unix/UnixHelper.cs [57:63]
internal static int ConvertToNameLength(JetPlatform platform) => platform switch
{
JetPlatform.FreeBSD => 32,
JetPlatform.Linux => 65,
JetPlatform.MacOsX => 256,
_ => throw new ArgumentOutOfRangeException(nameof(platform), platform, null)
};