Home
last modified time | relevance | path

Searched refs:prohibited (Results 1 – 25 of 7054) sorted by relevance

12345678910>>...283

/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/contrib/highlighter/
H A DQueryTermExtractor.cpp46 Collection<WeightedTermPtr> QueryTermExtractor::getTerms(const QueryPtr& query, bool prohibited, co… in getTerms() argument
48 getTerms(query, terms, prohibited, fieldName); in getTerms()
52 Collection<WeightedTermPtr> QueryTermExtractor::getTerms(const QueryPtr& query, bool prohibited) { in getTerms() argument
54 getTerms(query, terms, prohibited, L""); in getTerms()
58 void QueryTermExtractor::getTerms(const QueryPtr& query, SetWeightedTerm terms, bool prohibited, co… in getTerms() argument
61 …msFromBooleanQuery(boost::dynamic_pointer_cast<BooleanQuery>(query), terms, prohibited, fieldName); in getTerms()
63 …FromFilteredQuery(boost::dynamic_pointer_cast<FilteredQuery>(query), terms, prohibited, fieldName); in getTerms()
78 …BooleanQuery(const BooleanQueryPtr& query, SetWeightedTerm terms, bool prohibited, const String& f… in getTermsFromBooleanQuery() argument
81 if (prohibited || queryClauses[i]->getOccur() != BooleanClause::MUST_NOT) { in getTermsFromBooleanQuery()
82 getTerms(queryClauses[i]->getQuery(), terms, prohibited, fieldName); in getTermsFromBooleanQuery()
[all …]
/dports/sysutils/py-salt/salt-3004.1/salt/ext/
H A Dsaslprep.py69 prohibited = _PROHIBITED + (stringprep.in_table_a1,)
71 prohibited = _PROHIBITED
96 prohibited = prohibited + (stringprep.in_table_d2,)
101 prohibited = prohibited + (in_table_d1,)
105 if any(in_table(char) for in_table in prohibited):
/dports/textproc/p5-Plucene/Plucene-1.25/lib/Plucene/Search/
H A DBooleanQuery.pm95 my ($self, $query, $required, $prohibited) = @_;
100 prohibited => ($prohibited || 0) });
137 sum map $_->query->sum_squared_weights($searcher), grep !$_->prohibited,
149 $_->query->normalize($norm) for grep !$_->prohibited, $self->clauses;
157 return $c->query->_scorer($reader) unless $c->prohibited;
164 $result->add($subscorer, $c->required, $c->prohibited);
185 $buffer .= "-" if $_->prohibited;
H A DBooleanScorer.pm68 my ($self, $scorer, $required, $prohibited) = @_;
70 if ($required || $prohibited) {
75 $self->{max_coord}++ unless $prohibited;
77 $self->{prohibited_mask} |= $mask if $prohibited;
83 prohibited => $prohibited,
133 my $prohibited = $scorer->prohibited_mask;
137 if ( ($bucket->{bits} & $prohibited) == 0
/dports/databases/pymongo/pymongo-3.12.0/pymongo/
H A Dsaslprep.py68 prohibited = _PROHIBITED + (stringprep.in_table_a1,)
70 prohibited = _PROHIBITED
95 prohibited = prohibited + (stringprep.in_table_d2,)
100 prohibited = prohibited + (in_table_d1,)
104 if any(in_table(char) for in_table in prohibited):
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/clucene/src/CLucene/search/
H A DBooleanClause.h38 bool prohibited; in CL_NS_DEF() local
47 prohibited(p), in CL_NS_DEF()
60 prohibited(clone.prohibited), in CL_NS_DEF()
79 && (this->prohibited == other->prohibited); in CL_NS_DEF()
83 return query->hashCode() ^ (this->required?1:0) ^ (this->prohibited?2:0); in CL_NS_DEF()
/dports/textproc/clucene/clucene-core-2.3.3.4/src/contribs-lib/CLucene/highlighter/
H A DQueryTermExtractor.cpp30 …WeightedTerm** QueryTermExtractor::getTerms(const Query * query, bool prohibited, const TCHAR* fie… in CL_NS_DEF2()
33 getTerms(query,&terms,prohibited,fieldName); in CL_NS_DEF2()
42 …void QueryTermExtractor::getTerms(const Query * query, WeightedTermList * terms, bool prohibited, … in getTerms() argument
46 getTermsFromBooleanQuery((BooleanQuery *) query, terms, prohibited, fieldName); in getTerms()
108 …ooleanQuery(const BooleanQuery * query, WeightedTermList * terms, bool prohibited, const TCHAR* fi… in getTermsFromBooleanQuery() argument
116 if (prohibited || !queryClauses[i]->prohibited){ in getTermsFromBooleanQuery()
118 getTerms(qry, terms, prohibited, fieldName); in getTermsFromBooleanQuery()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/tools/jpackage/share/jdk/jpackage/tests/
H A DJLinkOptionsTest.java114 …inkOptionsTest(String javaAppDesc, String[] jpackageArgs, String[] required, String[] prohibited) { in opVariableArrayAsync()
116 this.prohibited = prohibited; in opVariableArrayAsync()
134 if (prohibited != null) { in opVariableArrayAsync()
135 for (String s : prohibited) { in opVariableArrayAsync()
142 private final String[] prohibited; in opVariableArrayAsync()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/tools/jpackage/share/jdk/jpackage/tests/
H A DJLinkOptionsTest.java114 …inkOptionsTest(String javaAppDesc, String[] jpackageArgs, String[] required, String[] prohibited) { in JLinkOptionsTest() argument
116 this.prohibited = prohibited; in JLinkOptionsTest()
134 if (prohibited != null) { in test()
135 for (String s : prohibited) { in test()
142 private final String[] prohibited; field in JLinkOptionsTest
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/tools/jpackage/share/jdk/jpackage/tests/
H A DJLinkOptionsTest.java115 …inkOptionsTest(String javaAppDesc, String[] jpackageArgs, String[] required, String[] prohibited) { in JLinkOptionsTest() argument
117 this.prohibited = prohibited; in JLinkOptionsTest()
135 if (prohibited != null) { in test()
136 for (String s : prohibited) { in test()
143 private final String[] prohibited; field in JLinkOptionsTest
/dports/textproc/luceneplusplus/LucenePlusPlus-rel_3.0.8/src/contrib/include/
H A DQueryTermExtractor.h46 …static Collection<WeightedTermPtr> getTerms(const QueryPtr& query, bool prohibited, const String& …
53 static Collection<WeightedTermPtr> getTerms(const QueryPtr& query, bool prohibited);
55 …static void getTerms(const QueryPtr& query, SetWeightedTerm terms, bool prohibited, const String& …
62 …BooleanQuery(const BooleanQueryPtr& query, SetWeightedTerm terms, bool prohibited, const String& f…
63 …lteredQuery(const FilteredQueryPtr& query, SetWeightedTerm terms, bool prohibited, const String& f…
/dports/textproc/p5-Plucene/Plucene-1.25/lib/Plucene/
H A DQueryParser.pm160 $clauses->[-1]->required(1) unless $clauses->[-1]->prohibited;
165 $clauses->[-1]->required(0) unless $clauses->[-1]->prohibited;
169 my $prohibited;
175 $prohibited = ($term->{mods} eq "NOT");
178 $required = 1 if $term->{conj} eq "AND" and !$prohibited;
183 $prohibited = ($term->{mods} eq "NOT");
184 $required = (!$prohibited and $term->{conj} ne "OR");
190 prohibited => $prohibited,
/dports/security/py-asyncssh/asyncssh-2.8.1/asyncssh/
H A Dsaslprep.py62 def _stringprep(s, check_unassigned, mapping, normalization, prohibited, bidi): argument
79 if prohibited: # pragma: no branch
81 for lookup in prohibited:
108 prohibited = (stringprep.in_table_c12, stringprep.in_table_c21_c22,
114 return _stringprep(s, True, _map_saslprep, 'NFKC', prohibited, True)
/dports/devel/tcllib/tcllib-1.20/modules/stringprep/
H A Dstringprep.test36 -prohibited {A.1 C.1.2 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
43 -prohibited {A.1 C.1.1 C.1.2 C.2.1 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
59 test stringprep-1.3 {register: bad -prohibited table} {
60 catch {::stringprep::register type -prohibited {B.1}} result
62 } {::stringprep::register -prohibited: Only tables A.1, C.* are allowed to prohibit}
64 test stringprep-1.4 {register: bad -prohibited table 2} {
65 catch {::stringprep::register type -prohibited {C.4}} result
84 test stringprep-2.2 {stringprep: prohibited character} {
89 test stringprep-2.3 {stringprep: prohibited bidi} {
143 -prohibited {A.1 C.1.2 C.2.1 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
[all …]
H A Dstringprep.tcllib.man25 [opt [arg "-prohibited list"]] \
51 Option [arg -prohibited] takes a list of RFC-3454 tables with prohibited
58 Option [arg -prohibitedList] specifies a list of additional prohibited
67 true then the character is considered prohibited. This option is useful when
83 [arg prohibited_character] (string [arg string] contains a prohibited character)
84 or [arg prohibited_bidi] (string [arg string] contains a prohibited bidirectional
107 -prohibited {A.1 C.1.2 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
117 -prohibited {A.1 C.1.1 C.1.2 C.2.1 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
124 -prohibited {A.1 C.1.2 C.2.1 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
/dports/devel/tcllibc/tcllib-1.20/modules/stringprep/
H A Dstringprep.test36 -prohibited {A.1 C.1.2 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
43 -prohibited {A.1 C.1.1 C.1.2 C.2.1 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
59 test stringprep-1.3 {register: bad -prohibited table} {
60 catch {::stringprep::register type -prohibited {B.1}} result
62 } {::stringprep::register -prohibited: Only tables A.1, C.* are allowed to prohibit}
64 test stringprep-1.4 {register: bad -prohibited table 2} {
65 catch {::stringprep::register type -prohibited {C.4}} result
84 test stringprep-2.2 {stringprep: prohibited character} {
89 test stringprep-2.3 {stringprep: prohibited bidi} {
143 -prohibited {A.1 C.1.2 C.2.1 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
[all …]
H A Dstringprep.tcllib.man25 [opt [arg "-prohibited list"]] \
51 Option [arg -prohibited] takes a list of RFC-3454 tables with prohibited
58 Option [arg -prohibitedList] specifies a list of additional prohibited
67 true then the character is considered prohibited. This option is useful when
83 [arg prohibited_character] (string [arg string] contains a prohibited character)
84 or [arg prohibited_bidi] (string [arg string] contains a prohibited bidirectional
107 -prohibited {A.1 C.1.2 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
117 -prohibited {A.1 C.1.1 C.1.2 C.2.1 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
124 -prohibited {A.1 C.1.2 C.2.1 C.2.2 C.3 C.4 C.5 C.6 C.7 C.8 C.9} \
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/clucene/src/CLucene/queryParser/
H A DQueryParserBase.cpp60 bool required, prohibited; in AddClause() local
67 if (!c->prohibited) in AddClause()
77 if (!c->prohibited){ in AddClause()
79 c->prohibited = false; in AddClause()
91 prohibited = (mods == MOD_NOT); in AddClause()
93 if (conj == CONJ_AND && !prohibited) { in AddClause()
99 prohibited = (mods == MOD_NOT); in AddClause()
100 required = (!prohibited && conj != CONJ_OR); in AddClause()
103 if ( required && prohibited ) in AddClause()
105 clauses.push_back(_CLNEW BooleanClause(q,true, required, prohibited)); in AddClause()
/dports/textproc/clucene/clucene-core-2.3.3.4/src/core/CLucene/queryParser/legacy/
H A DQueryParserBase.cpp68 bool required, prohibited; in AddClause() local
75 if (!c->prohibited) in AddClause()
85 if (!c->prohibited){ in AddClause()
87 c->prohibited = false; in AddClause()
99 prohibited = (mods == MOD_NOT); in AddClause()
101 if (conj == CONJ_AND && !prohibited) { in AddClause()
107 prohibited = (mods == MOD_NOT); in AddClause()
108 required = (!prohibited && conj != CONJ_OR); in AddClause()
111 if ( required && prohibited ) in AddClause()
113 clauses.push_back(_CLNEW BooleanClause(q,true, required, prohibited)); in AddClause()
/dports/devel/autoconf/autoconf-2.69/bin/
H A Dautom4te.in559 my %prohibited;
580 $prohibited{$_} = $.
581 if !/^$/ && /$forbidden/o && !/$allowed/o && ! exists $prohibited{$_};
594 if ! %prohibited;
601 my $prohibited = '\b(' . join ('|', keys %prohibited) . ')\b';
612 while (/$prohibited/)
616 delete $prohibited{$word};
619 if ! %prohibited;
620 $prohibited = '\b(' . join ('|', keys %prohibited) . ')\b';
624 warn_forbidden ("$output:$prohibited{$_}", $_, %forbidden)
[all …]
/dports/devel/tcllib/tcllib-1.20/embedded/md/tcllib/files/modules/stringprep/
H A Dstringprep.md47 [__::stringprep::register__ *profile* ?*\-mapping list*? ?*\-normalization form*? ?*\-prohibited li…
59 …::register__ *profile* ?*\-mapping list*? ?*\-normalization form*? ?*\-prohibited list*? ?*\-prohi…
76 Option *\-prohibited* takes a list of RFC\-3454 tables with prohibited
81 Option *\-prohibitedList* specifies a list of additional prohibited
89 then the character is considered prohibited\. This option is useful when a
101 *prohibited\_character* \(string *string* contains a prohibited character\)
102 or *prohibited\_bidi* \(string *string* contains a prohibited
116 …::stringprep::register nameprep -mapping {B.1 B.2} -normalization KC -prohibited {A.1 C.1.2 C.2…
120 …::stringprep::register nodeprep -mapping {B.1 B.2} -normalization KC -prohibited {A.1 C.1.1 C.1…
122 …::stringprep::register resourceprep -mapping {B.1} -normalization KC -prohibited {A.1 C.1.2 C.2…
/dports/devel/tcllibc/tcllib-1.20/embedded/md/tcllib/files/modules/stringprep/
H A Dstringprep.md47 [__::stringprep::register__ *profile* ?*\-mapping list*? ?*\-normalization form*? ?*\-prohibited li…
59 …::register__ *profile* ?*\-mapping list*? ?*\-normalization form*? ?*\-prohibited list*? ?*\-prohi…
76 Option *\-prohibited* takes a list of RFC\-3454 tables with prohibited
81 Option *\-prohibitedList* specifies a list of additional prohibited
89 then the character is considered prohibited\. This option is useful when a
101 *prohibited\_character* \(string *string* contains a prohibited character\)
102 or *prohibited\_bidi* \(string *string* contains a prohibited
116 …::stringprep::register nameprep -mapping {B.1 B.2} -normalization KC -prohibited {A.1 C.1.2 C.2…
120 …::stringprep::register nodeprep -mapping {B.1 B.2} -normalization KC -prohibited {A.1 C.1.1 C.1…
122 …::stringprep::register resourceprep -mapping {B.1} -normalization KC -prohibited {A.1 C.1.2 C.2…
/dports/databases/mariadb105-client/mariadb-10.5.15/mysql-test/main/
H A Dplugin_maturity.result2 …y 'ha_example.so' (errno: 1, Loading of experimental plugin EXAMPLE is prohibited by --plugin-matu…
4 …y 'ha_example.so' (errno: 1, Loading of experimental plugin EXAMPLE is prohibited by --plugin-matu…
7 …y 'ha_example.so' (errno: 1, Loading of experimental plugin EXAMPLE is prohibited by --plugin-matu…
8 … 'ha_example.so' (errno: 1, Loading of experimental plugin UNUSABLE is prohibited by --plugin-matu…
/dports/databases/mariadb104-client/mariadb-10.4.24/mysql-test/main/
H A Dplugin_maturity.result2 …y 'ha_example.so' (errno: 1, Loading of experimental plugin EXAMPLE is prohibited by --plugin-matu…
4 …y 'ha_example.so' (errno: 1, Loading of experimental plugin EXAMPLE is prohibited by --plugin-matu…
7 …y 'ha_example.so' (errno: 1, Loading of experimental plugin EXAMPLE is prohibited by --plugin-matu…
8 … 'ha_example.so' (errno: 1, Loading of experimental plugin UNUSABLE is prohibited by --plugin-matu…
/dports/databases/mariadb104-server/mariadb-10.4.24/mysql-test/main/
H A Dplugin_maturity.result2 …y 'ha_example.so' (errno: 1, Loading of experimental plugin EXAMPLE is prohibited by --plugin-matu…
4 …y 'ha_example.so' (errno: 1, Loading of experimental plugin EXAMPLE is prohibited by --plugin-matu…
7 …y 'ha_example.so' (errno: 1, Loading of experimental plugin EXAMPLE is prohibited by --plugin-matu…
8 … 'ha_example.so' (errno: 1, Loading of experimental plugin UNUSABLE is prohibited by --plugin-matu…

12345678910>>...283