コード例 #1
0
ファイル: codelang.py プロジェクト: korepwx/railgun
 def do_rerun(self, handid, hw, stored_content):
     run_netapi.delay(handid, hw.uuid, stored_content, {})
コード例 #2
0
ファイル: codelang.py プロジェクト: lzz12/railgun
 def do_handle_upload(self, handid, hw, form):
     # We store the user uploaded file in local storage!
     self.store_content(handid, form.address.data)
     # Push the submission to run queue
     run_netapi.delay(handid, hw.uuid, form.address.data, {})
コード例 #3
0
ファイル: codelang.py プロジェクト: xin-xinhanggao/railgun
 def do_rerun(self, handid, hw, stored_content):
     run_netapi.delay(handid, hw.uuid, stored_content, {})