Go: "خطأ فادح: إشارة غير متوقعة أثناء تنفيذ وقت التشغيل" - أثناء إنشاء go (عابر) على MacOS 10.12

تم إنشاؤها على ٢٦ سبتمبر ٢٠١٦  ·  1تعليق  ·  مصدر: golang/go

أعمل على بعض التعليمات البرمجية لكتاب "Go Web Programming" من تأليف Sau Sheong Chang (مانينغ ، 2016) وحصلت على "خطأ فادح: إشارة غير متوقعة أثناء تنفيذ وقت التشغيل" أحاول تشغيل go build مرة واحدة ، ثم حاولت مرة ثانية بعد دقيقة واحدة دون تجربة أي شيء ونجح الأمر. الكود الذي كنت أقوم ببنائه موجود هنا .

أريد أن أكرر: هذا حدث مرة واحدة فقط. تشغيل لاحق go build _ بدون تغيير أي شيء_ عمل كما هو متوقع. لسوء الحظ ، ليس لدي أي معلومات تقريبًا أقدمها إلى جانب قص ولصق تتبع المكدس أدناه لأنني لم أتمكن من التكاثر. لقد رأيت مشكلة تم فتحها مع ما يبدو أنه نفس الخطأ ، لكن هذا الخيط أشار إلى أنه إذا ظهر على جهاز حقيقي (نعم: 2013 MacBook Pro) ، يجب فتح إصدار جديد.

go version : go version go1.6.2 darwin/amd64
go env :

GOARCH="amd64"
GOBIN=""
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="darwin"
GOOS="darwin"
GOPATH="/Users/bart/go"
GORACE=""
GOROOT="/usr/local/Cellar/go/1.6.2/libexec"
GOTOOLDIR="/usr/local/Cellar/go/1.6.2/libexec/pkg/tool/darwin_amd64"
GO15VENDOREXPERIMENT="1"
CC="clang"
GOGCCFLAGS="-fPIC -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fno-common"
CXX="clang++"
CGO_ENABLED="1"
bart@Barts-MBP:chitchat (master*)$ go build
# github.com/sausheong/gwp/Chapter_2_Go_ChitChat/chitchat/data
fatal error: unexpected signal during runtime execution
[signal 0xb code=0x1 addr=0x7b6c76bc73b0 pc=0xf0eb]

runtime stack:
runtime.throw(0x4971e0, 0x2a)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/panic.go:547 +0x90
runtime.sigpanic()
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/sigpanic_unix.go:12 +0x5a
runtime.unlock(0x984540)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/lock_sema.go:107 +0x14b
runtime.(*mheap).alloc_m(0x984540, 0x1, 0x9, 0xb92fa0)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/mheap.go:492 +0x314
runtime.(*mheap).alloc.func1()
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/mheap.go:502 +0x41
runtime.systemstack(0x7fff5fbff218)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:307 +0xab
runtime.(*mheap).alloc(0x984540, 0x1, 0x10000000009, 0xed8f)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/mheap.go:503 +0x63
runtime.(*mcentral).grow(0x985c00, 0x0)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/mcentral.go:209 +0x93
runtime.(*mcentral).cacheSpan(0x985c00, 0xb54508)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/mcentral.go:89 +0x47d
runtime.(*mcache).refill(0xaf64b0, 0x9, 0xb54508)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/mcache.go:119 +0xcc
runtime.mallocgc.func2()
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/malloc.go:642 +0x2b
runtime.systemstack(0x975d00)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:291 +0x79
runtime.mstart()
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/proc.go:1051

goroutine 1 [running]:
runtime.systemstack_switch()
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:245 fp=0xc82084cfe0 sp=0xc82084cfd8
runtime.mallocgc(0x80, 0x405340, 0xc800000000, 0x11029)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/malloc.go:643 +0x869 fp=0xc82084d0b8 sp=0xc82084cfe0
runtime.newarray(0x405340, 0x4, 0x0)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/malloc.go:798 +0xc9 fp=0xc82084d0f8 sp=0xc82084d0b8
runtime.growslice(0x3b0120, 0xc820ac9740, 0x2, 0x2, 0x3, 0x0, 0x0, 0x0)
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/slice.go:100 +0x2c1 fp=0xc82084d168 sp=0xc82084d0f8
cmd/compile/internal/gc.livenessepilogue(0xc820b028c0)
        /usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/plive.go:1289 +0x3323 fp=0xc82084d708 sp=0xc82084d168
cmd/compile/internal/gc.liveness(0xc820518b40, 0xc820ba4360, 0xc820b17480, 0xc820b17500)
        /usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/plive.go:1794 +0x334 fp=0xc82084d7e8 sp=0xc82084d708
cmd/compile/internal/gc.compile(0xc820518b40)
        /usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/pgen.go:541 +0xdf2 fp=0xc82084da58 sp=0xc82084d7e8
cmd/compile/internal/gc.funccompile(0xc820518b40)
        /usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/dcl.go:1450 +0x1c0 fp=0xc82084dad0 sp=0xc82084da58
cmd/compile/internal/gc.Main()
        /usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/lex.go:472 +0x2116 fp=0xc82084ddf0 sp=0xc82084dad0
cmd/compile/internal/amd64.Main()
        /usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/amd64/galign.go:127 +0x58d fp=0xc82084de58 sp=0xc82084ddf0
main.main()
        /usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/main.go:32 +0x395 fp=0xc82084df30 sp=0xc82084de58
runtime.main()
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/proc.go:188 +0x2b0 fp=0xc82084df80 sp=0xc82084df30
runtime.goexit()
        /usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:1998 +0x1 fp=0xc82084df88 sp=0xc82084df80
FrozenDueToAge OS-Darwin

التعليق الأكثر فائدة

Go 1.6.2 لا يدعم macOS 10.12 ، يرجى الترقية إلى Go 1.7.

في 26 سبتمبر 2016 ، الساعة 4:34 مساءً ، كتب "Bart Grantham" [email protected] :

أنا أعمل من خلال بعض التعليمات البرمجية لكتاب "Go Web Programming"
بواسطة Sau Sheong Chang (مانينغ ، 2016) وحصلت على "خطأ فادح: إشارة غير متوقعة
أثناء تنفيذ وقت التشغيل "حاول تشغيل go build مرة واحدة ، ثم حاول أ
مرة ثانية بعد دقيقة واحدة دون تجربة أي شيء ونجح الأمر. الرمز
كنت أقوم بالبناء هنا
https://github.com/sausheong/gwp/tree/master/Chapter_2_Go_ChitChat/chitchat
.

أريد أن أكرر: هذا حدث مرة واحدة فقط. تشغيل لاحق من go build _without
تغيير أي شيء _ عملت كما هو متوقع. للأسف ليس لدي أي شيء تقريبًا
معلومات لتوفيرها بالإضافة إلى قص ولصق لتتبع المكدس أدناه
لأنني لم أتمكن من الإنجاب. رأيت تم فتح قضية
https://github.com/golang/go/issues/11792 مع ما يبدو أنه ملف
نفس الخطأ ، ولكن هذا الخيط أشار إلى أنه إذا ظهر على جهاز حقيقي
(نعم: 2013 MacBook Pro) أنه يجب فتح إصدار جديد.

إصدار go: go version go1.6.2 darwin / amd64
go env:

GOARCH = "amd64"
GOBIN = ""
GOEXE = ""
GOHOSTARCH = "amd64"
GOHOSTOS = "داروين"
GOOS = "داروين"
GOPATH = "/ Users / bart / go"
غوراس = ""
GOROOT = "/ usr / local / Cellar / go / 1.6.2 / libexec"
GOTOOLDIR = "/ usr / local / Cellar / go / 1.6.2 / libexec / pkg / tool / darwin_amd64"
GO15VENDOREXPERIMENT = "1"
CC = "رنة"
GOGCCFLAGS = "- fPIC -m64 -pthread -fno-caret-Diagnostics -Qunused-arguments -fmessage-length = 0 -fno-common"
CXX = "كلانج ++"
CGO_ENABLED = "1"

bart @ Barts-MBP : chitchat (سيد *) $ go build

github.com/sausheong/gwp/Chapter_2_Go_ChitChat/chitchat/data

خطأ فادح: إشارة غير متوقعة أثناء تنفيذ وقت التشغيل
[رمز الإشارة 0xb = 0x1 addr = 0x7b6c76bc73b0 pc = 0xf0eb]

كومة وقت التشغيل:
runtime.throw (0x4971e0، 0x2a)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/panic.go:547 + 0x90
runtime.sigpanic ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/sigpanic_unix.go:12 + 0x5a
وقت التشغيل. unlock (0x984540)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/lock_sema.go:107 + 0x14b
وقت التشغيل. (_ mheap) .alloc_m (0x984540 ، 0x1 ، 0x9 ، 0xb92fa0)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mheap.go:492 + 0x314
وقت التشغيل. (_ mheap) .alloc.func1 ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mheap.go:502 + 0x41
runtime.systemstack (0x7fff5fbff218)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:307 + 0xab
وقت التشغيل. (_ mheap) .alloc (0x984540 ، 0x1 ، 0x10000000009 ، 0xed8f)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mheap.go:503 + 0x63
وقت التشغيل. (_ mcentral) .grow (0x985c00، 0x0)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mcentral.go:209 + 0x93
وقت التشغيل. (_ mcentral). cacheSpan (0x985c00 ، 0xb54508)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mcentral.go:89 + 0x47d
وقت التشغيل. (_ mcache). إعادة التعبئة (0xaf64b0، 0x9، 0xb54508)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mcache.go:119 + 0xcc
runtime.mallocgc.func2 ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/malloc.go:642 + 0x2b
runtime.systemstack (0x975d00)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:291 + 0x79
runtime.mstart ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/proc.go:1051

goroutine 1 [تشغيل]:
runtime.systemstack_switch ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:245 fp = 0xc82084cfe0 sp = 0xc82084cfd8
وقت التشغيل. mallocgc (0x80 ، 0x405340 ، 0xc800000000 ، 0x11029)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/malloc.go:643 + 0x869 fp = 0xc82084d0b8 sp = 0xc82084cfe0
وقت التشغيل. newarray (0x405340 ، 0x4 ، 0x0)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/malloc.go:798 + 0xc9 fp = 0xc82084d0f8 sp = 0xc82084d0b8
وقت التشغيل. growslice (0x3b0120 ، 0xc820ac9740 ، 0x2 ، 0x2 ، 0x3 ، 0x0 ، 0x0 ، 0x0)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/slice.go:100 + 0x2c1 fp = 0xc82084d168 sp = 0xc82084d0f8
cmd / تجميع / داخلي / gc.lenessepilogue (0xc820b028c0)
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/plive.go:1289 + 0x3323 fp = 0xc82084d708 sp = 0xc82084d168
cmd / تجميع / داخلي / gc.liveness (0xc820518b40 ، 0xc820ba4360 ، 0xc820b17480 ، 0xc820b17500)
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/plive.go:1794 + 0x334 fp = 0xc82084d7e8 sp = 0xc82084d708
cmd / تجميع / داخلي / gc.compile (0xc820518b40)
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/pgen.go:541 + 0xdf2 fp = 0xc82084da58 sp = 0xc82084d7e8
cmd / تجميع / داخلي / gc.funccompile (0xc820518b40)
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/dcl.go:1450 + 0x1c0 fp = 0xc82084dad0 sp = 0xc82084da58
cmd / تجميع / داخلي / gc.Main ()
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/lex.go:472 + 0x2116 fp = 0xc82084ddf0 sp = 0xc82084dad0
cmd / تجميع / داخلي / amd64.Main ()
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/amd64/galign.go:127 + 0x58d fp = 0xc82084de58 sp = 0xc82084ddf0
الرئيسية الرئيسية()
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/main.go:32 + 0x395 fp = 0xc82084df30 sp = 0xc82084de58
runtime.main ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/proc.go:188 + 0x2b0 fp = 0xc82084df80 sp = 0xc82084df30
runtime.goexit ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:1998 + 0x1 fp = 0xc82084df88 sp = 0xc82084df80

-
أنت تتلقى هذا لأنك مشترك في هذا الموضوع.
قم بالرد على هذا البريد الإلكتروني مباشرة ، وقم بعرضه على GitHub
https://github.com/golang/go/issues/17241 ، أو كتم الخيط
https://github.com/notifications/unsubscribe-auth/AAIR5C2-SKYNt3CqpAEFbHLlLyOY1Ja6ks5quCxAgaJpZM4KG9tL
.

>كل التعليقات

Go 1.6.2 لا يدعم macOS 10.12 ، يرجى الترقية إلى Go 1.7.

في 26 سبتمبر 2016 ، الساعة 4:34 مساءً ، كتب "Bart Grantham" [email protected] :

أنا أعمل من خلال بعض التعليمات البرمجية لكتاب "Go Web Programming"
بواسطة Sau Sheong Chang (مانينغ ، 2016) وحصلت على "خطأ فادح: إشارة غير متوقعة
أثناء تنفيذ وقت التشغيل "حاول تشغيل go build مرة واحدة ، ثم حاول أ
مرة ثانية بعد دقيقة واحدة دون تجربة أي شيء ونجح الأمر. الرمز
كنت أقوم بالبناء هنا
https://github.com/sausheong/gwp/tree/master/Chapter_2_Go_ChitChat/chitchat
.

أريد أن أكرر: هذا حدث مرة واحدة فقط. تشغيل لاحق من go build _without
تغيير أي شيء _ عملت كما هو متوقع. للأسف ليس لدي أي شيء تقريبًا
معلومات لتوفيرها بالإضافة إلى قص ولصق لتتبع المكدس أدناه
لأنني لم أتمكن من الإنجاب. رأيت تم فتح قضية
https://github.com/golang/go/issues/11792 مع ما يبدو أنه ملف
نفس الخطأ ، ولكن هذا الخيط أشار إلى أنه إذا ظهر على جهاز حقيقي
(نعم: 2013 MacBook Pro) أنه يجب فتح إصدار جديد.

إصدار go: go version go1.6.2 darwin / amd64
go env:

GOARCH = "amd64"
GOBIN = ""
GOEXE = ""
GOHOSTARCH = "amd64"
GOHOSTOS = "داروين"
GOOS = "داروين"
GOPATH = "/ Users / bart / go"
غوراس = ""
GOROOT = "/ usr / local / Cellar / go / 1.6.2 / libexec"
GOTOOLDIR = "/ usr / local / Cellar / go / 1.6.2 / libexec / pkg / tool / darwin_amd64"
GO15VENDOREXPERIMENT = "1"
CC = "رنة"
GOGCCFLAGS = "- fPIC -m64 -pthread -fno-caret-Diagnostics -Qunused-arguments -fmessage-length = 0 -fno-common"
CXX = "كلانج ++"
CGO_ENABLED = "1"

bart @ Barts-MBP : chitchat (سيد *) $ go build

github.com/sausheong/gwp/Chapter_2_Go_ChitChat/chitchat/data

خطأ فادح: إشارة غير متوقعة أثناء تنفيذ وقت التشغيل
[رمز الإشارة 0xb = 0x1 addr = 0x7b6c76bc73b0 pc = 0xf0eb]

كومة وقت التشغيل:
runtime.throw (0x4971e0، 0x2a)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/panic.go:547 + 0x90
runtime.sigpanic ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/sigpanic_unix.go:12 + 0x5a
وقت التشغيل. unlock (0x984540)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/lock_sema.go:107 + 0x14b
وقت التشغيل. (_ mheap) .alloc_m (0x984540 ، 0x1 ، 0x9 ، 0xb92fa0)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mheap.go:492 + 0x314
وقت التشغيل. (_ mheap) .alloc.func1 ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mheap.go:502 + 0x41
runtime.systemstack (0x7fff5fbff218)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:307 + 0xab
وقت التشغيل. (_ mheap) .alloc (0x984540 ، 0x1 ، 0x10000000009 ، 0xed8f)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mheap.go:503 + 0x63
وقت التشغيل. (_ mcentral) .grow (0x985c00، 0x0)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mcentral.go:209 + 0x93
وقت التشغيل. (_ mcentral). cacheSpan (0x985c00 ، 0xb54508)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mcentral.go:89 + 0x47d
وقت التشغيل. (_ mcache). إعادة التعبئة (0xaf64b0، 0x9، 0xb54508)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/mcache.go:119 + 0xcc
runtime.mallocgc.func2 ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/malloc.go:642 + 0x2b
runtime.systemstack (0x975d00)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:291 + 0x79
runtime.mstart ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/proc.go:1051

goroutine 1 [تشغيل]:
runtime.systemstack_switch ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:245 fp = 0xc82084cfe0 sp = 0xc82084cfd8
وقت التشغيل. mallocgc (0x80 ، 0x405340 ، 0xc800000000 ، 0x11029)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/malloc.go:643 + 0x869 fp = 0xc82084d0b8 sp = 0xc82084cfe0
وقت التشغيل. newarray (0x405340 ، 0x4 ، 0x0)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/malloc.go:798 + 0xc9 fp = 0xc82084d0f8 sp = 0xc82084d0b8
وقت التشغيل. growslice (0x3b0120 ، 0xc820ac9740 ، 0x2 ، 0x2 ، 0x3 ، 0x0 ، 0x0 ، 0x0)
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/slice.go:100 + 0x2c1 fp = 0xc82084d168 sp = 0xc82084d0f8
cmd / تجميع / داخلي / gc.lenessepilogue (0xc820b028c0)
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/plive.go:1289 + 0x3323 fp = 0xc82084d708 sp = 0xc82084d168
cmd / تجميع / داخلي / gc.liveness (0xc820518b40 ، 0xc820ba4360 ، 0xc820b17480 ، 0xc820b17500)
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/plive.go:1794 + 0x334 fp = 0xc82084d7e8 sp = 0xc82084d708
cmd / تجميع / داخلي / gc.compile (0xc820518b40)
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/pgen.go:541 + 0xdf2 fp = 0xc82084da58 sp = 0xc82084d7e8
cmd / تجميع / داخلي / gc.funccompile (0xc820518b40)
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/dcl.go:1450 + 0x1c0 fp = 0xc82084dad0 sp = 0xc82084da58
cmd / تجميع / داخلي / gc.Main ()
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/gc/lex.go:472 + 0x2116 fp = 0xc82084ddf0 sp = 0xc82084dad0
cmd / تجميع / داخلي / amd64.Main ()
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/internal/amd64/galign.go:127 + 0x58d fp = 0xc82084de58 sp = 0xc82084ddf0
الرئيسية الرئيسية()
/usr/local/Cellar/go/1.6.2/libexec/src/cmd/compile/main.go:32 + 0x395 fp = 0xc82084df30 sp = 0xc82084de58
runtime.main ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/proc.go:188 + 0x2b0 fp = 0xc82084df80 sp = 0xc82084df30
runtime.goexit ()
/usr/local/Cellar/go/1.6.2/libexec/src/runtime/asm_amd64.s:1998 + 0x1 fp = 0xc82084df88 sp = 0xc82084df80

-
أنت تتلقى هذا لأنك مشترك في هذا الموضوع.
قم بالرد على هذا البريد الإلكتروني مباشرة ، وقم بعرضه على GitHub
https://github.com/golang/go/issues/17241 ، أو كتم الخيط
https://github.com/notifications/unsubscribe-auth/AAIR5C2-SKYNt3CqpAEFbHLlLyOY1Ja6ks5quCxAgaJpZM4KG9tL
.

هل كانت هذه الصفحة مفيدة؟
0 / 5 - 0 التقييمات