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 /
doc /
testdata /
[ HOME SHELL ]
Name
Size
Permission
Action
a.0.golden
688
B
-rw-r--r--
a.1.golden
688
B
-rw-r--r--
a.2.golden
688
B
-rw-r--r--
a0.go
1.09
KB
-rw-r--r--
a1.go
240
B
-rw-r--r--
b.0.golden
671
B
-rw-r--r--
b.1.golden
937
B
-rw-r--r--
b.2.golden
671
B
-rw-r--r--
b.go
1.27
KB
-rw-r--r--
benchmark.go
7.46
KB
-rw-r--r--
blank.0.golden
751
B
-rw-r--r--
blank.1.golden
1001
B
-rw-r--r--
blank.2.golden
751
B
-rw-r--r--
blank.go
1.05
KB
-rw-r--r--
bugpara.0.golden
275
B
-rw-r--r--
bugpara.1.golden
275
B
-rw-r--r--
bugpara.2.golden
275
B
-rw-r--r--
bugpara.go
252
B
-rw-r--r--
c.0.golden
620
B
-rw-r--r--
c.1.golden
620
B
-rw-r--r--
c.2.golden
620
B
-rw-r--r--
c.go
1.16
KB
-rw-r--r--
d.0.golden
1.51
KB
-rw-r--r--
d.1.golden
1.51
KB
-rw-r--r--
d.2.golden
1.51
KB
-rw-r--r--
d1.go
1.03
KB
-rw-r--r--
d2.go
789
B
-rw-r--r--
e.0.golden
1.51
KB
-rw-r--r--
e.1.golden
1.78
KB
-rw-r--r--
e.2.golden
2.09
KB
-rw-r--r--
e.go
2.79
KB
-rw-r--r--
error1.0.golden
390
B
-rw-r--r--
error1.1.golden
440
B
-rw-r--r--
error1.2.golden
390
B
-rw-r--r--
error1.go
498
B
-rw-r--r--
error2.0.golden
337
B
-rw-r--r--
error2.1.golden
565
B
-rw-r--r--
error2.2.golden
337
B
-rw-r--r--
error2.go
618
B
-rw-r--r--
example.go
1.58
KB
-rw-r--r--
f.0.golden
215
B
-rw-r--r--
f.1.golden
240
B
-rw-r--r--
f.2.golden
215
B
-rw-r--r--
f.go
486
B
-rw-r--r--
g.0.golden
318
B
-rw-r--r--
g.1.golden
388
B
-rw-r--r--
g.2.golden
318
B
-rw-r--r--
g.go
449
B
-rw-r--r--
issue12839.0.golden
928
B
-rw-r--r--
issue12839.1.golden
962
B
-rw-r--r--
issue12839.2.golden
928
B
-rw-r--r--
issue12839.go
1.34
KB
-rw-r--r--
issue13742.0.golden
299
B
-rw-r--r--
issue13742.1.golden
299
B
-rw-r--r--
issue13742.2.golden
299
B
-rw-r--r--
issue13742.go
411
B
-rw-r--r--
issue16153.0.golden
277
B
-rw-r--r--
issue16153.1.golden
306
B
-rw-r--r--
issue16153.2.golden
277
B
-rw-r--r--
issue16153.go
363
B
-rw-r--r--
issue17788.0.golden
91
B
-rw-r--r--
issue17788.1.golden
91
B
-rw-r--r--
issue17788.2.golden
91
B
-rw-r--r--
issue17788.go
218
B
-rw-r--r--
issue22856.0.golden
654
B
-rw-r--r--
issue22856.1.golden
654
B
-rw-r--r--
issue22856.2.golden
654
B
-rw-r--r--
issue22856.go
1.06
KB
-rw-r--r--
predeclared.0.golden
159
B
-rw-r--r--
predeclared.1.golden
330
B
-rw-r--r--
predeclared.2.golden
159
B
-rw-r--r--
predeclared.go
489
B
-rw-r--r--
template.txt
1.13
KB
-rw-r--r--
testing.0.golden
4.16
KB
-rw-r--r--
testing.1.golden
8.6
KB
-rw-r--r--
testing.2.golden
4.16
KB
-rw-r--r--
testing.go
11.9
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : e.go
// Copyright 2012 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. // The package e is a go/doc test for embedded methods. package e // ---------------------------------------------------------------------------- // Conflicting methods M must not show up. type t1 struct{} // t1.M should not appear as method in a Tx type. func (t1) M() {} type t2 struct{} // t2.M should not appear as method in a Tx type. func (t2) M() {} // T1 has no embedded (level 1) M method due to conflict. type T1 struct { t1 t2 } // ---------------------------------------------------------------------------- // Higher-level method M wins over lower-level method M. // T2 has only M as top-level method. type T2 struct { t1 } // T2.M should appear as method of T2. func (T2) M() {} // ---------------------------------------------------------------------------- // Higher-level method M wins over lower-level conflicting methods M. type t1e struct { t1 } type t2e struct { t2 } // T3 has only M as top-level method. type T3 struct { t1e t2e } // T3.M should appear as method of T3. func (T3) M() {} // ---------------------------------------------------------------------------- // Don't show conflicting methods M embedded via an exported and non-exported // type. // T1 has no embedded (level 1) M method due to conflict. type T4 struct { t2 T2 } // ---------------------------------------------------------------------------- // Don't show embedded methods of exported anonymous fields unless AllMethods // is set. type T4 struct{} // T4.M should appear as method of T5 only if AllMethods is set. func (*T4) M() {} type T5 struct { T4 } // ---------------------------------------------------------------------------- // Recursive type declarations must not lead to endless recursion. type U1 struct { *U1 } // U1.M should appear as method of U1. func (*U1) M() {} type U2 struct { *U3 } // U2.M should appear as method of U2 and as method of U3 only if AllMethods is set. func (*U2) M() {} type U3 struct { *U2 } // U3.N should appear as method of U3 and as method of U2 only if AllMethods is set. func (*U3) N() {} type U4 struct { *u5 } // U4.M should appear as method of U4. func (*U4) M() {} type u5 struct { *U4 } // ---------------------------------------------------------------------------- // A higher-level embedded type (and its methods) wins over the same type (and // its methods) embedded at a lower level. type V1 struct { *V2 *V5 } type V2 struct { *V3 } type V3 struct { *V4 } type V4 struct { *V5 } type V5 struct { *V6 } type V6 struct{} // V4.M should appear as method of V2 and V3 if AllMethods is set. func (*V4) M() {} // V6.M should appear as method of V1 and V5 if AllMethods is set. func (*V6) M() {}
Close