1 write to _request
Microsoft.Build (1)
BackEnd\Components\Scheduler\SchedulableRequest.cs (1)
133
_request
= request;
6 references to _request
Microsoft.Build (6)
BackEnd\Components\Scheduler\SchedulableRequest.cs (6)
163
get { return
_request
; }
403
Assumed.True((_state == SchedulableRequestState.Ready) || !_schedulingData.IsRequestScheduled(this), $"Another instance of request {
_request
.GlobalRequestId} is already scheduled.");
404
Assumed.False(_schedulingData.IsNodeWorking(nodeId), $"Cannot resume execution of request {
_request
.GlobalRequestId} because node {nodeId} is already working.");
406
int requiredNodeId = _schedulingData.GetAssignedNodeForRequestConfiguration(
_request
.ConfigurationId);
407
Assumed.True(requiredNodeId == Scheduler.InvalidNodeId || requiredNodeId == nodeId, $"Request {
_request
.GlobalRequestId} cannot be assigned to node {nodeId} because its configuration is already assigned to node {requiredNodeId}");
448
Assumed.Equal(_state, requiredState, $"Request {
_request
.GlobalRequestId} expected to be in state {requiredState} but state is actually {_state}");