X7ROOT File Manager
Current Path:
/opt/golang/1.19.4/src/runtime/testdata/testprog
opt
/
golang
/
1.19.4
/
src
/
runtime
/
testdata
/
testprog
/
📁
..
📄
abort.go
(449 B)
📄
badtraceback.go
(1.18 KB)
📄
checkptr.go
(2.16 KB)
📄
crash.go
(2.47 KB)
📄
crashdump.go
(917 B)
📄
deadlock.go
(6.5 KB)
📄
gc.go
(12.08 KB)
📄
lockosthread.go
(6.54 KB)
📄
main.go
(651 B)
📄
map.go
(1.26 KB)
📄
memprof.go
(869 B)
📄
misc.go
(306 B)
📄
numcpu_freebsd.go
(3.38 KB)
📄
panicprint.go
(2.22 KB)
📄
panicrace.go
(414 B)
📄
preempt.go
(1.61 KB)
📄
signal.go
(861 B)
📄
sleep.go
(378 B)
📄
stringconcat.go
(443 B)
📄
syscall_windows.go
(1.37 KB)
📄
syscalls.go
(256 B)
📄
syscalls_linux.go
(1.26 KB)
📄
syscalls_none.go
(455 B)
📄
timeprof.go
(813 B)
📄
traceback_ancestors.go
(2.06 KB)
📄
vdso.go
(1005 B)
Editing: stringconcat.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package main import "strings" func init() { register("stringconcat", stringconcat) } func stringconcat() { s0 := strings.Repeat("0", 1<<10) s1 := strings.Repeat("1", 1<<10) s2 := strings.Repeat("2", 1<<10) s3 := strings.Repeat("3", 1<<10) s := s0 + s1 + s2 + s3 panic(s) }
Upload File
Create Folder