Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
go /
src /
go /
printer /
testdata /
[ HOME SHELL ]
Name
Size
Permission
Action
alignment.golden
4.12
KB
-rw-r--r--
alignment.input
4.92
KB
-rw-r--r--
comments.golden
11.12
KB
-rw-r--r--
comments.input
11.16
KB
-rw-r--r--
comments.x
1.22
KB
-rw-r--r--
comments2.golden
2.25
KB
-rw-r--r--
comments2.input
2.29
KB
-rw-r--r--
complit.input
912
B
-rw-r--r--
complit.x
1.14
KB
-rw-r--r--
declarations.golden
16.23
KB
-rw-r--r--
declarations.input
16.46
KB
-rw-r--r--
empty.golden
94
B
-rw-r--r--
empty.input
94
B
-rw-r--r--
expressions.golden
12.41
KB
-rw-r--r--
expressions.input
12.13
KB
-rw-r--r--
expressions.raw
12.38
KB
-rw-r--r--
linebreaks.golden
5.09
KB
-rw-r--r--
linebreaks.input
5.07
KB
-rw-r--r--
parser.go
50.69
KB
-rw-r--r--
slow.golden
2.02
KB
-rw-r--r--
slow.input
1.94
KB
-rw-r--r--
statements.golden
8.04
KB
-rw-r--r--
statements.input
8.32
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : slow.golden
// Copyright 2011 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 deepequal_test import ( "testing" "google3/spam/archer/frontend/deepequal" ) func TestTwoNilValues(t *testing.T) { if err := deepequal.Check(nil, nil); err != nil { t.Errorf("expected nil, saw %v", err) } } type Foo struct { bar *Bar bang *Bar } type Bar struct { baz *Baz foo []*Foo } type Baz struct { entries map[int]interface{} whatever string } func newFoo() *Foo { return &Foo{bar: &Bar{baz: &Baz{ entries: map[int]interface{}{ 42: &Foo{}, 21: &Bar{}, 11: &Baz{whatever: "it's just a test"}}}}, bang: &Bar{foo: []*Foo{ &Foo{bar: &Bar{baz: &Baz{ entries: map[int]interface{}{ 43: &Foo{}, 22: &Bar{}, 13: &Baz{whatever: "this is nuts"}}}}, bang: &Bar{foo: []*Foo{ &Foo{bar: &Bar{baz: &Baz{ entries: map[int]interface{}{ 61: &Foo{}, 71: &Bar{}, 11: &Baz{whatever: "no, it's Go"}}}}, bang: &Bar{foo: []*Foo{ &Foo{bar: &Bar{baz: &Baz{ entries: map[int]interface{}{ 0: &Foo{}, -2: &Bar{}, -11: &Baz{whatever: "we need to go deeper"}}}}, bang: &Bar{foo: []*Foo{ &Foo{bar: &Bar{baz: &Baz{ entries: map[int]interface{}{ -2: &Foo{}, -5: &Bar{}, -7: &Baz{whatever: "are you serious?"}}}}, bang: &Bar{foo: []*Foo{}}}, &Foo{bar: &Bar{baz: &Baz{ entries: map[int]interface{}{ -100: &Foo{}, 50: &Bar{}, 20: &Baz{whatever: "na, not really ..."}}}}, bang: &Bar{foo: []*Foo{}}}}}}}}}, &Foo{bar: &Bar{baz: &Baz{ entries: map[int]interface{}{ 2: &Foo{}, 1: &Bar{}, -1: &Baz{whatever: "... it's just a test."}}}}, bang: &Bar{foo: []*Foo{}}}}}}}}} } func TestElaborate(t *testing.T) { a := newFoo() b := newFoo() if err := deepequal.Check(a, b); err != nil { t.Errorf("expected nil, saw %v", err) } }
Close