8 writes to DelayBase
Microsoft.DotNet.Build.Tasks.Feed (3)
src\common\AzureStorageUtils.cs (1)
110DelayBase = 2.5 // 2.5 ^ 5 = ~1.5 minutes max wait between retries
src\common\GeneralUtils.cs (1)
32DelayBase = 5,
src\PublishArtifactsInManifestBase.cs (1)
226DelayBase = 2.5 // 2.5 ^ 5 = ~1.5 minutes max wait between retries
Microsoft.DotNet.Build.Tasks.Feed.Tests (4)
PublishToSymbolServerTest.cs (4)
272publishTask.RetryHandler = new ExponentialRetry() { MaxAttempts = 3, DelayBase = 1 }; 315publishTask.RetryHandler = new ExponentialRetry() { MaxAttempts = 3, DelayBase = 1 }; 358publishTask.RetryHandler = new ExponentialRetry() { MaxAttempts = 2, DelayBase = 1 }; 421publishTask.RetryHandler = new ExponentialRetry() {MaxAttempts = 3, DelayBase = 1};
Microsoft.DotNet.Helix.Sdk (1)
FindDotNetCliPackage.cs (1)
25DelayBase = 3.0
1 reference to DelayBase
Microsoft.Arcade.Common (1)
ExponentialRetry.cs (1)
57(Math.Pow(DelayBase, i) + DelayConstant) * randomFactor);