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.184
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 /
golang.org /
x /
text@v0.14.0 /
width /
[ HOME SHELL ]
Name
Size
Permission
Action
common_test.go
2.49
KB
-r--r--r--
example_test.go
1.38
KB
-r--r--r--
gen.go
3.14
KB
-r--r--r--
gen_common.go
2.59
KB
-r--r--r--
gen_trieval.go
797
B
-r--r--r--
kind_string.go
787
B
-r--r--r--
runes_test.go
11.87
KB
-r--r--r--
tables10.0.0.go
74.25
KB
-r--r--r--
tables11.0.0.go
75.38
KB
-r--r--r--
tables12.0.0.go
76.71
KB
-r--r--r--
tables13.0.0.go
76.53
KB
-r--r--r--
tables15.0.0.go
76.76
KB
-r--r--r--
tables9.0.0.go
71.37
KB
-r--r--r--
tables_test.go
1.49
KB
-r--r--r--
transform.go
5.67
KB
-r--r--r--
transform_test.go
13.83
KB
-r--r--r--
trieval.go
698
B
-r--r--r--
width.go
6.46
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tables_test.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 width import ( "testing" "golang.org/x/text/internal/testtext" ) const ( loSurrogate = 0xD800 hiSurrogate = 0xDFFF ) func TestTables(t *testing.T) { testtext.SkipIfNotLong(t) runes := map[rune]Kind{} getWidthData(func(r rune, tag elem, _ rune) { runes[r] = tag.kind() }) for r := rune(0); r < 0x10FFFF; r++ { if loSurrogate <= r && r <= hiSurrogate { continue } p := LookupRune(r) if got, want := p.Kind(), runes[r]; got != want { t.Errorf("Kind of %U was %s; want %s.", r, got, want) } want, mapped := foldRune(r) if got := p.Folded(); (got == 0) == mapped || got != 0 && got != want { t.Errorf("Folded(%U) = %U; want %U", r, got, want) } want, mapped = widenRune(r) if got := p.Wide(); (got == 0) == mapped || got != 0 && got != want { t.Errorf("Wide(%U) = %U; want %U", r, got, want) } want, mapped = narrowRune(r) if got := p.Narrow(); (got == 0) == mapped || got != 0 && got != want { t.Errorf("Narrow(%U) = %U; want %U", r, got, want) } } } // TestAmbiguous verifies that ambiguous runes with a mapping always map to // a halfwidth rune. func TestAmbiguous(t *testing.T) { for r, m := range mapRunes { if m.e != tagAmbiguous { continue } if k := mapRunes[m.r].e.kind(); k != EastAsianHalfwidth { t.Errorf("Rune %U is ambiguous and maps to a rune of type %v", r, k) } } }
Close