Advertisement
Guest User

Untitled

a guest
May 27th, 2017
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. Traceback (most recent call last):
  2. File "/usr/lib/python3/dist-packages/pexpect/spawnbase.py", line 144, in read_nonblocking
  3. s = os.read(self.child_fd, size)
  4. OSError: [Errno 5] Input/output error
  5.  
  6. During handling of the above exception, another exception occurred:
  7.  
  8. Traceback (most recent call last):
  9. File "/usr/lib/python3/dist-packages/pexpect/expect.py", line 97, in expect_loop
  10. incoming = spawn.read_nonblocking(spawn.maxread, timeout)
  11. File "/usr/lib/python3/dist-packages/pexpect/pty_spawn.py", line 455, in read_nonblocking
  12. return super(spawn, self).read_nonblocking(size)
  13. File "/usr/lib/python3/dist-packages/pexpect/spawnbase.py", line 149, in read_nonblocking
  14. raise EOF('End Of File (EOF). Exception style platform.')
  15. pexpect.exceptions.EOF: End Of File (EOF). Exception style platform.
  16.  
  17. During handling of the above exception, another exception occurred:
  18.  
  19. Traceback (most recent call last):
  20. File "tagging_p1.py", line 66, in <module>
  21. child.expect('Loaded')
  22. File "/usr/lib/python3/dist-packages/pexpect/spawnbase.py", line 315, in expect
  23. timeout, searchwindowsize, async)
  24. File "/usr/lib/python3/dist-packages/pexpect/spawnbase.py", line 339, in expect_list
  25. return exp.expect_loop(timeout)
  26. File "/usr/lib/python3/dist-packages/pexpect/expect.py", line 102, in expect_loop
  27. return self.eof(e)
  28. File "/usr/lib/python3/dist-packages/pexpect/expect.py", line 49, in eof
  29. raise EOF(msg)
  30. pexpect.exceptions.EOF: End Of File (EOF). Exception style platform.
  31. <pexpect.pty_spawn.spawn object at 0x7fdea96e75f8>
  32. command: /usr/bin/java
  33. args: ['/usr/bin/java', '-Xxmx4g', '-jar', 'stagger/stagger.jar', '-modelfile', 'swedish.bin', '-posBeamSize', '200', '-multiple', '10', '-tag', '-']
  34. searcher: None
  35. buffer (last 100 chars): b''
  36. before (last 100 chars): b'ld not create the Java Virtual Machine.\r\nError: A fatal exception has occurred. Program will exit.\r\n'
  37. after: <class 'pexpect.exceptions.EOF'>
  38. match: None
  39. match_index: None
  40. exitstatus: None
  41. flag_eof: True
  42. pid: 25688
  43. child_fd: 5
  44. closed: False
  45. timeout: 30
  46. delimiter: <class 'pexpect.exceptions.EOF'>
  47. logfile: None
  48. logfile_read: None
  49. logfile_send: None
  50. maxread: 2000
  51. ignorecase: False
  52. searchwindowsize: None
  53. delaybeforesend: 0.05
  54. delayafterclose: 0.1
  55. delayafterterminate: 0.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement