5 references to GetTimeSpentInState
Microsoft.Build (5)
BackEnd\Components\Scheduler\Scheduler.cs (4)
2532
String.Format(CultureInfo.InvariantCulture, "{0:0.000}", request.
GetTimeSpentInState
(SchedulableRequestState.Executing).TotalSeconds),
2533
String.Format(CultureInfo.InvariantCulture, "{0:0.000}", request.
GetTimeSpentInState
(SchedulableRequestState.Executing).TotalSeconds + request.
GetTimeSpentInState
(SchedulableRequestState.Blocked).TotalSeconds + request.
GetTimeSpentInState
(SchedulableRequestState.Ready).TotalSeconds),
BackEnd\Components\Scheduler\SchedulingPlan.cs (1)
468
accumulatedTimeByConfiguration[request.BuildRequest.ConfigurationId] = accumulatedTime + request.
GetTimeSpentInState
(SchedulableRequestState.Executing).TotalMilliseconds;