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 : example_test.go
package run_test import ( "context" "errors" "fmt" "net" "net/http" "time" "github.com/oklog/run" ) func ExampleGroup_Add_basic() { var g run.Group { cancel := make(chan struct{}) g.Add(func() error { select { case <-time.After(time.Second): fmt.Printf("The first actor had its time elapsed\n") return nil case <-cancel: fmt.Printf("The first actor was canceled\n") return nil } }, func(err error) { fmt.Printf("The first actor was interrupted with: %v\n", err) close(cancel) }) } { g.Add(func() error { fmt.Printf("The second actor is returning immediately\n") return errors.New("immediate teardown") }, func(err error) { // Note that this interrupt function is called, even though the // corresponding execute function has already returned. fmt.Printf("The second actor was interrupted with: %v\n", err) }) } fmt.Printf("The group was terminated with: %v\n", g.Run()) // Output: // The second actor is returning immediately // The first actor was interrupted with: immediate teardown // The second actor was interrupted with: immediate teardown // The first actor was canceled // The group was terminated with: immediate teardown } func ExampleGroup_Add_context() { ctx, cancel := context.WithCancel(context.Background()) var g run.Group { ctx, cancel := context.WithCancel(ctx) // note: shadowed g.Add(func() error { return runUntilCanceled(ctx) }, func(error) { cancel() }) } go cancel() fmt.Printf("The group was terminated with: %v\n", g.Run()) // Output: // The group was terminated with: context canceled } func ExampleGroup_Add_listener() { var g run.Group { ln, _ := net.Listen("tcp", ":0") g.Add(func() error { defer fmt.Printf("http.Serve returned\n") return http.Serve(ln, http.NewServeMux()) }, func(error) { ln.Close() }) } { g.Add(func() error { return errors.New("immediate teardown") }, func(error) { // }) } fmt.Printf("The group was terminated with: %v\n", g.Run()) // Output: // http.Serve returned // The group was terminated with: immediate teardown } func runUntilCanceled(ctx context.Context) error { <-ctx.Done() return ctx.Err() }
Close