/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/perf/benchmarks/Categories.cs
28 строк
847 B
Dongbo Wang
Add the performance benchmark project for PowerShell performance testing (#15242)
30 апр 2021, 19:34
Не верифицирован
30 апр 2021, 19:34
a62c9d9
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace MicroBenchmarks { public static class Categories { /// <summary> /// Benchmarks belonging to this category are executed for CI jobs. /// </summary> public const string Components = "Components"; /// <summary> /// Benchmarks belonging to this category are executed for CI jobs. /// </summary> public const string Engine = "Engine"; /// <summary> /// Benchmarks belonging to this category are targeting internal APIs. /// </summary> public const string Internal = "Internal"; /// <summary> /// Benchmarks belonging to this category are targeting public APIs. /// </summary> public const string Public = "Public"; } }