Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

62
votes
22answers
4k views

Is “Out Of Memory” A Recoverable Error?

I've been programming a long time, and the programs I see, when they run out of memory, attempt to clean up and exit, i.e. fail gracefully. I can't remember the last time I saw one actually attempt to ...
1
vote
1answer
71 views

GLR parser with error recovery: too much alternatives when there are errors in input

Preamble I have written GLR-parser with error recovery. When it encounters an error it splits into following alternatives: Insert the expected element into input (may be the user just missed it) ...
1
vote
1answer
303 views

nhibernate error recovery

I downloaded Rhino Security today and started going through some of the tests. Several that run perfectly in isolation start getting errors after one that purposely raises an exception runs though. ...
1
vote
2answers
217 views

AST with fixed nodes instead of error nodes in antlr

I have an antlr generated Java parser that uses the C target and it works quite well. The problem is I also want it to parse erroneous code and produce a meaningful AST. If I feed it a minimal Java ...
0
votes
0answers
303 views

nexus s pc mount and ics 4.0.3 recovery black screen [closed]

When i was using gingerbread 2.3.4, my nexus s is not connecting to pc. pc is not taking is driver. i tried so much by some adb driver and also Samsung's latest drivers. but still it is not ...
0
votes
0answers
71 views

Howto: MySQL InnoDB corruption auto-repair after power failure?

I have a temperature recording application running on linux with an Intel Atom machine with SSD as hardware. The application constantly inserts temperature data into InnoDB (4 records every 5 ...
0
votes
1answer
85 views

Is this LimitedInputStream correct?

I've written a class called LimitedInputStream. It wraps around an existing input stream to limit the number of bytes read from it to a specified length. It's meant as an alternative to: byte[] data ...
0
votes
0answers
51 views

Sun (or Oracle) JDK parser and error recovery technique

Does anyone know what parsing and error recovery technique used by Sun (or Oracle) JDK parser? I'm interested especially in the high quality error messages produced (exact error location + related ...
0
votes
0answers
77 views

Error recovery in XHTML parser

I'm trying to build a XHTML simple browser using JavaCC but I faced a problem at Error recovery .. I tried to use deep error recovery by try { } catch (ParseExeption) { SkipTo(String) } and ...