本文整理汇总了Python中model.queues.Queue类的典型用法代码示例。如果您正苦于以下问题:Python Queue类的具体用法?Python Queue怎么用?Python Queue使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Queue类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: _queue_from_request
def _queue_from_request(self):
queue_name = self.request.get("queue_name")
queue = Queue.queue_with_name(queue_name)
if not queue:
self.response.out.write("\"%s\" is not in queues %s" % (queue_name, Queue.all()))
return None
return queue
开发者ID:AndriyKalashnykov,项目名称:webkit,代码行数:7,代码来源:updateworkitems.py
示例2: get
def get(self, queue_name):
queue_name = queue_name.lower()
if not Queue.queue_with_name(queue_name):
self.error(404)
return
timestamp = self._get_timestamp()
view_range = self._get_view_range()
time_unit, time_unit_name = charts.get_time_unit(view_range)
all_queue_names = map(Queue.name, Queue.all())
template_values = {
"all_queue_names": all_queue_names,
"patch_data": self._get_patch_data(queue_name, timestamp, view_range),
"queue_data": self._get_queue_data(queue_name, timestamp, view_range),
"queue_name": queue_name,
"seconds_ago_min": 0,
"seconds_ago_max": view_range,
"time_unit_name": time_unit_name,
"time_unit": time_unit,
"timestamp": timestamp,
"view_range": view_range,
"view_range_choices": charts.view_range_choices,
}
self.response.out.write(template.render("templates/queuecharts.html", template_values))
开发者ID:venkatarajasekhar,项目名称:Qt,代码行数:26,代码来源:queuecharts.py
示例3: _work_items_from_request
def _work_items_from_request(self):
queue_name = self.request.get("queue_name")
queue = Queue.queue_with_name(queue_name)
if not queue:
self.response.out.write("\"%s\" is not in queues %s" % (queue_name, Queue.all()))
return None
items_string = self.request.get("work_items")
work_items = queue.work_items()
work_items.item_ids = self._parse_work_items_string(items_string)
work_items.date = datetime.now()
return work_items
开发者ID:achellies,项目名称:WinCEWebKit,代码行数:12,代码来源:updateworkitems.py
示例4: post
def post(self):
queue_name = self.request.get("queue_name")
# FIXME: This queue lookup should be shared between handlers.
queue = Queue.queue_with_name(queue_name)
if not queue:
self.error(404)
return
attachment_id = self._int_from_request("attachment_id")
attachment = Attachment(attachment_id)
last_status = attachment.status_for_queue(queue)
# Ideally we should use a transaction for the calls to
# WorkItems and ActiveWorkItems.
# Only remove it from the queue if the last message is not a retry request.
# Allow removing it from the queue even if there is no last_status for easier testing.
if not last_status or not last_status.is_retry_request():
queue.work_items().remove_work_item(attachment_id)
RecordPatchEvent.stopped(attachment_id, queue_name)
else:
RecordPatchEvent.retrying(attachment_id, queue_name)
# Always release the lock on the item.
queue.active_work_items().expire_item(attachment_id)
开发者ID:SchleunigerAG,项目名称:WinEC7_Qt5.3.1_Fixes,代码行数:25,代码来源:releasepatch.py
示例5: get
def get(self, queue_name):
queue = Queue.queue_with_name(queue_name)
if not queue:
self.error(404)
return
# FIXME: Patch assignment should probably move into Queue.
patch_id = db.run_in_transaction(self._assign_patch, queue.active_work_items().key(), queue.work_items().item_ids)
if not patch_id:
self.error(404)
return
self.response.out.write(patch_id)
开发者ID:achellies,项目名称:WinCEWebKit,代码行数:11,代码来源:nextpatch.py
示例6: _build_bubbles_for_attachment
def _build_bubbles_for_attachment(self, attachment):
show_submit_to_ews = True
bubbles = []
for queue in Queue.all():
if not self._have_status_for(attachment, queue):
continue
bubbles.append(self._build_bubble(queue, attachment))
# If even one ews has status, we don't show the submit-to-ews button.
if queue.is_ews():
show_submit_to_ews = False
return (bubbles, show_submit_to_ews)
开发者ID:KDE,项目名称:android-qtwebkit,代码行数:12,代码来源:statusbubble.py
示例7: get
def get(self, queue_name):
self.response.headers["Access-Control-Allow-Origin"] = "*"
queue_name = queue_name.lower()
queue = Queue.queue_with_name(queue_name)
if not queue:
self.error(404)
return
self.response.headers['Content-Type'] = 'application/json'
status = {
"queue_length": len(queue.work_items().item_ids)
}
self.response.out.write(json.dumps(status))
开发者ID:AndriyKalashnykov,项目名称:webkit,代码行数:15,代码来源:queuelengthjson.py
示例8: post
def post(self):
queue_name = self.request.get("queue_name")
# FIXME: This queue lookup should be shared between handlers.
queue = Queue.queue_with_name(queue_name)
if not queue:
self.error(404)
return
attachment_id = self._int_from_request("attachment_id")
queue.active_work_items().expire_item(attachment_id)
# ReleaseLock is used when a queue neither succeeded nor failed, so it silently releases the patch.
# Let's try other patches before retrying this one, in the interest of fairness, and also because
# another patch could be posted to address queue problems.
queue.work_items().move_to_end(attachment_id)
开发者ID:AndriyKalashnykov,项目名称:webkit,代码行数:15,代码来源:releaselock.py
示例9: get
def get(self, queue_name, bot_id=None):
queue_name = queue_name.lower()
queue = Queue.queue_with_name(queue_name)
if not queue:
self.error(404)
return
statuses = self._fetch_statuses(queue, bot_id)
template_values = {
"page_title": self._page_title(queue, bot_id),
"work_item_rows": self._rows_for_work_items(queue),
"status_groups": self._build_status_groups(statuses),
"bot_id": bot_id,
}
self.response.out.write(template.render("templates/queuestatus.html", template_values))
开发者ID:dankurka,项目名称:webkit_titanium,代码行数:15,代码来源:queuestatus.py
示例10: get
def get(self, queue_name):
queue_name = queue_name.lower()
queue = Queue.queue_with_name(queue_name)
if not queue:
self.error(404)
return
self.response.headers['Content-Type'] = 'application/json'
status = {
"status_page": self.request.host_url + "/queue-status/" + queue_name,
"queue": self._rows_for_work_items(queue),
"bots": self._bots(queue),
}
dthandler = lambda obj: obj.isoformat() if isinstance(obj, datetime.datetime) or isinstance(obj, datetime.date) else None
self.response.out.write(json.dumps(status, default=dthandler))
开发者ID:EliBing,项目名称:webkit,代码行数:16,代码来源:queuestatusjson.py
示例11: _build_bubbles_for_attachment
def _build_bubbles_for_attachment(self, attachment):
show_submit_to_ews = True
bubbles = []
for queue in Queue.all():
if not self._have_status_for(attachment, queue):
continue
queue_position = attachment.position_in_queue(queue)
if queue_position and queue_position >= 100:
# This queue is so far behind it's not even worth showing.
continue
bubbles.append(self._build_bubble(queue, attachment, queue_position))
# If even one ews has status, we don't show the submit-to-ews button.
if queue.is_ews():
show_submit_to_ews = False
return (bubbles, show_submit_to_ews)
开发者ID:3163504123,项目名称:phantomjs,代码行数:16,代码来源:statusbubble.py
示例12: _build_bubbles_for_attachment
def _build_bubbles_for_attachment(self, attachment):
show_submit_to_ews = True
bubbles = []
for queue in Queue.all():
if not self._should_show_bubble_for(attachment, queue):
continue
queue_position = attachment.position_in_queue(queue)
bubble = self._build_bubble(queue, attachment, queue_position)
if bubble:
bubbles.append(bubble)
# If at least one EWS queue has status, we don't show the submit-to-ews button.
if queue.is_ews():
show_submit_to_ews = False
failed_to_apply = any(map(lambda bubble: "failed_to_apply" in bubble, bubbles))
had_resultative_status_other_than_failure_to_apply = any(map(lambda bubble: bubble["had_resultative_status_other_than_failure_to_apply"], bubbles))
return (bubbles, show_submit_to_ews, failed_to_apply and not had_resultative_status_other_than_failure_to_apply)
开发者ID:eocanha,项目名称:webkit,代码行数:18,代码来源:statusbubble.py
示例13: get
def get(self, queue_name, bot_id=None):
queue_name = queue_name.lower()
queue = Queue.queue_with_name(queue_name)
if not queue:
self.error(404)
return
statuses = self._fetch_statuses(queue, bot_id)
template_values = {
"page_title": self._page_title(queue, bot_id),
"work_item_rows": self._rows_for_work_items(queue),
"status_groups": self._build_status_groups(statuses),
"bot_id": bot_id,
"last_pass": self._fetch_last_message_matching(queue, bot_id, "Pass"),
"last_boot": self._fetch_last_message_matching(queue, bot_id, "Starting Queue"),
"trailing_month_pass_count": self._fetch_trailing_days_pass_count_string(queue, bot_id, 30),
"trailing_week_pass_count": self._fetch_trailing_days_pass_count_string(queue, bot_id, 7),
}
self.response.out.write(template.render("templates/queuestatus.html", template_values))
开发者ID:Moondee,项目名称:Artemis,代码行数:19,代码来源:queuestatus.py
示例14: post
def post(self):
queue_name = self.request.get("queue_name")
# FIXME: This queue lookup should be shared between handlers.
queue = Queue.queue_with_name(queue_name)
if not queue:
self.error(404)
return
attachment_id = self._int_from_request("attachment_id")
attachment = Attachment(attachment_id)
last_status = attachment.status_for_queue(queue)
# Ideally we should use a transaction for the calls to
# WorkItems and ActiveWorkItems.
queue.work_items().remove_work_item(attachment_id)
RecordPatchEvent.stopped(attachment_id, queue_name, last_status.message)
queue.active_work_items().expire_item(attachment_id)
开发者ID:AndriyKalashnykov,项目名称:webkit,代码行数:19,代码来源:releasepatch.py
示例15: _fetch_summary
def _fetch_summary(self):
summary = { "attachment_id" : self.id }
first_status = QueueStatus.all().filter('active_patch_id =', self.id).get()
if not first_status:
# We don't have any record of this attachment.
return summary
summary["bug_id"] = first_status.active_bug_id
for queue in Queue.all():
summary[queue.name_with_underscores()] = None
status = QueueStatus.all().filter('queue_name =', queue.name()).filter('active_patch_id =', self.id).order('-date').get()
if status:
# summary() is a horrible API and should be killed.
summary[queue.name_with_underscores()] = {
"state": self.state_from_queue_status(status),
"status": status,
}
return summary
开发者ID:Happy-Ferret,项目名称:webkit.js,代码行数:19,代码来源:attachment.py
示例16: _add_attachment_to_ews_queues
def _add_attachment_to_ews_queues(self, attachment):
for queue in Queue.all_ews(): # all_ews() currently includes the style-queue
if self._should_add_to_ews_queue(queue, attachment):
queue.work_items().add_work_item(attachment.id)
RecordPatchEvent.added(attachment.id, queue.name())
开发者ID:3163504123,项目名称:phantomjs,代码行数:5,代码来源:submittoews.py
示例17: _calculate_queue_positions
def _calculate_queue_positions(self):
all_work_items = WorkItems.all().fetch(limit=len(Queue.all()))
return dict([(items.queue.name(), items.display_position_for_attachment(self.id)) for items in all_work_items if items.queue])
开发者ID:Happy-Ferret,项目名称:webkit.js,代码行数:3,代码来源:attachment.py
示例18: _queue_getter
def _queue_getter(self):
# Import at runtime to avoid circular imports
from model.queues import Queue
return Queue.queue_with_name(self.queue_name)
开发者ID:SchleunigerAG,项目名称:WinEC7_Qt5.3.1_Fixes,代码行数:4,代码来源:queuepropertymixin.py
示例19: get
def get(self):
template_values = {"queues": [QueueBubble(queue) for queue in Queue.all()]}
self.response.out.write(template.render("templates/recentstatus.html", template_values))
开发者ID:venkatarajasekhar,项目名称:Qt,代码行数:3,代码来源:recentstatus.py
示例20: test_style_queue_is_ews
def test_style_queue_is_ews(self):
# For now we treat the style-queue as an EWS since most users would
# describe it as such. If is_ews() ever needs to mean "builds the patch"
# or similar, then we will need to adjust all callers.
self.assertTrue(Queue("style-queue").is_ews())
self.assertTrue("style-queue" in map(Queue.name, Queue.all_ews()))
开发者ID:achellies,项目名称:WinCEWebKit,代码行数:6,代码来源:queues_unittest.py
注:本文中的model.queues.Queue类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论