⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eq.al

📁 美国CMU大学开发的操作系统健壮性评测软件
💻 AL
字号:
# NOTE: Derived from ./blib/lib/URI/URL/_generic.pm.  Changes made here will be lost.package URI::URL::_generic;# Compare two URLssub eq {    my($self, $other) = @_;    local($^W) = 0; # avoid warnings if we compare undef values    $other = URI::URL->new($other, $self) unless ref $other;    # Compare scheme and netloc    return 0 if ref($self) ne ref($other);                # must be same class    return 0 if $self->scheme ne $other->scheme;          # Always lower case    return 0 if lc($self->netloc) ne lc($other->netloc);  # Case-insensitive    # Compare full_path:    # According to <draft-ietf-http-v11-spec-05>:    # Characters other than those in the "reserved" and "unsafe" sets    # are equivalent to their %XX encodings.    my $fp1 = $self->full_path;    my $fp2 = $other->full_path;    for ($fp1, $fp2) {	s,%([\dA-Fa-f]{2}),	  my $x = $1;	  my $c = chr(hex($x));	  $c =~ /^[;\/?:\@&=+\"\#%<>\0-\040\177]/ ? "%\L$x" : $c;	,eg;    }    return 0 if $fp1 ne $fp2;    return 0 if $self->frag ne $other->frag;    1;}1;1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -