标题:看片神器有人下载吗 里面啥电影。。
作者:sslsmh
原帖:https://hostloc.com/thread-823101-1-1.html
摘要:看片神器有人下载吗 里面啥电影。。 DJJ么 要不看看我签名
作者:sslsmh
原帖:https://hostloc.com/thread-823101-1-1.html
摘要:看片神器有人下载吗 里面啥电影。。 DJJ么 要不看看我签名
标题:75收一张100和一张172的券 脸熟的可先款
作者:北纬31度丶
原帖:https://hostloc.com/thread-823104-1-1.html
摘要:75收一张100和一张172的券 脸熟的可先款
作者:北纬31度丶
原帖:https://hostloc.com/thread-823104-1-1.html
摘要:75收一张100和一张172的券 脸熟的可先款
标题:[出]push出14段ultravps.eu
作者:403_Forbidden
原帖:https://hostloc.com/thread-823105-1-1.html
摘要:年付16.8欧:
1 CPU
1G RAM
10G SSD + 30G HDD
1T 流量
先款,带价PM。
作者:403_Forbidden
原帖:https://hostloc.com/thread-823105-1-1.html
摘要:年付16.8欧:
1 CPU
1G RAM
10G SSD + 30G HDD
1T 流量
先款,带价PM。
标题:40/只 出两只4.99欧的contabo
作者:alivefox
原帖:https://hostloc.com/thread-823106-1-1.html
摘要:要的 带上 企鹅 PM
好像都是31号到期 忘记了
作者:alivefox
原帖:https://hostloc.com/thread-823106-1-1.html
摘要:要的 带上 企鹅 PM
好像都是31号到期 忘记了
标题:溢价25出a1域名
作者:艾米休艾米休
原帖:https://hostloc.com/thread-823107-1-1.html
摘要:39+25=64
只保证是a1未绑定域名,其他不保证,其他不保证,其他不保证
作者:艾米休艾米休
原帖:https://hostloc.com/thread-823107-1-1.html
摘要:39+25=64
只保证是a1未绑定域名,其他不保证,其他不保证,其他不保证
标题:80港币的pp怎么使用
作者:By小酷
原帖:https://hostloc.com/thread-823109-1-1.html
摘要:看了要求是要求满足100港币即可使用,对应的应该是11欧元,但是直接充值并不能优惠啊
作者:By小酷
原帖:https://hostloc.com/thread-823109-1-1.html
摘要:看了要求是要求满足100港币即可使用,对应的应该是11欧元,但是直接充值并不能优惠啊
标题:Go语言关于pkg/errors求助
作者:CodyDoby
原帖:https://hostloc.com/thread-823111-1-1.html
摘要:不懂Go语言,照葫芦画瓢想搞个错误处理,结果蒙圈了各种报错,求帮看看...
报错: • building binaries • building binary=/home/runner/work/gclone/gclone/dist/gclone_windows_amd64/gclone.exe • building binary=/home/runner/work/gclone/gclone/dist/gclone_linux_amd64/gclone • building binary=/home/runner/work/gclone/gclone/dist/gclone_linux_386/gclone • building binary=/home/runner/work/gclone/gclone/dist/gclone_windows_386/gclone.exe ⨯ release failed after 171.47s error=failed to build for linux_amd64: # github.com/donwa/gclone/backend/drive Error: backend/drive/drive.go:643:22: err.msg undefined (type error has no field or method msg) Error: The process '/opt/hostedtoolcache/goreleaser-action/0.160.0/x64/goreleaser' failed with exit code 1复制代码
代码片段: func (f *Fs) shouldRetry(err error) (bool, error) { if err == nil { return false, nil } if fserrors.ShouldRetry(err) { return true, err } switch gerr := err.(type) { case *googleapi.Error: if gerr.Code >= 500 && gerr.Code 0 { reason := gerr.Errors[0].Reason if reason == "rateLimitExceeded" || reason == "userRateLimitExceeded" { // 如果存在 ServiceAccountFilePath,调用 changeSvc, 重试 if(f.opt.ServiceAccountFilePath != ""){ f.waitChangeSvc.Lock() f.changeSvc() f.waitChangeSvc.Unlock() return true, err } if f.opt.StopOnUploadLimit && gerr.Errors[0].Message == "User rate limit exceeded." { fs.Errorf(f, "Received upload limit error: %v", err) return false, fserrors.FatalError(err) } return true, err } } // added by me default: reason := err.msg if reason == "Max transfer limit reached as set by --max-transfer" { // do something if(f.opt.ServiceAccountFilePath != ""){ f.waitChangeSvc.Lock() f.changeSvc() f.waitChangeSvc.Unlock() return true, err } } // added by me } return false, err }复制代码
作者:CodyDoby
原帖:https://hostloc.com/thread-823111-1-1.html
摘要:不懂Go语言,照葫芦画瓢想搞个错误处理,结果蒙圈了各种报错,求帮看看...
报错: • building binaries • building binary=/home/runner/work/gclone/gclone/dist/gclone_windows_amd64/gclone.exe • building binary=/home/runner/work/gclone/gclone/dist/gclone_linux_amd64/gclone • building binary=/home/runner/work/gclone/gclone/dist/gclone_linux_386/gclone • building binary=/home/runner/work/gclone/gclone/dist/gclone_windows_386/gclone.exe ⨯ release failed after 171.47s error=failed to build for linux_amd64: # github.com/donwa/gclone/backend/drive Error: backend/drive/drive.go:643:22: err.msg undefined (type error has no field or method msg) Error: The process '/opt/hostedtoolcache/goreleaser-action/0.160.0/x64/goreleaser' failed with exit code 1复制代码
代码片段: func (f *Fs) shouldRetry(err error) (bool, error) { if err == nil { return false, nil } if fserrors.ShouldRetry(err) { return true, err } switch gerr := err.(type) { case *googleapi.Error: if gerr.Code >= 500 && gerr.Code 0 { reason := gerr.Errors[0].Reason if reason == "rateLimitExceeded" || reason == "userRateLimitExceeded" { // 如果存在 ServiceAccountFilePath,调用 changeSvc, 重试 if(f.opt.ServiceAccountFilePath != ""){ f.waitChangeSvc.Lock() f.changeSvc() f.waitChangeSvc.Unlock() return true, err } if f.opt.StopOnUploadLimit && gerr.Errors[0].Message == "User rate limit exceeded." { fs.Errorf(f, "Received upload limit error: %v", err) return false, fserrors.FatalError(err) } return true, err } } // added by me default: reason := err.msg if reason == "Max transfer limit reached as set by --max-transfer" { // do something if(f.opt.ServiceAccountFilePath != ""){ f.waitChangeSvc.Lock() f.changeSvc() f.waitChangeSvc.Unlock() return true, err } } // added by me } return false, err }复制代码
标题:做影视的都这么胆大了么???
作者:皮卡丘
原帖:https://hostloc.com/thread-823112-1-1.html
摘要:公然在loc里宣传,不知道这里人多水渣么。。。
我看你是想早点吃免费饭了、、、
低调还能存在久一点
作者:皮卡丘
原帖:https://hostloc.com/thread-823112-1-1.html
摘要:公然在loc里宣传,不知道这里人多水渣么。。。
我看你是想早点吃免费饭了、、、
低调还能存在久一点
标题:出hostsolutions黑五年付38欧3.6T大盘鸡
作者:mark
原帖:https://hostloc.com/thread-823113-1-1.html
摘要:storage kvm
1 core
1gb ram
3.6 tb hdd (raid10)
10tb traffic/mo
1 ipv4
下次到期日30/11/2021
罗马尼亚黑五秒杀鸡 改不了邮箱给账户密码 经常有充值活动送50% 明盘380出 按季租也行
作者:mark
原帖:https://hostloc.com/thread-823113-1-1.html
摘要:storage kvm
1 core
1gb ram
3.6 tb hdd (raid10)
10tb traffic/mo
1 ipv4
下次到期日30/11/2021
罗马尼亚黑五秒杀鸡 改不了邮箱给账户密码 经常有充值活动送50% 明盘380出 按季租也行
标题:各个地方斗来斗去有意思吗
作者:codeofpromo
原帖:https://hostloc.com/thread-823115-1-1.html
摘要:一场全球流行的某个东西
以现在的科技都应付不了
整天在陈芝麻烂谷子的地方斗来斗去
真的是 好好发展不行吗
作者:codeofpromo
原帖:https://hostloc.com/thread-823115-1-1.html
摘要:一场全球流行的某个东西
以现在的科技都应付不了
整天在陈芝麻烂谷子的地方斗来斗去
真的是 好好发展不行吗
标题:刚刚看了一眼 contabo 4.99欧涨到6.99欧【免安装费】
作者:alivefox
原帖:https://hostloc.com/thread-823114-1-1.html
摘要:RT
4.99欧 可以传家了吗
作者:alivefox
原帖:https://hostloc.com/thread-823114-1-1.html
摘要:RT
4.99欧 可以传家了吗
标题:各位彦祖,有没有免费好用的tv盒子软件呐
作者:朕的大清完了?
原帖:https://hostloc.com/thread-823117-1-1.html
摘要:天猫魔盒m10
以前装的那些个 软件全部都停服的停服,收费的收费了,
没有一个能看的,看一会就跳出vip 充值,
真是烦人,
现在有没有好用的tv软件,听说i酷影视不错,但好像是说也已停服了,
作者:朕的大清完了?
原帖:https://hostloc.com/thread-823117-1-1.html
摘要:天猫魔盒m10
以前装的那些个 软件全部都停服的停服,收费的收费了,
没有一个能看的,看一会就跳出vip 充值,
真是烦人,
现在有没有好用的tv软件,听说i酷影视不错,但好像是说也已停服了,
帖子:
Go语言关于pkg/errors求助
naiba 你想要的 err.msg 应该是 gerr.Errors[索引].Reason
链接: https://hostloc.com/forum.php?mod=redirect&goto=findpost&ptid=823111&pid=10131014
Go语言关于pkg/errors求助
naiba 你想要的 err.msg 应该是 gerr.Errors[索引].Reason
链接: https://hostloc.com/forum.php?mod=redirect&goto=findpost&ptid=823111&pid=10131014
Hostloc
Go语言关于pkg/errors求助-美国VPS综合讨论-全球主机交流论坛 - Powered by Discuz!
标题:没想到这年头还有小朋友加你 QQ 聊天的
作者:Cee
原帖:https://hostloc.com/thread-823118-1-1.html
摘要:还以为只有我们以前上学的时候才这么干,没想到现在还有小朋友也这样,不应该玩手游抖音吗?
听声音顶多就十来岁,好家伙,复古起来了
作者:Cee
原帖:https://hostloc.com/thread-823118-1-1.html
摘要:还以为只有我们以前上学的时候才这么干,没想到现在还有小朋友也这样,不应该玩手游抖音吗?
听声音顶多就十来岁,好家伙,复古起来了
Hostloc 新帖图文推送
帖子: Go语言关于pkg/errors求助 naiba 你想要的 err.msg 应该是 gerr.Errors[索引].Reason 链接: https://hostloc.com/forum.php?mod=redirect&goto=findpost&ptid=823111&pid=10131014
开始就是这样写的,也提示 gerr没有Erros:
https://forum.rclone.org/t/how-to-define-one-case-for-errormaxtransferlimitreached-in-shouldretry-function/23041
https://forum.rclone.org/t/how-to-define-one-case-for-errormaxtransferlimitreached-in-shouldretry-function/23041
rclone forum
How to define one case for ErrorMaxTransferLimitReached in shouldRetry function?
I want to add one entry, i.e., ErrorMaxTransferLimitReached (defined here) in shouldRetry function (defined here). But seem that there is no *errors.New like *googleapi.Error. How to define that case for ErrorMaxTransferLimitReached then? My code snippet…