Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
cpan /
Unicode-Normalize /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
fcdc.t
4.94
KB
-r--r--r--
2014-12-27 11:49
form.t
2.52
KB
-r--r--r--
2014-12-27 11:48
func.t
12.19
KB
-r--r--r--
2014-12-27 11:49
illegal.t
1.79
KB
-r--r--r--
2014-12-27 11:49
norm.t
4.18
KB
-r--r--r--
2014-12-27 11:49
null.t
2.01
KB
-r--r--r--
2014-12-27 11:49
partial1.t
2.83
KB
-r--r--r--
2014-12-27 11:49
partial2.t
2.72
KB
-r--r--r--
2014-12-27 11:49
proto.t
2.46
KB
-r--r--r--
2014-12-27 11:49
split.t
3.6
KB
-r--r--r--
2014-12-27 11:49
test.t
4.53
KB
-r--r--r--
2014-12-27 11:49
tie.t
1.73
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
BEGIN { unless ('A' eq pack('U', 0x41)) { print "1..0 # Unicode::Normalize cannot pack a Unicode code point\n"; exit 0; } unless (0x41 == unpack('U', 'A')) { print "1..0 # Unicode::Normalize cannot get a Unicode code point\n"; exit 0; } } BEGIN { if ($ENV{PERL_CORE}) { chdir('t') if -d 't'; @INC = $^O eq 'MacOS' ? qw(::lib) : qw(../lib); } } ######################### use strict; use warnings; BEGIN { $| = 1; print "1..48\n"; } my $count = 0; sub ok ($;$) { my $p = my $r = shift; if (@_) { my $x = shift; $p = !defined $x ? !defined $r : !defined $r ? 0 : $r eq $x; } print $p ? "ok" : "not ok", ' ', ++$count, "\n"; } use Unicode::Normalize qw(:all); ok(1); ######################### # unary op. RING-CEDILLA ok( "\x{30A}\x{327}" ne "\x{327}\x{30A}"); ok(NFD "\x{30A}\x{327}" eq "\x{327}\x{30A}"); ok(NFC "\x{30A}\x{327}" eq "\x{327}\x{30A}"); ok(NFKD "\x{30A}\x{327}" eq "\x{327}\x{30A}"); ok(NFKC "\x{30A}\x{327}" eq "\x{327}\x{30A}"); ok(FCD "\x{30A}\x{327}" eq "\x{327}\x{30A}"); ok(FCC "\x{30A}\x{327}" eq "\x{327}\x{30A}"); ok(reorder "\x{30A}\x{327}" eq "\x{327}\x{30A}"); # 9 ok(prototype \&normalize,'$$'); ok(prototype \&NFD, '$'); ok(prototype \&NFC, '$'); ok(prototype \&NFKD, '$'); ok(prototype \&NFKC, '$'); ok(prototype \&FCD, '$'); ok(prototype \&FCC, '$'); ok(prototype \&check, '$$'); ok(prototype \&checkNFD, '$'); ok(prototype \&checkNFC, '$'); ok(prototype \&checkNFKD,'$'); ok(prototype \&checkNFKC,'$'); ok(prototype \&checkFCD, '$'); ok(prototype \&checkFCC, '$'); ok(prototype \&decompose, '$;$'); ok(prototype \&reorder, '$'); ok(prototype \&compose, '$'); ok(prototype \&composeContiguous, '$'); # 27 ok(prototype \&getCanon, '$'); ok(prototype \&getCompat, '$'); ok(prototype \&getComposite, '$$'); ok(prototype \&getCombinClass,'$'); ok(prototype \&isExclusion, '$'); ok(prototype \&isSingleton, '$'); ok(prototype \&isNonStDecomp, '$'); ok(prototype \&isComp2nd, '$'); ok(prototype \&isComp_Ex, '$'); ok(prototype \&isNFD_NO, '$'); ok(prototype \&isNFC_NO, '$'); ok(prototype \&isNFC_MAYBE, '$'); ok(prototype \&isNFKD_NO, '$'); ok(prototype \&isNFKC_NO, '$'); ok(prototype \&isNFKC_MAYBE, '$'); ok(prototype \&splitOnLastStarter, undef); ok(prototype \&normalize_partial, '$$'); ok(prototype \&NFD_partial, '$'); ok(prototype \&NFC_partial, '$'); ok(prototype \&NFKD_partial, '$'); ok(prototype \&NFKC_partial, '$'); # 48