2 instantiations of ProcessResult
Aspire.Hosting.Kubernetes (2)
src\Aspire.Hosting\Dcp\Process\ProcessUtil.cs (2)
236
return new
ProcessResult
(exitCode);
239
return new
ProcessResult
(exitCode, outputCapture.ToArray(), outputCapture.TotalLineCount);
19 references to ProcessResult
Aspire.Hosting.Azure.Kubernetes (3)
AzureKubernetesEnvironmentResource.AksPipeline.cs (3)
457
var
result = await applyResultTask.WaitAsync(context.CancellationToken).ConfigureAwait(false);
532
var
result = await resultTask.WaitAsync(cancellationToken).ConfigureAwait(false);
833
var
result = await task.ConfigureAwait(false);
Aspire.Hosting.Kubernetes (16)
CertManagerExtensions.cs (2)
477
var
result = await resultTask.WaitAsync(context.CancellationToken).ConfigureAwait(false);
534
var
result = await resultTask.WaitAsync(context.CancellationToken).ConfigureAwait(false);
Deployment\DefaultHelmRunner.cs (1)
34
var
processResult = await pendingProcessResult
Deployment\HelmDeploymentEngine.cs (1)
699
var
processResult = await pendingProcessResult
KubernetesEnvironmentResource.cs (9)
1504
var
patchExitResult = await patchResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
1564
var
result = await checkResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
1609
var
createExitResult = await createResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
1700
var
result = await getResult.WaitAsync(ct).ConfigureAwait(false);
1789
var
result = await getResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
2052
var
exitResult = await getResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
2122
var
applyExitResult = await applyResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
2201
var
result = await checkResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
2246
var
createExitResult = await createResult.WaitAsync(context.CancellationToken).ConfigureAwait(false);
src\Aspire.Hosting\Dcp\Process\ProcessUtil.cs (3)
22
public static (Task<
ProcessResult
>, IAsyncDisposable) Run(ProcessSpec processSpec)
124
var processLifetimeTcs = new TaskCompletionSource<
ProcessResult
>();
232
private static
ProcessResult
CreateProcessResult(int exitCode, ProcessOutputCapture? outputCapture)