1 write to _throughputErrorSmoothingFactor
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.HillClimbing.cs (1)
103
_throughputErrorSmoothingFactor
= AppContextConfigHelper.GetInt32ComPlusOrDotNetConfig("System.Threading.ThreadPool.HillClimbing.ErrorSmoothingFactor", "HillClimbing_ErrorSmoothingFactor", 1, false) / 100.0;
2 references to _throughputErrorSmoothingFactor
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.HillClimbing.cs (2)
251
_averageThroughputNoise = (
_throughputErrorSmoothingFactor
* throughputErrorEstimate) + ((1.0 -
_throughputErrorSmoothingFactor
) * _averageThroughputNoise);