Home
last modified time | relevance | path

Searched refs:query_part (Results 1 – 25 of 56) sorted by relevance

123

/dports/security/zeronet/ZeroNet-0.7.1/plugins/Newsfeed/
H A DNewsfeedPlugin.py57 for i, query_part in enumerate(query_parts):
58 db_query = DbQuery(query_part)
61 if "WHERE" in query_part:
62query_part = re.sub("WHERE (.*?)(?=$| GROUP BY)", where+" AND (\\1)", query_part)
64 query_part += where
65 query_parts[i] = query_part
/dports/www/mybb/mybb-mybb_1829/
H A Dshowteam.php79 $query_part = ''; variable
88 $query_part .= "'$visible_group' = ANY (string_to_array(additionalgroups, ',')) OR ";
92 $query_part .= "'$visible_group' IN (additionalgroups) OR ";
96 $query_part .= "FIND_IN_SET('$visible_group', additionalgroups) OR ";
144 …list, hideemail, receivepms, lastactive, lastvisit, invisible, away", $query_part."displaygroup IN…
/dports/databases/pecl-couchbase/couchbase-2.6.2/src/couchbase/
H A Dsearch_query.c30 zval *query_part; in PHP_METHOD() local
48 ZVAL_ZVAL(&obj->query_part, query_part, 1, 0); in PHP_METHOD()
50 PCBC_ADDREF_P(query_part); in PHP_METHOD()
51 obj->query_part = query_part; in PHP_METHOD()
809 if (!Z_ISUNDEF(obj->query_part)) { in PHP_METHOD()
811 PCBC_ADDREF_P(PCBC_P(obj->query_part)); in PHP_METHOD()
979 if (!Z_ISUNDEF(obj->query_part)) { in search_query_free_object()
980 zval_ptr_dtor(&obj->query_part); in search_query_free_object()
981 ZVAL_UNDEF(PCBC_P(obj->query_part)); in search_query_free_object()
1082 if (!Z_ISUNDEF(obj->query_part)) { in pcbc_search_query_get_debug_info()
[all …]
/dports/www/searx/searx-1.0.0/searx/
H A Dquery.py275 for i, query_part in enumerate(raw_query_parts):
277 if query_part.isspace()\
278 or query_part == '':
284 if parser_class.check(query_part):
285 special_part = parser_class(self, i == autocomplete_index)(query_part)
290 qlist.append(query_part)
/dports/audio/beets/beets-1.4.9/beets/dbcore/
H A Dqueryparse.py105 def construct_query_part(model_cls, prefixes, query_part): argument
118 if not query_part:
131 parse_query_part(query_part, query_classes, prefixes)
/dports/databases/py-sqlalchemy-utils/SQLAlchemy-Utils-0.37.9/tests/
H A Dtest_expressions.py10 def assert_startswith(query, query_part): argument
13 ).startswith(query_part)
/dports/shells/ohmyzsh/ohmyzsh-6babcbd8841335a3c25ec960ff57ab9a139c9073/plugins/history-substring-search/
H A Dhistory-substring-search.zsh324 local query_part
325 for query_part in $_history_substring_search_query_parts; do
326 local escaped_query_part=${query_part//(#m)[\][()|\\*?#<>~^]/\\$MATCH}
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/mysql-test/t/
H A Dopt_hints.test877 eval explain update $query_part;
878 eval update $query_part;
896 eval explain update $query_part;
897 eval update $query_part;
915 eval explain update $query_part;
916 eval update $query_part;
933 let $query_part=
941 eval update $query_part;
954 let $query_part=
962 eval update $query_part;
[all …]
/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/libraries/classes/Rte/
H A DRteList.php285 $query_part = $execute_action . '=1&amp;item_name='
291 ? '" data-post="' . $query_part
292 : '&amp;' . $query_part)
/dports/net/google-cloud-sdk/google-cloud-sdk/platform/gsutil/gslib/vendored/boto/boto/s3/
H A Dconnection.py422 query_part = '?' + self.QueryString % (encoded_canonical, expires,
425 query_part = ''
434 delimiter = '?' if not query_part else '&'
435 query_part += delimiter + '&'.join(extra_qp)
444 bucket, key) + query_part
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/external_bin/gsutil/gsutil_4.28/gsutil/third_party/boto/boto/s3/
H A Dconnection.py418 query_part = '?' + self.QueryString % (encoded_canonical, expires,
421 query_part = ''
430 delimiter = '?' if not query_part else '&'
431 query_part += delimiter + '&'.join(extra_qp)
440 bucket, key) + query_part
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/gsutil/gslib/vendored/boto/boto/s3/
H A Dconnection.py431 query_part = '?' + self.QueryString % (encoded_canonical, expires,
434 query_part = ''
443 delimiter = '?' if not query_part else '&'
444 query_part += delimiter + '&'.join(extra_qp)
453 bucket, key) + query_part
/dports/devel/py-boto/boto-2.49.0/boto/s3/
H A Dconnection.py418 query_part = '?' + self.QueryString % (encoded_canonical, expires,
421 query_part = ''
430 delimiter = '?' if not query_part else '&'
431 query_part += delimiter + '&'.join(extra_qp)
440 bucket, key) + query_part
/dports/audio/beets/beets-1.4.9/beets/
H A Dlibrary.py87 def is_path_query(cls, query_part): argument
92 colon = query_part.find(':')
94 query_part = query_part[:colon]
99 (os.sep in query_part or
100 (os.altsep and os.altsep in query_part)) and
101 os.path.exists(syspath(normpath(query_part)))
113 query_part = '({0} = ?) || (substr({0}, 1, ?) = ?)'
115 query_part = '(BYTELOWER({0}) = BYTELOWER(?)) || \
118 return query_part.format(self.field), \
/dports/security/vaultwarden/Rocket-263e39b5b429de1913ce7e3036575a7b4d88b6d7/core/codegen/tests/
H A Droute.rs94 let query_part = format!("?sky={}&sky=blue&{}", sky, query); in test_full_route() localVariable
95 let uri = format!("{}{}", path_part, query_part); in test_full_route()
/dports/www/grafana8/grafana-8.3.6/public/app/plugins/datasource/influxdb/components/VisualInfluxQLEditor/
H A DpartListUtils.tsx6 import queryPart from '../../query_part';
8 import { QueryPartDef } from 'app/angular/components/query_part';
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/router/src/routing/src/
H A Ddest_metadata_cache.cc338 auto query_part = uri_query_.find("allow_primary_reads"); in init() local
339 if (query_part != uri_query_.end()) { in init()
350 auto value = query_part->second; in init()
359 query_part->second + "'"); in init()
/dports/chinese/wordpress-zh_CN/wordpress/wp-includes/
H A Dclass-wp-date-query.php750 foreach ( $query_parts as $query_part ) {
751 if ( isset( $query[ $query_part ] ) ) {
752 $value = $this->build_value( $compare, $query[ $query_part ] );
/dports/chinese/wordpress-zh_TW/wordpress/wp-includes/
H A Dclass-wp-date-query.php750 foreach ( $query_parts as $query_part ) {
751 if ( isset( $query[ $query_part ] ) ) {
752 $value = $this->build_value( $compare, $query[ $query_part ] );
/dports/net-mgmt/icinga2/icinga2-2.13.2/lib/livestatus/
H A Dstatehisttable.cpp62 unsigned long query_part = m_TimeUntil - m_TimeFrom; in UpdateLogEntries() local
94 state_hist_bag->Set("query_part", query_part); /* required for _part calculations */ in UpdateLogEntries()
151 state_hist_bag_new->Set("query_part", query_part); in UpdateLogEntries()
/dports/net-mgmt/observium/observium/html/includes/
H A Dfunctions.inc.php2066 $query_part[] = implode(" AND ", $query_permitted);
2163 $query_part[] = implode(" AND ", $query_permitted);
2194 $query_part[] = $query_permitted;
2218 $query_part[] = $query_permitted;
2229 if (count($query_part))
2235 $query_permitted = " AND ((".implode(") OR (", $query_part)."))";
2238 $query_permitted = " AND ((".implode(") AND (", $query_part)."))";
/dports/www/grafana8/grafana-8.3.6/public/sass/
H A D_grafana.scss71 @import 'components/query_part';
/dports/databases/pecl-couchbase/couchbase-2.6.2/
H A Dconfig.w3297 "query_part.c " +
H A Dconfig.m495 src/couchbase/search/query_part.c \
/dports/science/py-pycsw/pycsw-2.6.1/pycsw/
H A Dserver.py253 query_part = splitquery(self.request)[-1]
254 self.kvp = dict(parse_qsl(query_part, keep_blank_values=True))

123