Home
last modified time | relevance | path

Searched refs:queryType (Results 1 – 25 of 1576) sorted by relevance

12345678910>>...64

/dports/www/grafana8/grafana-8.3.6/public/app/features/alerting/unified/utils/
H A DtimeRange.test.ts16 queryType: 'query',
26 queryType: 'query',
59 queryType: 'query',
66 queryType: 'query',
84 queryType: 'query',
97 queryType: 'query',
109 queryType: 'query',
122 queryType: 'query',
130 queryType: 'query',
160 queryType: 'query',
[all …]
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/Zend/Db/
H A DProfiler.php260 if (null === $queryType) {
263 $queryType = self::INSERT;
266 $queryType = self::UPDATE;
269 $queryType = self::DELETE;
275 $queryType = self::QUERY;
375 * @param integer $queryType
383 if ($queryType === null) {
407 * @param integer $queryType OPTIONAL
414 if (null === $queryType) {
431 * @param integer $queryType OPTIONAL
[all …]
/dports/www/matomo/piwik/libs/Zend/Db/
H A DProfiler.php258 if (null === $queryType) {
261 $queryType = self::INSERT;
264 $queryType = self::UPDATE;
267 $queryType = self::DELETE;
273 $queryType = self::QUERY;
377 * @param integer $queryType
385 if ($queryType === null) {
409 * @param integer $queryType OPTIONAL
416 if (null === $queryType) {
433 * @param integer $queryType OPTIONAL
[all …]
/dports/www/grafana8/grafana-8.3.6/public/app/plugins/datasource/grafana-azure-monitor-datasource/
H A DgrafanaTemplateVariables.test.ts11 queryType: AzureQueryType.GrafanaTemplateVariableFn,
20 queryType: AzureQueryType.GrafanaTemplateVariableFn,
33 queryType: AzureQueryType.GrafanaTemplateVariableFn,
46 queryType: AzureQueryType.GrafanaTemplateVariableFn,
60 queryType: AzureQueryType.GrafanaTemplateVariableFn,
74 queryType: AzureQueryType.GrafanaTemplateVariableFn,
89 queryType: AzureQueryType.GrafanaTemplateVariableFn,
104 queryType: AzureQueryType.GrafanaTemplateVariableFn,
120 queryType: AzureQueryType.GrafanaTemplateVariableFn,
136 queryType: AzureQueryType.GrafanaTemplateVariableFn,
[all …]
H A Ddatasource.ts79 if (!item.queryType) {
82 const ds = this.pseudoDatasource[item.queryType];
99 if (!byType.has(target.queryType)) {
103 byType.set(target.queryType, queryForType);
106 const queryForType = byType.get(target.queryType);
111 const ds = this.pseudoDatasource[queryType]; constant
148 if (query.queryType === AzureQueryType.AzureMonitor) {
150 } else if (query.queryType === AzureQueryType.LogAnalytics) {
279 if (!query.queryType) {
283 const ds = this.pseudoDatasource[query.queryType];
[all …]
H A Dvariables.test.ts31 queryType: AzureQueryType.GrafanaTemplateVariableFn,
59 queryType: AzureQueryType.GrafanaTemplateVariableFn,
85 queryType: AzureQueryType.GrafanaTemplateVariableFn,
114 queryType: AzureQueryType.GrafanaTemplateVariableFn,
140 queryType: AzureQueryType.GrafanaTemplateVariableFn,
169 queryType: AzureQueryType.GrafanaTemplateVariableFn,
195 queryType: AzureQueryType.GrafanaTemplateVariableFn,
224 queryType: AzureQueryType.GrafanaTemplateVariableFn,
250 queryType: AzureQueryType.GrafanaTemplateVariableFn,
490 queryType: AzureQueryType.LogAnalytics,
[all …]
/dports/net-im/qxmpp-qt5/qxmpp-1.4.0/src/base/
H A DQXmppPubSubIq.cpp49 QXmppPubSubIq::QueryType queryType; member in QXmppPubSubIqPrivate
58 : queryType(QXmppPubSubIq::ItemsQuery) in QXmppPubSubIqPrivate()
75 QXmppPubSubIq::QueryType QXmppPubSubIq::queryType() const in queryType() function in QXmppPubSubIq
77 return d->queryType; in queryType()
84 void QXmppPubSubIq::setQueryType(QXmppPubSubIq::QueryType queryType) in setQueryType() argument
86 d->queryType = queryType; in setQueryType()
168 if (queryType > -1) in parseElementFromChild()
169 d->queryType = QueryType(queryType); in parseElementFromChild()
176 switch (d->queryType) { in parseElementFromChild()
203 writer->writeStartElement(PUBSUB_QUERIES.at(d->queryType)); in toXmlElementFromChild()
[all …]
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/coreSQLiteStudio/db/queryexecutorsteps/
H A Dqueryexecutorexecute.cpp54 if (isBeginTransaction(query->queryType)) in executeQueries()
71 if (isCommitTransaction(query->queryType)) in executeQueries()
73 else if (isRollbackTransaction(query->queryType)) in executeQueries()
95 if (lastQuery->queryType != SqliteQueryType::Select || lastQuery->explain) in handleSuccessfulResult()
132 bool QueryExecutorExecute::isBeginTransaction(SqliteQueryType queryType) in isBeginTransaction() argument
134 return (queryType == SqliteQueryType::BeginTrans || queryType == SqliteQueryType::Savepoint); in isBeginTransaction()
137 bool QueryExecutorExecute::isCommitTransaction(SqliteQueryType queryType) in isCommitTransaction() argument
139 return (queryType == SqliteQueryType::CommitTrans || queryType == SqliteQueryType::Release); in isCommitTransaction()
142 bool QueryExecutorExecute::isRollbackTransaction(SqliteQueryType queryType) in isRollbackTransaction() argument
144 return queryType == SqliteQueryType::Rollback; in isRollbackTransaction()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/grafana-plugin-sdk-go/backend/datasource/
H A Dquery_type_mux.go27 func (mux *QueryTypeMux) Handle(queryType string, handler backend.QueryDataHandler) {
37 if _, exist := mux.m[queryType]; exist {
38 panic("datasource: multiple registrations for " + queryType)
41 if queryType == "" {
46 mux.m[queryType] = handler
55 func (mux *QueryTypeMux) HandleFunc(queryType string, handler func(ctx context.Context, req *backen…
56 mux.Handle(queryType, backend.QueryDataHandlerFunc(handler))
100 func (mux *QueryTypeMux) getHandler(queryType string) (string, backend.QueryDataHandler) {
101 handler, exists := mux.m[queryType]
106 return queryType, handler
/dports/www/grafana8/grafana-8.3.6/pkg/tsdb/azuremonitor/
H A Dazuremonitor_test.go81 queryType string member
90 f.t.Errorf("The HTTP client for %s is missing", f.queryType)
106 queryType string
112 queryType: azureMonitor,
118 queryType: azureLogAnalytics,
131 tt.queryType: {
132 URL: routes[azureMonitorPublic][tt.queryType].URL,
138 tt.queryType: &fakeExecutor{
140 queryType: tt.queryType,
149 {QueryType: tt.queryType},
/dports/www/grafana8/grafana-8.3.6/public/app/plugins/datasource/testdata/testData/
H A DserviceMapResponse.ts15 queryType: 'getTraceSummaries',
27 queryType: 'getTraceSummaries',
39 queryType: 'getTraceSummaries',
51 queryType: 'getTraceSummaries',
239 queryType: 'getTraceSummaries',
251 queryType: 'getTraceSummaries',
263 queryType: 'getTraceSummaries',
275 queryType: 'getTraceSummaries',
/dports/www/grafana8/grafana-8.3.6/public/app/plugins/datasource/cloud-monitoring/components/
H A DQueryEditor.tsx21 …const { hide, refId, datasource, key, queryType, maxLines, metric, ...metricQuery } = this.props.q…
25 if (!this.props.query.hasOwnProperty('queryType')) {
26 this.props.query.queryType = QueryType.METRICS;
44 const queryType = query.queryType || QueryType.METRICS;
58 query.queryType !== QueryType.SLO && (
80 value={queryType}
83 onChange({ ...query, sloQuery, queryType: value! });
89 {queryType === QueryType.METRICS && (
103 {queryType === QueryType.SLO && (
/dports/security/cryptlib/cryptlib-3.4.3/keyset/
H A Ddbms.c176 queryType == DBMS_QUERY_CANCEL ) ) || \ in performQuery()
187 queryType == DBMS_QUERY_CANCEL ) && \ in performQuery()
189 ( ( queryType == DBMS_QUERY_START || \ in performQuery()
190 queryType == DBMS_QUERY_CHECK || \ in performQuery()
202 queryType < DBMS_QUERY_LAST ); in performQuery()
209 queryType == DBMS_QUERY_CHECK || \ in performQuery()
227 queryEntry, queryType ); in performQuery()
244 if( queryType == DBMS_QUERY_START ) in performQuery()
246 if( queryType == DBMS_QUERY_CANCEL ) in performQuery()
257 const DBMS_QUERY_TYPE queryType ) in performStaticQuery()
[all …]
/dports/finance/prestashop/prestashop/src/Core/Product/Search/
H A DProductSearchQuery.php37 private $queryType; variable in PrestaShop\\PrestaShop\\Core\\Product\\Search\\ProductSearchQuery
96 * @param string $queryType
100 public function setQueryType($queryType) argument
102 $this->queryType = $queryType;
112 return $this->queryType;
/dports/www/joomla3/joomla3-3.9.24/libraries/src/Schema/ChangeItem/
H A DPostgresqlChangeItem.php95 $this->queryType = 'ADD_COLUMN';
109 $this->queryType = 'DROP_COLUMN';
149 $this->queryType = 'CHANGE_COLUMN_TYPE';
168 $this->queryType = 'CHANGE_COLUMN_TYPE';
189 $this->queryType = 'CHANGE_COLUMN_TYPE';
209 $this->queryType = 'CHANGE_COLUMN_TYPE';
225 $this->queryType = 'CHANGE_COLUMN_TYPE';
248 $this->queryType = 'DROP_INDEX';
266 $this->queryType = 'ADD_INDEX';
283 $this->queryType = 'CREATE_TABLE';
H A DMysqlChangeItem.php72 $this->queryType = 'UTF8CNV';
85 $this->queryType = 'ADD_COLUMN';
100 $this->queryType = 'ADD_INDEX';
127 $this->queryType = 'ADD_INDEX';
134 $this->queryType = 'DROP_INDEX';
142 $this->queryType = 'DROP_COLUMN';
171 $this->queryType = 'CHANGE_COLUMN_TYPE';
199 $this->queryType = 'CHANGE_COLUMN_TYPE';
216 $this->queryType = 'CREATE_TABLE';
/dports/editors/lazarus/lazarus/lcl/interfaces/qt5/cbindings/src/
H A Dqnetworkproxy_c.cpp24 …yQueryH QNetworkProxyQuery_Create2(const QUrlH requestUrl, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create2() argument
26 return (QNetworkProxyQueryH) new QNetworkProxyQuery(*(const QUrl*)requestUrl, queryType); in QNetworkProxyQuery_Create2()
29 …3(PWideString hostname, int port, PWideString protocolTag, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create3() argument
35 return (QNetworkProxyQueryH) new QNetworkProxyQuery(t_hostname, port, t_protocolTag, queryType); in QNetworkProxyQuery_Create3()
38 …xyQuery_Create4(quint16 bindPort, PWideString protocolTag, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create4() argument
42 return (QNetworkProxyQueryH) new QNetworkProxyQuery(bindPort, t_protocolTag, queryType); in QNetworkProxyQuery_Create4()
50 …nfigurationH networkConfiguration, const QUrlH requestUrl, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create6() argument
52 …oxyQuery(*(const QNetworkConfiguration*)networkConfiguration, *(const QUrl*)requestUrl, queryType); in QNetworkProxyQuery_Create6()
61 …y(*(const QNetworkConfiguration*)networkConfiguration, t_hostname, port, t_protocolTag, queryType); in QNetworkProxyQuery_Create7()
68 …roxyQuery(*(const QNetworkConfiguration*)networkConfiguration, bindPort, t_protocolTag, queryType); in QNetworkProxyQuery_Create8()
[all …]
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/interfaces/qt5/cbindings/src/
H A Dqnetworkproxy_c.cpp24 …yQueryH QNetworkProxyQuery_Create2(const QUrlH requestUrl, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create2() argument
26 return (QNetworkProxyQueryH) new QNetworkProxyQuery(*(const QUrl*)requestUrl, queryType); in QNetworkProxyQuery_Create2()
29 …3(PWideString hostname, int port, PWideString protocolTag, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create3() argument
35 return (QNetworkProxyQueryH) new QNetworkProxyQuery(t_hostname, port, t_protocolTag, queryType); in QNetworkProxyQuery_Create3()
38 …xyQuery_Create4(quint16 bindPort, PWideString protocolTag, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create4() argument
42 return (QNetworkProxyQueryH) new QNetworkProxyQuery(bindPort, t_protocolTag, queryType); in QNetworkProxyQuery_Create4()
50 …nfigurationH networkConfiguration, const QUrlH requestUrl, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create6() argument
52 …oxyQuery(*(const QNetworkConfiguration*)networkConfiguration, *(const QUrl*)requestUrl, queryType); in QNetworkProxyQuery_Create6()
61 …y(*(const QNetworkConfiguration*)networkConfiguration, t_hostname, port, t_protocolTag, queryType); in QNetworkProxyQuery_Create7()
68 …roxyQuery(*(const QNetworkConfiguration*)networkConfiguration, bindPort, t_protocolTag, queryType); in QNetworkProxyQuery_Create8()
[all …]
/dports/editors/lazarus-qt5/lazarus/lcl/interfaces/qt5/cbindings/src/
H A Dqnetworkproxy_c.cpp24 …yQueryH QNetworkProxyQuery_Create2(const QUrlH requestUrl, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create2() argument
26 return (QNetworkProxyQueryH) new QNetworkProxyQuery(*(const QUrl*)requestUrl, queryType); in QNetworkProxyQuery_Create2()
29 …3(PWideString hostname, int port, PWideString protocolTag, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create3() argument
35 return (QNetworkProxyQueryH) new QNetworkProxyQuery(t_hostname, port, t_protocolTag, queryType); in QNetworkProxyQuery_Create3()
38 …xyQuery_Create4(quint16 bindPort, PWideString protocolTag, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create4() argument
42 return (QNetworkProxyQueryH) new QNetworkProxyQuery(bindPort, t_protocolTag, queryType); in QNetworkProxyQuery_Create4()
50 …nfigurationH networkConfiguration, const QUrlH requestUrl, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create6() argument
52 …oxyQuery(*(const QNetworkConfiguration*)networkConfiguration, *(const QUrl*)requestUrl, queryType); in QNetworkProxyQuery_Create6()
61 …y(*(const QNetworkConfiguration*)networkConfiguration, t_hostname, port, t_protocolTag, queryType); in QNetworkProxyQuery_Create7()
68 …roxyQuery(*(const QNetworkConfiguration*)networkConfiguration, bindPort, t_protocolTag, queryType); in QNetworkProxyQuery_Create8()
[all …]
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/interfaces/qt5/cbindings/src/
H A Dqnetworkproxy_c.cpp24 …yQueryH QNetworkProxyQuery_Create2(const QUrlH requestUrl, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create2() argument
26 return (QNetworkProxyQueryH) new QNetworkProxyQuery(*(const QUrl*)requestUrl, queryType); in QNetworkProxyQuery_Create2()
29 …3(PWideString hostname, int port, PWideString protocolTag, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create3() argument
35 return (QNetworkProxyQueryH) new QNetworkProxyQuery(t_hostname, port, t_protocolTag, queryType); in QNetworkProxyQuery_Create3()
38 …xyQuery_Create4(quint16 bindPort, PWideString protocolTag, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create4() argument
42 return (QNetworkProxyQueryH) new QNetworkProxyQuery(bindPort, t_protocolTag, queryType); in QNetworkProxyQuery_Create4()
50 …nfigurationH networkConfiguration, const QUrlH requestUrl, QNetworkProxyQuery::QueryType queryType) in QNetworkProxyQuery_Create6() argument
52 …oxyQuery(*(const QNetworkConfiguration*)networkConfiguration, *(const QUrl*)requestUrl, queryType); in QNetworkProxyQuery_Create6()
61 …y(*(const QNetworkConfiguration*)networkConfiguration, t_hostname, port, t_protocolTag, queryType); in QNetworkProxyQuery_Create7()
68 …roxyQuery(*(const QNetworkConfiguration*)networkConfiguration, bindPort, t_protocolTag, queryType); in QNetworkProxyQuery_Create8()
[all …]
/dports/devel/spatialindex/spatialindex-src-1.8.5/test/rtree/
H A DRTreeLoad.cc67 uint32_t queryType = 0; in main() local
69 if (strcmp(argv[4], "intersection") == 0) queryType = 0; in main()
70 else if (strcmp(argv[4], "10NN") == 0) queryType = 1; in main()
71 else if (strcmp(argv[4], "selfjoin") == 0) queryType = 2; in main()
72 else if (strcmp(argv[4], "contains") == 0) queryType = 3; in main()
160 if (queryType == 0) in main()
166 else if (queryType == 1) in main()
172 else if(queryType == 2) in main()
/dports/www/grafana8/grafana-8.3.6/public/app/plugins/datasource/grafana-azure-monitor-datasource/azure_resource_graph/
H A Dazure_resource_graph_datasource.test.ts52 queryType: 'Azure Resource Graph',
70 queryType: 'Azure Resource Graph',
90 queryType: 'Azure Resource Graph',
100 query.queryType = AzureQueryType.AzureResourceGraph;
110 query.queryType = AzureQueryType.AzureResourceGraph;
121 query.queryType = AzureQueryType.AzureResourceGraph;
133 query.queryType = AzureQueryType.AzureResourceGraph;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.p2.updatesite/src/org/eclipse/equinox/internal/p2/updatesite/
H A DSiteIU.java27 private String queryType = null; field in SiteIU
62 return queryType; in getQueryType()
119 public void setQueryType(String queryType) { in setQueryType() argument
120 this.queryType = queryType; in setQueryType()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/network/kernel/
H A Dqnetworkproxy.h71 QNetworkProxyQuery(const QUrl &requestUrl, QueryType queryType = UrlRequest);
73 QueryType queryType = TcpSocket);
75 QueryType queryType = TcpServer);
79 const QUrl &requestUrl, QueryType queryType = UrlRequest);
82 QueryType queryType = TcpSocket);
85 QueryType queryType = TcpServer);
93 QueryType queryType() const;
/dports/www/grafana8/grafana-8.3.6/public/app/plugins/datasource/tempo/QueryEditor/
H A DQueryField.tsx69 if (!this.props.query.queryType) {
72 queryType: DEFAULT_QUERY_TYPE,
94 queryType: 'clear',
135 value={query.queryType}
141 queryType: v,
148 {query.queryType === 'nativeSearch' && (
162 {query.queryType === 'search' && (
179 {query.queryType === 'upload' && (
190 {query.queryType === 'traceId' && (
199 queryType: 'traceId',
[all …]

12345678910>>...64