├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── enhancements.md │ └── request-benchmark.md └── workflows │ ├── GitPub.yml │ └── RunPester.yml ├── Benchpress.GitHubAction.PSDevOps.ps1 ├── Benchpress.GitHubWorkflow.PSDevOps.ps1 ├── Benchpress.HelpOut.ps1 ├── Benchpress.ezformat.ps1 ├── Benchpress.format.ps1xml ├── Benchpress.psd1 ├── Benchpress.psm1 ├── CHANGELOG.md ├── Checkpoint-Benchmark.ps1 ├── Formatting ├── Benchmark.Detail.format.ps1 ├── Benchmark.OutputFile.format.ps1 └── Benchmark.Relative.Summary.format.ps1 ├── Get-Benchmark.ps1 ├── GitHub ├── Actions │ └── Benchpress.ps1 ├── Jobs │ ├── BuildBenchpress.psd1 │ └── RunBenchmarks.psd1 └── Steps │ ├── Checkout-Benchpress.psd1 │ ├── Checkout-RepositoryToBenchmark.psd1 │ ├── PublishBenchmarks.psd1 │ └── UseBenchpressAction.psd1 ├── LICENSE ├── Measure-Benchmark.ps1 ├── PowerShellPerformance ├── Best_Way_To_Accumulate_Pipeline_Results.benchmark.ps1 ├── Checking_If_A_File_Exists.benchmark.ps1 ├── Comparing_Command_Lookup.benchmark.ps1 ├── Creating_Property_Bags.benchmark.ps1 ├── Different_Ways_To_Iterate.benchmark.psd1 ├── Different_Ways_To_Set_Many_Variables.benchmark.psd1 ├── Hashtable_vs_Ordered.ps1 ├── How_Much_Faster_Is_Method_Binding.ps1 ├── How_Much_Faster_Is_Piping_To_A_ScriptBlock.benchmark.psd1 ├── How_Much_Faster_Is_Splatting.benchmark.ps1 ├── How_Much_Faster_Is_The_Static_Constructor.benchmark.psd1 ├── Is_Using_Faster.benchmark.ps1 ├── README.md ├── Random_Number_Generation.benchmark.ps1 ├── Should_I_Include_The_System_Namespace.benchmark.ps1 ├── ToString_Or_Not_ToString.benchmark.ps1 ├── Ways_To_Hash_A_File.benchmark.ps1 ├── What_Is_The_Fastest_Way_To_Concatenate.benchmark.json ├── What_Is_The_Fastest_Way_To_Filter.benchmark.ps1 ├── What_Is_The_Fastest_Way_To_Get_All_Loaded_Modules.benchmark.ps1 ├── What_Is_The_Fastest_Way_To_Read_A_File.benchmark.ps1 ├── What_Is_The_Fastest_Way_To_Sort.benchmark.ps1 ├── What_Is_The_Quickest_Way_To_Compare_Types.benchmark.ps1 ├── Whats_In_A_Quote.benchmark.ps1 ├── Which_Random_Is_Faster.benchmark.ps1 └── multithreading.benchmark.ps1 ├── README.md ├── README.ps1.md ├── Show-Benchmark.ps1 ├── action.yml ├── docs ├── 2021-11-08.md ├── 2021-11.md ├── 2021.md ├── 2022-06-06.md ├── 2022-06.md ├── 2022-07-11.md ├── 2022-07.md ├── 2022-08-30.md ├── 2022-08.md ├── 2022-11-03.md ├── 2022-11.md ├── 2022.md ├── 2023-01-21.md ├── 2023-01.md ├── 2023.md ├── Best_Way_To_Accumulate_Pipeline_Results.benchmark.benchmarkOutput.md ├── CHANGELOG.md ├── CNAME ├── Checking_If_A_File_Exists.benchmark.benchmarkOutput.md ├── Checkpoint-Benchmark.md ├── Comparing_Command_Lookup.benchmark.benchmarkOutput.md ├── Creating_Property_Bags.benchmark.benchmarkOutput.md ├── Different_Ways_To_Iterate.benchmark.benchmarkOutput.md ├── Different_Ways_To_Set_Many_Variables.benchmark.benchmarkOutput.md ├── Get-Benchmark.md ├── How_Much_Faster_Is_Piping_To_A_ScriptBlock.benchmark.benchmarkOutput.md ├── How_Much_Faster_Is_Splatting.benchmark.benchmarkOutput.md ├── How_Much_Faster_Is_The_Static_Constructor.benchmark.benchmarkOutput.md ├── Is_Using_Faster.benchmark.benchmarkOutput.md ├── Measure-Benchmark.md ├── README.md ├── Random_Number_Generation.benchmark.benchmarkOutput.md ├── Should_I_Include_The_System_Namespace.benchmark.benchmarkOutput.md ├── Show-Benchmark.md ├── ToString_Or_Not_ToString.benchmark.benchmarkOutput.md ├── Ways_To_Hash_A_File.benchmark.benchmarkOutput.md ├── What_Is_The_Fastest_Way_To_Concatenate.benchmark.benchmarkOutput.md ├── What_Is_The_Fastest_Way_To_Filter.benchmark.benchmarkOutput.md ├── What_Is_The_Fastest_Way_To_Get_All_Loaded_Modules.benchmark.benchmarkOutput.md ├── What_Is_The_Fastest_Way_To_Read_A_File.benchmark.benchmarkOutput.md ├── What_Is_The_Fastest_Way_To_Sort.benchmark.benchmarkOutput.md ├── What_Is_The_Quickest_Way_To_Compare_Types.benchmark.benchmarkOutput.md ├── Whats_In_A_Quote.benchmark.benchmarkOutput.md ├── Which_Random_Is_Faster.benchmark.benchmarkOutput.md ├── _config.yml ├── _layouts │ └── Benchmark.html ├── _posts │ ├── 2021-11-08-Benchpress-v1.3.md │ ├── 2022-06-06-Benchpress-v1.3.1.md │ ├── 2022-07-11-Benchpress-1.3.2.md │ ├── 2022-08-30-Benchpress-1.3.3.md │ ├── 2022-08-30-Benchpress-1.3.4.md │ ├── 2022-08-30-Benchpress-1.3.5.md │ ├── 2022-11-03-Benchpress-1.3.6.md │ └── 2023-01-21-Benchpress-1.3.7.md ├── bench.md ├── multithreading.benchmark.benchmarkOutput.md └── rss.xml ├── en-us └── About_Benchpress.help.txt └── tests └── Benchpress.tests.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [StartAutomating] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/.github/ISSUE_TEMPLATE/enhancements.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/.github/ISSUE_TEMPLATE/request-benchmark.md -------------------------------------------------------------------------------- /.github/workflows/GitPub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/.github/workflows/GitPub.yml -------------------------------------------------------------------------------- /.github/workflows/RunPester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/.github/workflows/RunPester.yml -------------------------------------------------------------------------------- /Benchpress.GitHubAction.PSDevOps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Benchpress.GitHubAction.PSDevOps.ps1 -------------------------------------------------------------------------------- /Benchpress.GitHubWorkflow.PSDevOps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Benchpress.GitHubWorkflow.PSDevOps.ps1 -------------------------------------------------------------------------------- /Benchpress.HelpOut.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Benchpress.HelpOut.ps1 -------------------------------------------------------------------------------- /Benchpress.ezformat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Benchpress.ezformat.ps1 -------------------------------------------------------------------------------- /Benchpress.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Benchpress.format.ps1xml -------------------------------------------------------------------------------- /Benchpress.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Benchpress.psd1 -------------------------------------------------------------------------------- /Benchpress.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Benchpress.psm1 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Checkpoint-Benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Checkpoint-Benchmark.ps1 -------------------------------------------------------------------------------- /Formatting/Benchmark.Detail.format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Formatting/Benchmark.Detail.format.ps1 -------------------------------------------------------------------------------- /Formatting/Benchmark.OutputFile.format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Formatting/Benchmark.OutputFile.format.ps1 -------------------------------------------------------------------------------- /Formatting/Benchmark.Relative.Summary.format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Formatting/Benchmark.Relative.Summary.format.ps1 -------------------------------------------------------------------------------- /Get-Benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Get-Benchmark.ps1 -------------------------------------------------------------------------------- /GitHub/Actions/Benchpress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/GitHub/Actions/Benchpress.ps1 -------------------------------------------------------------------------------- /GitHub/Jobs/BuildBenchpress.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/GitHub/Jobs/BuildBenchpress.psd1 -------------------------------------------------------------------------------- /GitHub/Jobs/RunBenchmarks.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/GitHub/Jobs/RunBenchmarks.psd1 -------------------------------------------------------------------------------- /GitHub/Steps/Checkout-Benchpress.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/GitHub/Steps/Checkout-Benchpress.psd1 -------------------------------------------------------------------------------- /GitHub/Steps/Checkout-RepositoryToBenchmark.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/GitHub/Steps/Checkout-RepositoryToBenchmark.psd1 -------------------------------------------------------------------------------- /GitHub/Steps/PublishBenchmarks.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/GitHub/Steps/PublishBenchmarks.psd1 -------------------------------------------------------------------------------- /GitHub/Steps/UseBenchpressAction.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/GitHub/Steps/UseBenchpressAction.psd1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/LICENSE -------------------------------------------------------------------------------- /Measure-Benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Measure-Benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/Best_Way_To_Accumulate_Pipeline_Results.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Best_Way_To_Accumulate_Pipeline_Results.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/Checking_If_A_File_Exists.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Checking_If_A_File_Exists.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/Comparing_Command_Lookup.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Comparing_Command_Lookup.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/Creating_Property_Bags.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Creating_Property_Bags.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/Different_Ways_To_Iterate.benchmark.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Different_Ways_To_Iterate.benchmark.psd1 -------------------------------------------------------------------------------- /PowerShellPerformance/Different_Ways_To_Set_Many_Variables.benchmark.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Different_Ways_To_Set_Many_Variables.benchmark.psd1 -------------------------------------------------------------------------------- /PowerShellPerformance/Hashtable_vs_Ordered.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Hashtable_vs_Ordered.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/How_Much_Faster_Is_Method_Binding.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/How_Much_Faster_Is_Method_Binding.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/How_Much_Faster_Is_Piping_To_A_ScriptBlock.benchmark.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/How_Much_Faster_Is_Piping_To_A_ScriptBlock.benchmark.psd1 -------------------------------------------------------------------------------- /PowerShellPerformance/How_Much_Faster_Is_Splatting.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/How_Much_Faster_Is_Splatting.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/How_Much_Faster_Is_The_Static_Constructor.benchmark.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/How_Much_Faster_Is_The_Static_Constructor.benchmark.psd1 -------------------------------------------------------------------------------- /PowerShellPerformance/Is_Using_Faster.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Is_Using_Faster.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/README.md -------------------------------------------------------------------------------- /PowerShellPerformance/Random_Number_Generation.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Random_Number_Generation.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/Should_I_Include_The_System_Namespace.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Should_I_Include_The_System_Namespace.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/ToString_Or_Not_ToString.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/ToString_Or_Not_ToString.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/Ways_To_Hash_A_File.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Ways_To_Hash_A_File.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/What_Is_The_Fastest_Way_To_Concatenate.benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/What_Is_The_Fastest_Way_To_Concatenate.benchmark.json -------------------------------------------------------------------------------- /PowerShellPerformance/What_Is_The_Fastest_Way_To_Filter.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/What_Is_The_Fastest_Way_To_Filter.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/What_Is_The_Fastest_Way_To_Get_All_Loaded_Modules.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/What_Is_The_Fastest_Way_To_Get_All_Loaded_Modules.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/What_Is_The_Fastest_Way_To_Read_A_File.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/What_Is_The_Fastest_Way_To_Read_A_File.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/What_Is_The_Fastest_Way_To_Sort.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/What_Is_The_Fastest_Way_To_Sort.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/What_Is_The_Quickest_Way_To_Compare_Types.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/What_Is_The_Quickest_Way_To_Compare_Types.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/Whats_In_A_Quote.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Whats_In_A_Quote.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/Which_Random_Is_Faster.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/Which_Random_Is_Faster.benchmark.ps1 -------------------------------------------------------------------------------- /PowerShellPerformance/multithreading.benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/PowerShellPerformance/multithreading.benchmark.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/README.md -------------------------------------------------------------------------------- /README.ps1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/README.ps1.md -------------------------------------------------------------------------------- /Show-Benchmark.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/Show-Benchmark.ps1 -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/action.yml -------------------------------------------------------------------------------- /docs/2021-11-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2021-11-08.md -------------------------------------------------------------------------------- /docs/2021-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2021-11.md -------------------------------------------------------------------------------- /docs/2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2021.md -------------------------------------------------------------------------------- /docs/2022-06-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2022-06-06.md -------------------------------------------------------------------------------- /docs/2022-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2022-06.md -------------------------------------------------------------------------------- /docs/2022-07-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2022-07-11.md -------------------------------------------------------------------------------- /docs/2022-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2022-07.md -------------------------------------------------------------------------------- /docs/2022-08-30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2022-08-30.md -------------------------------------------------------------------------------- /docs/2022-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2022-08.md -------------------------------------------------------------------------------- /docs/2022-11-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2022-11-03.md -------------------------------------------------------------------------------- /docs/2022-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2022-11.md -------------------------------------------------------------------------------- /docs/2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2022.md -------------------------------------------------------------------------------- /docs/2023-01-21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2023-01-21.md -------------------------------------------------------------------------------- /docs/2023-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2023-01.md -------------------------------------------------------------------------------- /docs/2023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/2023.md -------------------------------------------------------------------------------- /docs/Best_Way_To_Accumulate_Pipeline_Results.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Best_Way_To_Accumulate_Pipeline_Results.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | benchpress.start-automating.com -------------------------------------------------------------------------------- /docs/Checking_If_A_File_Exists.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Checking_If_A_File_Exists.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Checkpoint-Benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Checkpoint-Benchmark.md -------------------------------------------------------------------------------- /docs/Comparing_Command_Lookup.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Comparing_Command_Lookup.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Creating_Property_Bags.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Creating_Property_Bags.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Different_Ways_To_Iterate.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Different_Ways_To_Iterate.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Different_Ways_To_Set_Many_Variables.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Different_Ways_To_Set_Many_Variables.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Get-Benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Get-Benchmark.md -------------------------------------------------------------------------------- /docs/How_Much_Faster_Is_Piping_To_A_ScriptBlock.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/How_Much_Faster_Is_Piping_To_A_ScriptBlock.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/How_Much_Faster_Is_Splatting.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/How_Much_Faster_Is_Splatting.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/How_Much_Faster_Is_The_Static_Constructor.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/How_Much_Faster_Is_The_Static_Constructor.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Is_Using_Faster.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Is_Using_Faster.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Measure-Benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Measure-Benchmark.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Random_Number_Generation.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Random_Number_Generation.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Should_I_Include_The_System_Namespace.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Should_I_Include_The_System_Namespace.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Show-Benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Show-Benchmark.md -------------------------------------------------------------------------------- /docs/ToString_Or_Not_ToString.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/ToString_Or_Not_ToString.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Ways_To_Hash_A_File.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Ways_To_Hash_A_File.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/What_Is_The_Fastest_Way_To_Concatenate.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/What_Is_The_Fastest_Way_To_Concatenate.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/What_Is_The_Fastest_Way_To_Filter.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/What_Is_The_Fastest_Way_To_Filter.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/What_Is_The_Fastest_Way_To_Get_All_Loaded_Modules.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/What_Is_The_Fastest_Way_To_Get_All_Loaded_Modules.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/What_Is_The_Fastest_Way_To_Read_A_File.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/What_Is_The_Fastest_Way_To_Read_A_File.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/What_Is_The_Fastest_Way_To_Sort.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/What_Is_The_Fastest_Way_To_Sort.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/What_Is_The_Quickest_Way_To_Compare_Types.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/What_Is_The_Quickest_Way_To_Compare_Types.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Whats_In_A_Quote.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Whats_In_A_Quote.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/Which_Random_Is_Faster.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/Which_Random_Is_Faster.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | permalink: pretty -------------------------------------------------------------------------------- /docs/_layouts/Benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/_layouts/Benchmark.html -------------------------------------------------------------------------------- /docs/_posts/2021-11-08-Benchpress-v1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/_posts/2021-11-08-Benchpress-v1.3.md -------------------------------------------------------------------------------- /docs/_posts/2022-06-06-Benchpress-v1.3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/_posts/2022-06-06-Benchpress-v1.3.1.md -------------------------------------------------------------------------------- /docs/_posts/2022-07-11-Benchpress-1.3.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/_posts/2022-07-11-Benchpress-1.3.2.md -------------------------------------------------------------------------------- /docs/_posts/2022-08-30-Benchpress-1.3.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/_posts/2022-08-30-Benchpress-1.3.3.md -------------------------------------------------------------------------------- /docs/_posts/2022-08-30-Benchpress-1.3.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/_posts/2022-08-30-Benchpress-1.3.4.md -------------------------------------------------------------------------------- /docs/_posts/2022-08-30-Benchpress-1.3.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/_posts/2022-08-30-Benchpress-1.3.5.md -------------------------------------------------------------------------------- /docs/_posts/2022-11-03-Benchpress-1.3.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/_posts/2022-11-03-Benchpress-1.3.6.md -------------------------------------------------------------------------------- /docs/_posts/2023-01-21-Benchpress-1.3.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/_posts/2023-01-21-Benchpress-1.3.7.md -------------------------------------------------------------------------------- /docs/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/bench.md -------------------------------------------------------------------------------- /docs/multithreading.benchmark.benchmarkOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/multithreading.benchmark.benchmarkOutput.md -------------------------------------------------------------------------------- /docs/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/docs/rss.xml -------------------------------------------------------------------------------- /en-us/About_Benchpress.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/en-us/About_Benchpress.help.txt -------------------------------------------------------------------------------- /tests/Benchpress.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StartAutomating/Benchpress/HEAD/tests/Benchpress.tests.ps1 --------------------------------------------------------------------------------