我正在Windows 10上启动docker桌面,但出现以下错误:
Docker.Core.Backend.BackendDestroyException:一个或多个错误 发生了。在 Docker.Core.Pipe.NamedPipeClient.d__5.MoveNext() ---从之前引发异常的位置开始的堆栈跟踪- System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()在 Docker.Core.Pipe.NamedPipeClient.Send(字符串操作,对象[] 参数) Docker.Actions。<> c__DisplayClass39_0.b__0()在 Docker.ApiServices.TaskQueuing.TaskQueue。<> c__DisplayClass18_0。<。ctor> b__1()
System.AggregateException:发生一个或多个错误。 在System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions) 在System.Threading.Tasks.Task.Wait(Int32毫秒超时,CancellationToken cancelToken) 在Docker.Backend.LifecycleClient.DockerStart() 在Docker.Backend.ContainerEngine.Linux.DoStart(设置设置,字符串daemonOptions,凭据凭证) 在Docker.Backend.ContainerEngine.Linux.Start(设置设置,字符串daemonOptions,凭据凭据)
function myFunction() { var ss = SpreadsheetApp.getActive(); var sheet1 = ss.getSheetByName("Summary"); var sheet2 = ss.getSheetByName("Updates"); var type = sheet2.getRange(sheet2.getLastRow(), 2).getValue(); var addv = sheet2.getRange(sheet2.getLastRow(), 3).getValue(); var values = sheet1.getDataRange().getValues(); var columnA = values.map(function(e){return e[0]}); var index = columnA.indexOf(type); if (index == -1) { // If match is not found sheet1.appendRow([type, addv]); // Append row } else { // If match is found var rangeToUpdate = sheet1.getRange(index + 1, 2); rangeToUpdate.setValue(rangeToUpdate.getValue() + addv); // Add addv to corresponding value in column B } }
标题) 在Docker.Backend.HttpClientExtensions.d__2
Docker.Core.HttpBadResponseException: unable to fetch daemon.json: Get http://unix/engine/daemon.json: net/http: request canceled (Client.Timeout exceeded while awaiting
1.MoveNext()
我先卸载然后重新安装,但在运行时仍然遇到此问题。