Home
last modified time | relevance | path

Searched refs:is_flexible (Results 1 – 21 of 21) sorted by relevance

/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/modules/monitoring/application/views/scripts/partials/downtime/
H A Ddowntime-header.phtml4 …<div class="state-meta"><?= $this->timeUntil($downtime->is_flexible ? $downtime->scheduled_end : $…
59 $downtime->is_flexible
66 …<span><?= sprintf($this->translate('expires %s'), $this->timeUntil($downtime->is_flexible ? $downt…
69 <?php if ($downtime->is_flexible): ?>
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/modules/monitoring/application/views/scripts/downtime/
H A Dshow.phtml59 $this->downtime->is_flexible ?
62 <?= $this->icon('info-circled', $this->downtime->is_flexible ?
69 <?php if ($downtime->is_flexible): ?>
130 <?php if ($this->downtime->is_flexible): ?>
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/modules/monitoring/application/views/scripts/show/components/
H A Ddowntime.phtml61 … $this->timeUntil($downtime->is_flexible ? $downtime->scheduled_end : $downtime->end, false, true)
69 … $this->timeUntil($downtime->is_flexible ? $downtime->scheduled_end : $downtime->end, false, true)
76 $downtime->is_flexible
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/telegram/
H A DPayments.hpp39 STORE_FLAG(invoice.is_flexible); in store()
61 PARSE_FLAG(invoice.is_flexible); in parse()
H A DPayments.cpp126 bool is_flexible = (invoice->flags_ & telegram_api::invoice::FLEXIBLE_MASK) != 0; in convert_invoice() local
133 if (is_flexible) { in convert_invoice()
140 …need_shipping_address, send_phone_number_to_provider, send_email_address_to_provider, is_flexible); in convert_invoice()
610 …lhs.is_flexible == rhs.is_flexible && lhs.currency == rhs.currency && lhs.price_parts == rhs.price… in operator ==()
619 …return string_builder << "[" << (invoice.is_flexible ? "Flexible" : "") << (invoice.is_test ? "Tes… in operator <<()
792 result.invoice.is_flexible = input_invoice->invoice_->is_flexible_; in process_input_message_invoice()
799 if (result.invoice.is_flexible) { in process_input_message_invoice()
840 if (invoice.is_flexible) { in get_input_invoice()
H A DPayments.h49 bool is_flexible = false; member
/dports/net-im/py-telepot/telepot-12.7/test/
H A Dtest3_pay.py34 need_shipping_address=True, is_flexible=True) # required for shipping query
H A Dtest27_pay.py34 need_shipping_address=True, is_flexible=True) # required for shipping query
H A Dtest3a_pay.py35 need_shipping_address=True, is_flexible=True) # required for shipping query
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/
H A Dswitch_vpx.c207 unsigned is_flexible:1; member
262 unsigned is_flexible:1; member
1102 desc->is_flexible, in buffer_vp9_packets()
1140 if (!desc->is_flexible) { in buffer_vp9_packets()
1146 if (desc->have_p_layer && desc->is_flexible) { // P & F set, P_DIFF in buffer_vp9_packets()
/dports/math/libpgmath/flang-d07daf3/tools/flang2/flang2exe/
H A Dll_structure.cpp2009 node->is_flexible = false; in alloc_mdnode()
2047 node->is_flexible = true; in alloc_flexible_mdnode()
2064 assert((*pnode)->is_flexible, "Not a flexible metadata node", 0, ERR_Fatal); in mdnode_append()
2228 assert(node->is_distinct || node->is_flexible, in ll_update_md_node()
H A Dll_structure.h664 unsigned is_flexible : 1; member
/dports/net-im/py-python-telegram-bot/python-telegram-bot-13.1/telegram/
H A Dbot.py3145 is_flexible: bool = None,
3249 if is_flexible is not None:
3250 data['is_flexible'] = is_flexible
/dports/net-im/py-telepot/telepot-12.7/telepot/aio/
H A D__init__.py307 is_flexible=None, argument
/dports/lang/v8/v8-9.6.180.12/tools/
H A Dgrokdump.py86 self.is_flexible = False
89 self.is_flexible = True
91 if not self.is_flexible:
96 if self.is_flexible:
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/tools/
H A Dgrokdump.py86 self.is_flexible = False
89 self.is_flexible = True
91 if not self.is_flexible:
96 if self.is_flexible:
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/tools/
H A Dgrokdump.py86 self.is_flexible = False
89 self.is_flexible = True
91 if not self.is_flexible:
96 if self.is_flexible:
/dports/www/node10/node-v10.24.1/deps/v8/tools/
H A Dgrokdump.py80 self.is_flexible = False
83 self.is_flexible = True
85 if not self.is_flexible:
90 if self.is_flexible:
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/payments/
H A Dpayments_form.cpp362 .isFlexible = data.is_flexible(), in processInvoice()
/dports/net-im/py-telepot/telepot-12.7/telepot/
H A D__init__.py720 is_flexible=None, argument
/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/generate/scheme/
H A Dtd_api.tl1398 //@is_flexible True, if the total price depends on the shipping method
1399 … send_phone_number_to_provider:Bool send_email_address_to_provider:Bool is_flexible:Bool = Invoice;