Home
last modified time | relevance | path

Searched refs:reservation_id (Results 1 – 25 of 95) sorted by relevance

1234

/dports/devel/py-azure-mgmt-reservations/azure-mgmt-reservations-0.7.0/tests/
H A Dtest_mgmt_reservations.py74 def _test_reservation_get(self, reservation_order_id, reservation_id): argument
78 def _test_update_reservation_to_shared(self, reservation_order_id, reservation_id): argument
83 def _test_update_reservation_to_single(self, reservation_order_id, reservation_id): argument
89 def _test_split(self, reservation_order_id, reservation_id): argument
126 def _test_reservation_history_list(self, reservation_order_id, reservation_id): argument
141 reservation_id = reservation_order.reservations[0].id.split("reservations/")[1]
142 self._test_reservation_get(reservation_order_id, reservation_id)
144 self._test_update_reservation_to_shared(reservation_order_id, reservation_id)
145 self._test_update_reservation_to_single(reservation_order_id, reservation_id)
147 self._test_split(reservation_order_id, reservation_id)
[all …]
/dports/devel/py-azure-mgmt-reservations/azure-mgmt-reservations-0.7.0/azure/mgmt/reservations/operations/
H A D_reservation_operations.py45 …self, reservation_order_id, reservation_id, body, custom_headers=None, raw=False, **operation_conf… argument
50 'reservationId': self._serialize.url("reservation_id", reservation_id, 'str')
119 reservation_id=reservation_id,
147 body = models.SplitRequest(quantities=quantities, reservation_id=reservation_id)
225 reservation_id=reservation_id,
444 'reservationId': self._serialize.url("reservation_id", reservation_id, 'str'),
485 …self, reservation_order_id, reservation_id, parameters, custom_headers=None, raw=False, **operatio… argument
490 'reservationId': self._serialize.url("reservation_id", reservation_id, 'str')
558 reservation_id=reservation_id,
584 … self, reservation_id, reservation_order_id, custom_headers=None, raw=False, **operation_config): argument
[all …]
/dports/science/py-cirq-pasqal/Cirq-0.13.1/cirq-google/cirq_google/engine/
H A Dengine_processor.py206 def _delete_reservation(self, reservation_id: str):
214 self.project_id, self.processor_id, reservation_id
217 def _cancel_reservation(self, reservation_id: str):
225 self.project_id, self.processor_id, reservation_id
228 def remove_reservation(self, reservation_id: str):
229 reservation = self.get_reservation(reservation_id)
244 return self._delete_reservation(reservation_id)
246 return self._cancel_reservation(reservation_id)
248 def get_reservation(self, reservation_id: str):
256 reservation_id: str,
[all …]
H A Dengine_client.py725 def cancel_reservation(self, project_id: str, processor_id: str, reservation_id: str):
744 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
747 def delete_reservation(self, project_id: str, processor_id: str, reservation_id: str):
762 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
767 def get_reservation(self, project_id: str, processor_id: str, reservation_id: str):
776 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
817 reservation_id: str,
839 _reservation_name_from_ids(project_id, processor_id, reservation_id)
840 if reservation_id
915 def _reservation_name_from_ids(project_id: str, processor_id: str, reservation_id: str) -> str:
[all …]
/dports/science/py-cirq-ionq/Cirq-0.13.1/cirq-google/cirq_google/engine/
H A Dengine_processor.py206 def _delete_reservation(self, reservation_id: str):
214 self.project_id, self.processor_id, reservation_id
217 def _cancel_reservation(self, reservation_id: str):
225 self.project_id, self.processor_id, reservation_id
228 def remove_reservation(self, reservation_id: str):
229 reservation = self.get_reservation(reservation_id)
244 return self._delete_reservation(reservation_id)
246 return self._cancel_reservation(reservation_id)
248 def get_reservation(self, reservation_id: str):
256 reservation_id: str,
[all …]
H A Dengine_client.py725 def cancel_reservation(self, project_id: str, processor_id: str, reservation_id: str):
744 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
747 def delete_reservation(self, project_id: str, processor_id: str, reservation_id: str):
762 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
767 def get_reservation(self, project_id: str, processor_id: str, reservation_id: str):
776 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
817 reservation_id: str,
839 _reservation_name_from_ids(project_id, processor_id, reservation_id)
840 if reservation_id
915 def _reservation_name_from_ids(project_id: str, processor_id: str, reservation_id: str) -> str:
[all …]
/dports/science/py-cirq-core/Cirq-0.13.1/cirq-google/cirq_google/engine/
H A Dengine_processor.py206 def _delete_reservation(self, reservation_id: str):
214 self.project_id, self.processor_id, reservation_id
217 def _cancel_reservation(self, reservation_id: str):
225 self.project_id, self.processor_id, reservation_id
228 def remove_reservation(self, reservation_id: str):
229 reservation = self.get_reservation(reservation_id)
244 return self._delete_reservation(reservation_id)
246 return self._cancel_reservation(reservation_id)
248 def get_reservation(self, reservation_id: str):
256 reservation_id: str,
[all …]
H A Dengine_client.py725 def cancel_reservation(self, project_id: str, processor_id: str, reservation_id: str):
744 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
747 def delete_reservation(self, project_id: str, processor_id: str, reservation_id: str):
762 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
767 def get_reservation(self, project_id: str, processor_id: str, reservation_id: str):
776 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
817 reservation_id: str,
839 _reservation_name_from_ids(project_id, processor_id, reservation_id)
840 if reservation_id
915 def _reservation_name_from_ids(project_id: str, processor_id: str, reservation_id: str) -> str:
[all …]
/dports/science/py-cirq-google/Cirq-0.13.0/cirq-google/cirq_google/engine/
H A Dengine_processor.py206 def _delete_reservation(self, reservation_id: str):
214 self.project_id, self.processor_id, reservation_id
217 def _cancel_reservation(self, reservation_id: str):
225 self.project_id, self.processor_id, reservation_id
228 def remove_reservation(self, reservation_id: str):
229 reservation = self.get_reservation(reservation_id)
244 return self._delete_reservation(reservation_id)
246 return self._cancel_reservation(reservation_id)
248 def get_reservation(self, reservation_id: str):
256 reservation_id: str,
[all …]
H A Dengine_client.py725 def cancel_reservation(self, project_id: str, processor_id: str, reservation_id: str):
744 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
747 def delete_reservation(self, project_id: str, processor_id: str, reservation_id: str):
762 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
767 def get_reservation(self, project_id: str, processor_id: str, reservation_id: str):
776 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
817 reservation_id: str,
839 _reservation_name_from_ids(project_id, processor_id, reservation_id)
840 if reservation_id
915 def _reservation_name_from_ids(project_id: str, processor_id: str, reservation_id: str) -> str:
[all …]
/dports/science/py-cirq-aqt/Cirq-0.12.0/cirq-google/cirq_google/engine/
H A Dengine_processor.py206 def _delete_reservation(self, reservation_id: str):
214 self.project_id, self.processor_id, reservation_id
217 def _cancel_reservation(self, reservation_id: str):
225 self.project_id, self.processor_id, reservation_id
228 def remove_reservation(self, reservation_id: str):
229 reservation = self.get_reservation(reservation_id)
244 return self._delete_reservation(reservation_id)
246 return self._cancel_reservation(reservation_id)
248 def get_reservation(self, reservation_id: str):
256 reservation_id: str,
[all …]
H A Dengine_client.py720 def cancel_reservation(self, project_id: str, processor_id: str, reservation_id: str):
739 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
742 def delete_reservation(self, project_id: str, processor_id: str, reservation_id: str):
757 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
760 def get_reservation(self, project_id: str, processor_id: str, reservation_id: str):
769 name = _reservation_name_from_ids(project_id, processor_id, reservation_id)
809 reservation_id: str,
831 _reservation_name_from_ids(project_id, processor_id, reservation_id)
832 if reservation_id
907 def _reservation_name_from_ids(project_id: str, processor_id: str, reservation_id: str) -> str:
[all …]
/dports/sysutils/py-azure-cli/azure-cli-2.29.2/azure/cli/command_modules/consumption/
H A Dcustom.py36 def cli_consumption_list_reservation_summary(client, grain, reservation_order_id, reservation_id=No… argument
44 if reservation_id:
45 …ient.list_by_reservation_order_and_reservation(reservation_order_id, reservation_id, grain=grain, …
48 if reservation_id:
49 …lient.list_by_reservation_order_and_reservation(reservation_order_id, reservation_id, grain=grain))
53 …n_list_reservation_detail(client, reservation_order_id, start_date, end_date, reservation_id=None): argument
60 if reservation_id:
61 …ient.list_by_reservation_order_and_reservation(reservation_order_id, reservation_id, filter=filter…
/dports/sysutils/py-azure-cli/azure-cli-2.29.2/azure/cli/command_modules/reservations/
H A Dcustom.py12 def cli_reservation_update_reservation(client, reservation_order_id, reservation_id, argument
22 return client.update(reservation_order_id, reservation_id, patch)
25 def create_resource_id(reservation_order_id, reservation_id): argument
27 return template.format(reservation_order_id, reservation_id)
31 reservation_id, quantity_1, quantity_2): argument
32 reservationToSplit = create_resource_id(reservation_order_id, reservation_id)
/dports/sysutils/freeipmi/freeipmi-1.6.8/libfreeipmi/sel/
H A Dipmi-sel.c125 ctx->reservation_id = 0;
605 if (!ctx->reservation_id)
611 if (reservation_id)
612 *reservation_id = ctx->reservation_id;
629 ctx->reservation_id = 0;
810 assert (reservation_id);
834 (*reservation_id) = ctx->reservation_id;
2088 uint16_t reservation_id;
2107 reservation_id = ctx->reservation_id;
2165 uint16_t reservation_id;
[all …]
/dports/sysutils/freeipmi/freeipmi-1.6.8/libfreeipmi/sdr/
H A Dipmi-sdr-cache-create.c289 uint16_t *reservation_id) in _sdr_cache_reservation_id() argument
298 assert (reservation_id); in _sdr_cache_reservation_id()
312 *reservation_id = 0; in _sdr_cache_reservation_id()
320 *reservation_id = val; in _sdr_cache_reservation_id()
334 uint16_t *reservation_id, in _sdr_cache_get_record() argument
354 assert (reservation_id); in _sdr_cache_get_record()
386 *reservation_id, in _sdr_cache_get_record()
477 *reservation_id, in _sdr_cache_get_record()
584 *reservation_id, in _sdr_cache_get_record()
894 &reservation_id) < 0) in ipmi_sdr_cache_create()
[all …]
/dports/sysutils/freeipmi/freeipmi-1.6.8/libfreeipmi/include/freeipmi/api/
H A Dipmi-sel-cmds-api.h48 uint16_t reservation_id,
55 uint16_t reservation_id,
60 uint16_t reservation_id,
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/skiboot/hw/ipmi/
H A Dipmi-sel.c332 static unsigned int reservation_id = 0; in ipmi_elog_poll() local
345 reservation_id = msg->data[0]; in ipmi_elog_poll()
346 reservation_id |= msg->data[1] << 8; in ipmi_elog_poll()
347 if (!reservation_id) { in ipmi_elog_poll()
375 reservation_id = 0; in ipmi_elog_poll()
398 msg->data[0] = reservation_id & 0xff; in ipmi_elog_poll()
399 msg->data[1] = (reservation_id >> 8) & 0xff; in ipmi_elog_poll()
/dports/sysutils/freeipmi/freeipmi-1.6.8/libfreeipmi/cmds/
H A Dipmi-sel-cmds.c319 fill_cmd_get_sel_entry (uint16_t reservation_id, in fill_cmd_get_sel_entry() argument
339 FILL_FIID_OBJ_SET (obj_cmd_rq, "reservation_id", reservation_id); in fill_cmd_get_sel_entry()
348 fill_cmd_delete_sel_entry (uint16_t reservation_id, in fill_cmd_delete_sel_entry() argument
366 FILL_FIID_OBJ_SET (obj_cmd_rq, "reservation_id", reservation_id); in fill_cmd_delete_sel_entry()
373 fill_cmd_clear_sel (uint16_t reservation_id, in fill_cmd_clear_sel() argument
393 FILL_FIID_OBJ_SET (obj_cmd_rq, "reservation_id", reservation_id); in fill_cmd_clear_sel()
/dports/sysutils/freeipmi/freeipmi-1.6.8/libfreeipmi/include/freeipmi/cmds/
H A Dipmi-sel-cmds.h116 int fill_cmd_get_sel_entry (uint16_t reservation_id,
122 int fill_cmd_delete_sel_entry (uint16_t reservation_id,
126 int fill_cmd_clear_sel (uint16_t reservation_id,
/dports/emulators/qemu42/qemu-4.2.1/roms/skiboot/hw/ipmi/
H A Dipmi-sel.c332 static unsigned int reservation_id = 0; in ipmi_elog_poll() local
345 reservation_id = msg->data[0]; in ipmi_elog_poll()
346 reservation_id |= msg->data[1] << 8; in ipmi_elog_poll()
347 if (!reservation_id) { in ipmi_elog_poll()
375 reservation_id = 0; in ipmi_elog_poll()
398 msg->data[0] = reservation_id & 0xff; in ipmi_elog_poll()
399 msg->data[1] = (reservation_id >> 8) & 0xff; in ipmi_elog_poll()
/dports/emulators/qemu5/qemu-5.2.0/roms/skiboot/hw/ipmi/
H A Dipmi-sel.c332 static unsigned int reservation_id = 0; in ipmi_elog_poll() local
345 reservation_id = msg->data[0]; in ipmi_elog_poll()
346 reservation_id |= msg->data[1] << 8; in ipmi_elog_poll()
347 if (!reservation_id) { in ipmi_elog_poll()
375 reservation_id = 0; in ipmi_elog_poll()
398 msg->data[0] = reservation_id & 0xff; in ipmi_elog_poll()
399 msg->data[1] = (reservation_id >> 8) & 0xff; in ipmi_elog_poll()
/dports/emulators/qemu-utils/qemu-4.2.1/roms/skiboot/hw/ipmi/
H A Dipmi-sel.c332 static unsigned int reservation_id = 0; in ipmi_elog_poll() local
345 reservation_id = msg->data[0]; in ipmi_elog_poll()
346 reservation_id |= msg->data[1] << 8; in ipmi_elog_poll()
347 if (!reservation_id) { in ipmi_elog_poll()
375 reservation_id = 0; in ipmi_elog_poll()
398 msg->data[0] = reservation_id & 0xff; in ipmi_elog_poll()
399 msg->data[1] = (reservation_id >> 8) & 0xff; in ipmi_elog_poll()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/skiboot/hw/ipmi/
H A Dipmi-sel.c332 static unsigned int reservation_id = 0; in ipmi_elog_poll() local
345 reservation_id = msg->data[0]; in ipmi_elog_poll()
346 reservation_id |= msg->data[1] << 8; in ipmi_elog_poll()
347 if (!reservation_id) { in ipmi_elog_poll()
375 reservation_id = 0; in ipmi_elog_poll()
398 msg->data[0] = reservation_id & 0xff; in ipmi_elog_poll()
399 msg->data[1] = (reservation_id >> 8) & 0xff; in ipmi_elog_poll()
/dports/emulators/qemu60/qemu-6.0.0/roms/skiboot/hw/ipmi/
H A Dipmi-sel.c332 static unsigned int reservation_id = 0; in ipmi_elog_poll() local
345 reservation_id = msg->data[0]; in ipmi_elog_poll()
346 reservation_id |= msg->data[1] << 8; in ipmi_elog_poll()
347 if (!reservation_id) { in ipmi_elog_poll()
375 reservation_id = 0; in ipmi_elog_poll()
398 msg->data[0] = reservation_id & 0xff; in ipmi_elog_poll()
399 msg->data[1] = (reservation_id >> 8) & 0xff; in ipmi_elog_poll()

1234