Displaying 6 results from an estimated 6 matches for "eofexception".
Did you mean:
eh_exception
2009 Apr 27
5
ruby jasper report
...(0.0ms) [0m [0mSHOW FIELDS FROM
`customers` [0m
Rendering account/customer_list
Sending data CustomerReport.pdf
Completed in 422ms (View: 0, DB: 0) | 200 OK
[http://localhost/account/customer_report]"
But I am getting an error in "XmlJasperInterface.log" like this
"java.io.EOFException
at java.io.ObjectInputStream$PeekInputStream.readFully(Unknown Source)
at java.io.ObjectInputStream$BlockDataInputStream.readShort(Unknown
Source)
at java.io.ObjectInputStream.readStreamHeader(Unknown Source)
at java.io.ObjectInputStream.<init>(Unknown Source)
at
net.sf.jasperreport...
2013 Jun 21
1
[LLVMdev] ASan for Android Applications
...script, I got a nice
linker error and stack trace saying that
libclang_rt.asan-arm-android.so wasn't found. After properly
preloading the ASan runtime, I see the following error message:
W/Zygote ( 144): Error reading pid from wrapped process, child may have died
W/Zygote ( 144): java.io.EOFException
W/Zygote ( 144): at libcore.io.Streams.readFully(Streams.java:83)
W/Zygote ( 144): at java.io.DataInputStream.readInt(DataInputStream.java:124)
W/Zygote ( 144): at
com.android.internal.os.ZygoteConnection.handleParentProc(ZygoteConnection.java:908)
W/Zygote ( 144): at
com.android.internal.o...
2007 Dec 05
4
Java parser for R data file?
Hi everyone,
Has anyone written a parser in Java for either the ASCII or binary format
produced by save()? I need to parse a single large 2D array that is
structured like this:
list(
"32609_1" = c(-9549.39231289146, -9574.07159324482, ... ),
"32610_2" = c(-6369.12526971635, -6403.99620977124, ... ),
"32618_2" = c(-2138.29095689061, -2057.9229403233, ... ),
2017 Oct 26
0
fts-solr: fresh start or reindex large mailboxes
Hi,
Install solr (in the end 7.1.0) there were errors:
Caused by: org.eclipse.jetty.io.EofException: Early EOF
and from dovecot:
Error: Mailbox INBOX: Transaction commit failed: FTS transaction
commit failed: backend
I could not find for a long time what the problem was and set the
nginx as a proxy, and see that dovecot breaks the connect after 60
seconds.
After examining the code, I found the f...
2013 Jun 21
0
[LLVMdev] ASan for Android Applications
You are citing the "Android platform workflow" section, which is about
sanitizing components of the Android system itself.
For NDK apps, see "Android NDK workflow" in the same document.
You need -eng build because preloading libraries into dalvik vm is not
allowed in user builds. JellyBean includes several bugfixes in the
dynamic loader that asan needs.
Was there any useful
2013 Jun 21
3
[LLVMdev] ASan for Android Applications
From:
http://address-sanitizer.googlecode.com/svn-history/r1624/wiki/Android.wiki
> AddressSanitizer is fully supported in AOSP starting with JellyBean release. To run
> applications built with ASan you'll need an -eng build of Android.
>
> To build any part of Android system with ASan, add
> LOCAL_ADDRESS_SANITIZER:=true to the appropriate Android.mk.
I don't see that