Home
last modified time | relevance | path

Searched refs:_query (Results 1 – 25 of 1570) sorted by relevance

12345678910>>...63

/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/Zend/Cache/Backend/
H A DSqlite.php118 $result = $this->_query($sql);
136 $result = $this->_query($sql);
170 $res = $this->_query($sql);
426 $res = $this->_query($sql);
506 private function _query($query) function in Zend_Cache_Backend_Sqlite
530 $this->_query('VACUUM');
559 $this->_query('DROP INDEX tag_id_index');
560 $this->_query('DROP INDEX tag_name_index');
562 $this->_query('DROP TABLE version');
563 $this->_query('DROP TABLE cache');
[all …]
/dports/databases/p5-MongoDB/MongoDB-v2.2.2/lib/MongoDB/
H A DCursor.pm60 has _query => ( attribute in MongoDB::Cursor
117 $self->_query->set_noCursorTimeout($bool);
149 $self->_query->set_projection($f);
171 $self->_query->set_sort($order);
190 $self->_query->set_limit($num);
216 $self->_query->set_maxAwaitTimeMS( $num );
239 $self->_query->set_maxTimeMS( $num );
314 $self->_query->set_skip($num);
344 $self->_query->set_hint( $index );
406 $self->_query->read_preference($rp);
[all …]
/dports/www/groupoffice/groupoffice-6.4.231-php-71/modules/email/model/
H A DImapSearchQuery.php151 private $_query; variable in GO\\Email\\Model\\ImapSearchQuery
356 if(!empty($this->_query))
372 $this->_query = '';
375 $this->_query .= self::FLAG_ALL.' ';
414 $this->_query .= self::FLAG_NEW.' ';
417 $this->_query .= self::FLAG_RECENT.' ';
420 $this->_query .= self::FLAG_OLD.' ';
423 $this->_query .= self::FLAG_SEEN.' ';
426 $this->_query .= self::FLAG_UNSEEN.' ';
429 $this->_query .= self::FLAG_DELETED.' ';
[all …]
/dports/biology/sra-tools/sra-tools-2.11.0/ncbi-vdb/test/vfs/
H A Dtest-resolver-with-log.cpp56 VPath * _query; member in Fixture
64 , _query ( NULL ), _remote ( NULL ), _cache ( NULL ) in Fixture()
81 RELEASE ( VPath, _query ); in ~Fixture()
90 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "AFVF01.1" ) ); in FIXTURE_TEST_CASE()
96 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "AAAB01" ) ); in FIXTURE_TEST_CASE()
98 ( _resolver, eProtocolHttps, _query, NULL, & _remote, NULL ) ); in FIXTURE_TEST_CASE()
108 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "SRR1008846" ) ); in FIXTURE_TEST_CASE()
120 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "SRR1008846" ) ); in FIXTURE_TEST_CASE()
130 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "AAAA09" ) ); in FIXTURE_TEST_CASE()
138 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "AAAA09" ) ); in FIXTURE_TEST_CASE()
[all …]
/dports/biology/ncbi-vdb/ncbi-vdb-2.11.0/test/vfs/
H A Dtest-resolver-with-log.cpp56 VPath * _query; member in Fixture
64 , _query ( NULL ), _remote ( NULL ), _cache ( NULL ) in Fixture()
81 RELEASE ( VPath, _query ); in ~Fixture()
90 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "AFVF01.1" ) ); in FIXTURE_TEST_CASE()
96 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "AAAB01" ) ); in FIXTURE_TEST_CASE()
98 ( _resolver, eProtocolHttps, _query, NULL, & _remote, NULL ) ); in FIXTURE_TEST_CASE()
108 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "SRR1008846" ) ); in FIXTURE_TEST_CASE()
120 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "SRR1008846" ) ); in FIXTURE_TEST_CASE()
130 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "AAAA09" ) ); in FIXTURE_TEST_CASE()
138 REQUIRE_RC ( VFSManagerMakePath ( _mgr, & _query, "AAAA09" ) ); in FIXTURE_TEST_CASE()
[all …]
/dports/devel/hadoop/jetty-6.1.14/modules/jetty/src/main/java/org/mortbay/jetty/
H A DHttpURI.java67 int _query; field in HttpURI
126 _query=_end; in parse2()
502 if (_path==_query) in getPathAndParam()
516 if (_param==_query) in getParam()
523 if (_query==_fragment) in getQuery()
525 return toUtf8String(_query+1,_fragment-_query-1); in getQuery()
530 if (_query==_fragment) in getQuery()
532 return StringUtil.toString(_raw,_query+1,_fragment-_query-1,encoding); in getQuery()
549 if (_query==_fragment) in decodeQueryTo()
552 UrlEncoded.decodeUtf8To(_raw,_query+1,_fragment-_query-1,parameters,_utf8b); in decodeQueryTo()
[all …]
H A DEncodedHttpURI.java81 if (_path==_query) in getPathAndParam()
83 return StringUtil.toString(_raw,_path,_query-_path,_encoding); in getPathAndParam()
95 if (_param==_query) in getParam()
97 return StringUtil.toString(_raw,_param+1,_query-_param-1,_encoding); in getParam()
102 if (_query==_fragment) in getQuery()
104 return StringUtil.toString(_raw,_query+1,_fragment-_query-1,_encoding); in getQuery()
109 return (_fragment>_query); in hasQuery()
121 if (_query==_fragment) in decodeQueryTo()
123 …UrlEncoded.decodeTo(StringUtil.toString(_raw,_query+1,_fragment-_query-1,_encoding),parameters,_en… in decodeQueryTo()
129 if (_query==_fragment) in decodeQueryTo()
[all …]
/dports/devel/hadoop2/jetty-6.1.14/modules/jetty/src/main/java/org/mortbay/jetty/
H A DHttpURI.java67 int _query; field in HttpURI
126 _query=_end; in parse2()
502 if (_path==_query) in getPathAndParam()
516 if (_param==_query) in getParam()
523 if (_query==_fragment) in getQuery()
525 return toUtf8String(_query+1,_fragment-_query-1); in getQuery()
530 if (_query==_fragment) in getQuery()
532 return StringUtil.toString(_raw,_query+1,_fragment-_query-1,encoding); in getQuery()
549 if (_query==_fragment) in decodeQueryTo()
552 UrlEncoded.decodeUtf8To(_raw,_query+1,_fragment-_query-1,parameters,_utf8b); in decodeQueryTo()
[all …]
H A DEncodedHttpURI.java81 if (_path==_query) in getPathAndParam()
83 return StringUtil.toString(_raw,_path,_query-_path,_encoding); in getPathAndParam()
95 if (_param==_query) in getParam()
97 return StringUtil.toString(_raw,_param+1,_query-_param-1,_encoding); in getParam()
102 if (_query==_fragment) in getQuery()
104 return StringUtil.toString(_raw,_query+1,_fragment-_query-1,_encoding); in getQuery()
109 return (_fragment>_query); in hasQuery()
121 if (_query==_fragment) in decodeQueryTo()
123 …UrlEncoded.decodeTo(StringUtil.toString(_raw,_query+1,_fragment-_query-1,_encoding),parameters,_en… in decodeQueryTo()
129 if (_query==_fragment) in decodeQueryTo()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/mapreduce/mapreduce/
H A Ddatastore_range_iterators.py150 self._query = None
171 self._query = self._query.iter(batch_size=self._query_spec.batch_size,
177 self._query = None
185 if self._query is not None:
382 self._query = None
439 self._query = self._query.iter(batch_size=self._query_spec.batch_size,
447 if self._query is None:
451 return self._query.cursor()
471 if self._query is None:
504 if self._query is None:
[all …]
/dports/graphics/osgearth/osgearth-osgearth-2.10.1/src/osgEarthDrivers/feature_ogr/
H A DFeatureCursorOGR.cpp86 _query ( query ), in FeatureCursorOGR()
110 if ( _query.expression().isSet() ) in FeatureCursorOGR()
136 if (_query.orderby().isSet()) in FeatureCursorOGR()
154 if ( _query.tileKey().isSet() && !_query.bounds().isSet() && profile ) in FeatureCursorOGR()
161 if ( _query.bounds().isSet() ) in FeatureCursorOGR()
164 OGR_G_AddPoint(ring, _query.bounds()->xMin(), _query.bounds()->yMin(), 0 ); in FeatureCursorOGR()
165 OGR_G_AddPoint(ring, _query.bounds()->xMin(), _query.bounds()->yMax(), 0 ); in FeatureCursorOGR()
166 OGR_G_AddPoint(ring, _query.bounds()->xMax(), _query.bounds()->yMax(), 0 ); in FeatureCursorOGR()
167 OGR_G_AddPoint(ring, _query.bounds()->xMax(), _query.bounds()->yMin(), 0 ); in FeatureCursorOGR()
168 OGR_G_AddPoint(ring, _query.bounds()->xMin(), _query.bounds()->yMin(), 0 ); in FeatureCursorOGR()
[all …]
/dports/www/limesurvey/limesurvey/framework/db/
H A DCDbCommand.php76 private $_query; variable in CDbCommand
147 $this->_query=null;
628 $this->_query['select']=$option.' '.$this->_query['select'];
726 return isset($this->_query['from']) ? $this->_query['from'] : '';
842 return isset($this->_query['where']) ? $this->_query['where'] : '';
882 return isset($this->_query['join']) ? $this->_query['join'] : '';
1027 return isset($this->_query['group']) ? $this->_query['group'] : '';
1126 return isset($this->_query['order']) ? $this->_query['order'] : '';
1162 return isset($this->_query['limit']) ? $this->_query['limit'] : -1;
1218 $this->_query['union']=array($this->_query['union']);
[all …]
/dports/sysutils/p5-Unix-Lsof/Unix-Lsof-0.1.0/lib/Unix/Lsof/
H A DResult.pm100 $self->{_query}{filter} = shift @args;
139 delete $self->{_query};
149 $self->{_query}{filter} = shift @args;
152 $self->{_query}{inp_fields} = \@args;
168 delete $self->{_query};
174 return if ( !exists $self->{_query}{filter} );
176 %{ $self->{_query}{filter} } =
179 keys %{ $self->{_query}{filter} };
183 keys %{ $self->{_query}{filter} };
193 @{ $self->{_query}{inp_fields} };
[all …]
/dports/databases/py-pypuppetdb/pypuppetdb-2.5.1/pypuppetdb/api/
H A Dquery.py47 nodes = self._query('nodes', **kwargs)
58 latest_events = self._query(
89 edges = self._query('edges', **kwargs)
103 return self._query('environments', **kwargs)
140 return self._query('factsets', **kwargs)
167 return self._query('fact-paths', **kwargs)
227 catalogs = self._query('catalogs', **kwargs)
248 events = self._query('events', **kwargs)
276 return self._query('event-counts',
313 return self._query('fact-names')
[all …]
/dports/databases/py-pypuppetdb/pypuppetdb-2.5.1/tests/
H A Dtest_api_base_query.py37 api._query('nodes')
45 api._query('nodes')
54 api._query('nodes')
102 api._query('nodes')
111 api._query('nodes')
123 token_api._query('nodes')
203 api._query('nodes',
216 api._query('nodes',
231 api._query('nodes')
248 api._query('nodes',
[all …]
/dports/devel/poco/poco-1.10.1-all/Foundation/src/
H A DURI.cpp108 _query(uri._query), in URI()
120 _query(std::move(uri._query)), in URI()
132 _query(baseURI._query), in URI()
163 _query = uri._query; in operator =()
177 _query = std::move(uri._query); in operator =()
207 std::swap(_query, uri._query); in swap()
488 _query = relativeURI._query; in resolve()
499 _query = relativeURI._query; in resolve()
507 _query = relativeURI._query; in resolve()
520 _query = relativeURI._query; in resolve()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/fts/
H A Dfts_matcher.cpp47 : _query(query), _spec(spec) {} in FTSMatcher()
90 if (_query.getPositiveTerms().count(word) > 0) { in _hasPositiveTerm_string()
98 if (_query.getNegatedTerms().size() == 0) { in hasNegativeTerm()
120 if (_query.getNegatedTerms().count(word) > 0) { in _hasNegativeTerm_string()
129 if (!_phraseMatch(_query.getPositivePhr()[i], obj)) { in positivePhrasesMatch()
138 for (size_t i = 0; i < _query.getNegatedPhr().size(); i++) { in negativePhrasesMatch()
139 if (_phraseMatch(_query.getNegatedPhr()[i], obj)) { in negativePhrasesMatch()
155 if (_query.getCaseSensitive()) { in _phraseMatch()
158 if (_query.getDiacriticSensitive()) { in _phraseMatch()
173 if (_query.getCaseSensitive()) { in _getTokenizerOptions()
[all …]
/dports/databases/pear-DB_DataObject/DB_DataObject-1.11.5/DB/
H A DDataObject.php440 …if (isset($this->_query['limit_start']) && strlen($this->_query['limit_start'] . $this->_query['li…
445 …if (isset($this->_query['limit_start']) && strlen($this->_query['limit_start'] . $this->_query['li…
688 $_query = $this->_query;
690 if (!isset($this->_query) || ($_query === false)) {
699 $this->_query = $_query;
709 $this->_query = $_query;
713 $this->_query = $_query;
1475 if ($settings && isset($this->_query) && $this->_query['condition']) {
1560 if (($this->_query !== false) && $this->_query['condition']) {
1573 …if (isset($this->_query['limit_start']) && strlen($this->_query['limit_start'] . $this->_query['li…
[all …]
/dports/www/py-pywikibot/pywikibot-6.6.3/pywikibot/data/
H A Dmysql.py74 _query = cursor.mogrify(query, params)
76 if not isinstance(_query, str):
77 _query = str(_query, encoding='utf-8')
78 _query = _query.strip()
79 _query = '\n'.join(' {}'.format(line)
80 for line in _query.splitlines())
81 pywikibot.output('Executing query:\n' + _query)
/dports/lang/clover/mesa-21.3.6/src/gallium/frontends/clover/core/
H A Dtimestamp.cpp32 _query(q.pipe->create_query(q.pipe, PIPE_QUERY_TIMESTAMP, 0)) { in query()
33 q.pipe->end_query(q.pipe, _query); in query()
38 _query(other._query) { in query()
39 other._query = NULL; in query()
43 if (_query) in ~query()
44 q().pipe->destroy_query(q().pipe, _query); in ~query()
51 if (!q().pipe->get_query_result(q().pipe, _query, false, &result)) in operator ()()
/dports/graphics/libosmesa/mesa-21.3.6/src/gallium/frontends/clover/core/
H A Dtimestamp.cpp32 _query(q.pipe->create_query(q.pipe, PIPE_QUERY_TIMESTAMP, 0)) { in query()
33 q.pipe->end_query(q.pipe, _query); in query()
38 _query(other._query) { in query()
39 other._query = NULL; in query()
43 if (_query) in ~query()
44 q().pipe->destroy_query(q().pipe, _query); in ~query()
51 if (!q().pipe->get_query_result(q().pipe, _query, false, &result)) in operator ()()
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/gallium/frontends/clover/core/
H A Dtimestamp.cpp32 _query(q.pipe->create_query(q.pipe, PIPE_QUERY_TIMESTAMP, 0)) { in query()
33 q.pipe->end_query(q.pipe, _query); in query()
38 _query(other._query) { in query()
39 other._query = NULL; in query()
43 if (_query) in ~query()
44 q().pipe->destroy_query(q().pipe, _query); in ~query()
51 if (!q().pipe->get_query_result(q().pipe, _query, false, &result)) in operator ()()
/dports/graphics/mesa-libs/mesa-21.3.6/src/gallium/frontends/clover/core/
H A Dtimestamp.cpp32 _query(q.pipe->create_query(q.pipe, PIPE_QUERY_TIMESTAMP, 0)) { in query()
33 q.pipe->end_query(q.pipe, _query); in query()
38 _query(other._query) { in query()
39 other._query = NULL; in query()
43 if (_query) in ~query()
44 q().pipe->destroy_query(q().pipe, _query); in ~query()
51 if (!q().pipe->get_query_result(q().pipe, _query, false, &result)) in operator ()()
/dports/graphics/mesa-gallium-xa/mesa-21.3.6/src/gallium/frontends/clover/core/
H A Dtimestamp.cpp32 _query(q.pipe->create_query(q.pipe, PIPE_QUERY_TIMESTAMP, 0)) { in query()
33 q.pipe->end_query(q.pipe, _query); in query()
38 _query(other._query) { in query()
39 other._query = NULL; in query()
43 if (_query) in ~query()
44 q().pipe->destroy_query(q().pipe, _query); in ~query()
51 if (!q().pipe->get_query_result(q().pipe, _query, false, &result)) in operator ()()
/dports/graphics/mesa-dri-gallium/mesa-21.3.6/src/gallium/frontends/clover/core/
H A Dtimestamp.cpp32 _query(q.pipe->create_query(q.pipe, PIPE_QUERY_TIMESTAMP, 0)) { in query()
33 q.pipe->end_query(q.pipe, _query); in query()
38 _query(other._query) { in query()
39 other._query = NULL; in query()
43 if (_query) in ~query()
44 q().pipe->destroy_query(q().pipe, _query); in ~query()
51 if (!q().pipe->get_query_result(q().pipe, _query, false, &result)) in operator ()()

12345678910>>...63