Home
last modified time | relevance | path

Searched refs:alert_type (Results 1 – 25 of 223) sorted by relevance

123456789

/dports/net-p2p/deluge-cli/deluge-2.0.3/deluge/core/
H A Dalertmanager.py78 def register_handler(self, alert_type, handler): argument
87 if alert_type not in self.handlers:
90 self.handlers[alert_type] = []
93 self.handlers[alert_type].append(handler)
94 log.debug('Registered handler for alert %s', alert_type)
127 alert_type = type(alert).__name__
130 log.debug('%s: %s', alert_type, decode_bytes(alert.message()))
132 if alert_type in self.handlers:
133 for handler in self.handlers[alert_type]:
135 log.debug('Handling alert: %s', alert_type)
/dports/www/py-django-bootstrap4/django-bootstrap4-0.0.8/bootstrap4/
H A Dcomponents.py11 def render_alert(content, alert_type=None, dismissable=True): argument
16 if not alert_type:
17 alert_type = "info"
18 css_classes = ["alert", "alert-" + text_value(alert_type)]
/dports/comms/ncid/ncid/modules/
H A Dncid-alert.sh41 alert_type=`eval echo -e "$alert_message"`
42 alert_display="$alert_type"
45 alert_type=`eval echo -e "$alert_call"`
46 alert_display="$alert_type"
/dports/www/py-django-bootstrap3/django-bootstrap3-15.0.0/src/bootstrap3/
H A Dcomponents.py17 def render_alert(content, alert_type=None, dismissable=True): argument
20 if not alert_type:
21 alert_type = "info"
22 css_classes = ["alert", "alert-" + text_value(alert_type)]
/dports/emulators/aranym/aranym-1.1.0/src/gui-sdl/
H A DdlgAlert.h36 alert_type type;
43 DlgAlert(SGOBJ *dlg, const char *text, alert_type type);
49 Dialog *DlgAlertOpen(const char *text, alert_type type);
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/cisco/meraki/tests/integration/targets/meraki_alert/tasks/
H A Dmain.yml30 - alert_type: "gatewayDown"
40 - alert_type: "usageAlert"
74 - alert_type: "gatewayDown"
84 - alert_type: "usageAlert"
117 - alert_type: "gatewayDown"
127 - alert_type: "usageAlert"
/dports/security/botan110/Botan-1.10.17/src/ssl/
H A Dtls_exceptn.h22 Alert_Type type() const throw() { return alert_type; } in type()
26 Exception(err_msg), alert_type(type) {} in Exception()
29 Alert_Type alert_type;
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/netstorage/
H A Dnst_alert.cpp88 void CNSTAlerts::Register(enum EAlertType alert_type, in Register() argument
95 found = m_Alerts.find(alert_type); in Register()
109 m_Alerts[alert_type] = attrs; in Register()
124 enum EAlertAckResult CNSTAlerts::Acknowledge(enum EAlertType alert_type, in Acknowledge() argument
131 found = m_Alerts.find(alert_type); in Acknowledge()
H A Dnst_alert.hpp97 void Register(enum EAlertType alert_type,
101 enum EAlertAckResult Acknowledge(enum EAlertType alert_type,
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/netschedule/
H A Dns_alert.cpp84 void CNSAlerts::Register(enum EAlertType alert_type, in Register() argument
91 found = m_Alerts.find(alert_type); in Register()
105 m_Alerts[alert_type] = attrs; in Register()
120 enum EAlertAckResult CNSAlerts::Acknowledge(enum EAlertType alert_type, in Acknowledge() argument
127 found = m_Alerts.find(alert_type); in Acknowledge()
H A Dns_alert.hpp95 void Register(enum EAlertType alert_type, const string & message);
98 enum EAlertAckResult Acknowledge(enum EAlertType alert_type,
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/pubseq_gateway/server/
H A Dalerts.cpp91 void CPSGAlerts::Register(enum EPSGS_AlertType alert_type, in Register() argument
98 found = m_Alerts.find(alert_type); in Register()
112 m_Alerts[alert_type] = attrs; in Register()
127 EPSGS_AlertAckResult CPSGAlerts::Acknowledge(EPSGS_AlertType alert_type, in Acknowledge() argument
134 found = m_Alerts.find(alert_type); in Acknowledge()
H A Dalerts.hpp103 void Register(EPSGS_AlertType alert_type, const string & message);
106 EPSGS_AlertAckResult Acknowledge(EPSGS_AlertType alert_type,
/dports/sysutils/py-salt/salt-3004.1/salt/modules/
H A Ddatadog_api.py180 alert_type=None, argument
219 if alert_type not in [None, "error", "warning", "info", "success"]:
236 alert_type=alert_type,
/dports/net/dshell/Dshell-502a546/dshell/plugins/misc/
H A Dsslalerts.py101 alert_type = struct.unpack("!B", data.read(1))[0]
102 alert_msg = alert_types.get(alert_type, str(alert_type))
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/apprise/plugins/
H A DNotifyStreamlabs.py176 alert_type=StrmlabsAlert.DONATION, argument
218 if alert_type not in STRMLABS_ALERTS:
222 self.alert_type = alert_type
286 'type': self.alert_type.lower(),
391 'alert_type': self.alert_type,
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/pluginsimpl/local/logging/
H A DLoggerChannelImpl.java279 protected void logAlert(int alert_type, String message, boolean repeatable) { in logAlert() argument
283 ((LoggerChannelListener) listeners.get(i)).messageLogged(alert_type, in logAlert()
293 switch (alert_type) { in logAlert()
315 int alert_type, in logAlert() argument
318 logAlert( alert_type, message, false ); in logAlert()
323 int alert_type, in logAlertRepeatable() argument
326 logAlert( alert_type, message, true ); in logAlertRepeatable()
/dports/net-p2p/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14/tools/
H A Ddht_put.cpp121 alert* wait_for_alert(lt::session& s, int alert_type) in wait_for_alert() argument
133 if (a->type() != alert_type) in wait_for_alert()
174 wait_for_alert(s, dht_bootstrap_alert::alert_type); in bootstrap()
321 alert* a = wait_for_alert(s, dht_immutable_item_alert::alert_type); in main()
342 alert* a = wait_for_alert(s, dht_put_alert::alert_type); in main()
375 alert* a = wait_for_alert(s, dht_put_alert::alert_type); in main()
409 alert* a = wait_for_alert(s, dht_mutable_item_alert::alert_type); in main()
/dports/net-p2p/py-libtorrent-rasterbar/libtorrent-1.2.13/tools/
H A Ddht_put.cpp121 alert* wait_for_alert(lt::session& s, int alert_type) in wait_for_alert() argument
133 if (a->type() != alert_type) in wait_for_alert()
174 wait_for_alert(s, dht_bootstrap_alert::alert_type); in bootstrap()
321 alert* a = wait_for_alert(s, dht_immutable_item_alert::alert_type); in main()
342 alert* a = wait_for_alert(s, dht_put_alert::alert_type); in main()
375 alert* a = wait_for_alert(s, dht_put_alert::alert_type); in main()
409 alert* a = wait_for_alert(s, dht_mutable_item_alert::alert_type); in main()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/netcache/
H A Dnc_utils.cpp188 void CNCAlerts::Register(EAlertType alert_type, const string& message) in Register() argument
191 map< EAlertType, NCAlertData >::iterator found = s_Alerts.find(alert_type); in Register()
195 s_Alerts.insert( make_pair(alert_type, NCAlertData(x_TypeToId(alert_type), message))); in Register()
203 EAlertType alert_type = x_IdToType(alert_id); in Acknowledge() local
206 map< EAlertType, NCAlertData >::iterator found = s_Alerts.find(alert_type); in Acknowledge()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/osascript-0.3.0/examples/
H A Dbasic.rs10 alert_type: String, field
34 alert_type: "critical".into(), in main()
/dports/devel/py-datadog/datadog-0.42.0/datadog/dogshell/
H A Dwrap.py437 alert_type = SUCCESS
446 alert_type = WARNING
453 alert_type = ERROR
464 if alert_type == SUCCESS and options.notify_success:
466 elif alert_type == ERROR and options.notify_error:
468 elif alert_type == WARNING and options.notify_warning:
479 "alert_type": alert_type,
/dports/irc/kvirc/KVIrc-5.0.0-73-gbdeac0429/src/modules/options/
H A DOptionsWidget_windowList.cpp124 for (const auto& alert_type : alert_list) in addAlertLevels() local
126 if (alert_type != &alert_list.back()) in addAlertLevels()
127 help_text += alert_type + ", "; in addAlertLevels()
129 help_text += alert_type; in addAlertLevels()
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/plugins/logging/
H A DLoggerChannel.java212 public void logAlert(int alert_type, String message); in logAlert() argument
233 public void logAlertRepeatable(int alert_type, String message); in logAlertRepeatable() argument
/dports/net-mgmt/pandorafms_console/pandorafms_console-6.0SP2/godmode/snmpconsole/
H A Dsnmp_alert.php88 $alert_type = (int) get_parameter_post ("alert_type"); //Event, e-mail variable
159 'id_alert' => $alert_type,
274 $priority, $alert_type, $al_field1, $al_field2, $al_field3,
312 $alert_type = $alert["id_alert"]; variable
379 $alert_type = 1; //Event, e-mail variable
849 "alert_type", $alert_type, '', '', 0, false, false, false);
856 "alert_type", $alert_type, '', '', 0, false, false, false);
1162 "alert_type", $alert_type, '', '', 0, false, false, false);
1169 "alert_type", $alert_type, '', '', 0, false, false, false);

123456789