search for: zerr

Displaying 6 results from an estimated 6 matches for "zerr".

Did you mean: err
2006 Nov 05
4
Why Struts2 use dojo instead of Scriptaculous?
Hi, I''m using prototype/Scriptaculous in my open source project JSControlsTags http://jscontrolstags.sourceforge.net/ I''m Struts user and in the new version Struts2, the framework integrate AJAX with dojo and not with Prototype/Scriptaculous. I asked in the Struts forum, why Struts2 integrate by default dojo and not scriptaculous. Here Struts answer : ------------------------
2020 Jul 10
2
[PATCH nbdkit] New filter: gzip
...d *nxdata, int readonly) +{ + /* Always pass readonly=1 to the underlying plugin. */ + if (next (nxdata, 1) == -1) + return NULL; + + return NBDKIT_HANDLE_NOT_NEEDED; +} + +/* Convert a zlib error (always negative) to an nbdkit error message, + * and return errno correctly. + */ +static void +zerror (const char *op, const z_stream *strm, int zerr) +{ + if (zerr == Z_MEM_ERROR) { + errno = ENOMEM; + nbdkit_error ("gzip: %s: %m", op); + } + else { + errno = EIO; + if (strm->msg) + nbdkit_error ("gzip: %s: %s", op, strm->msg); + else + nbdki...
2012 Oct 10
5
Theora integration question
Hello, I am programmer working on a product which integrates Theora. I have a question regarding the memory use on some of the internals of Theora. Is this the right forum for this question, and if not, does anyone know where an appropriate place to ask is? Thanks Sam -------------- next part -------------- An HTML attachment was scrubbed... URL:
2005 Oct 17
1
Shared Folder usage alpha3
Dear List, this is my first mail to this list. I'v tried to carefully review all given information towards the Shared Folder subject I could find in the archive / mailing list / wiki. And so far I'm also aware that Timo hasn't put it on the active tasklist for the 1.0 release. Citing the track http://dovecot.org/pipermail/dovecot/2003-October/002493.html I was wandering, wether any
2020 Jul 10
0
Re: [PATCH nbdkit] New filter: gzip
...> +++ b/filters/gzip/gzip.c > @@ -0,0 +1,347 @@ > +/* The first thread to call gzip_prepare uncompresses the whole plugin. */ > +static int > +do_uncompress (struct nbdkit_next_ops *next_ops, void *nxdata) > +{ > + int64_t compressed_size; > + z_stream strm; > + int zerr; > + const char *tmpdir; > + size_t len; > + char *template; > + CLEANUP_FREE char *in_block = NULL, *out_block = NULL; > + > + /* This was the same buffer size as used in the old plugin. As far > + * as I know it was chosen at random. > + */ > + const size_t b...
2006 Oct 06
0
Selectable Draggable with SubsDraggable
Hi, I have updated SubsDraggable found at http://dev.rubyonrails.org/ticket/5771 in order to manage draggable with one more items. Function getDragElement is called at initDrag and must returns element to drag. I mail you an example subsdraggable.zip of SubsDraggable to see how use it. There is an example which show how select several items and after drag them. I have intention to develop swap