Displaying 5 results from an estimated 5 matches for "l49".
Did you mean:
49
2001 Mar 07
1
Minor bug in maketitle.pl (with bug correction) (PR#864)
...ju.graphics
Bla bla bla...
To solve this minor bug, just include a line '$old=""'. See line 49 below.
maketitle.pl:
L42: $S = '';
L43: $lc = 16;
L44: $rc = 72;
L45: $old = $package;
L46: $len = length($old);
L47: if ($len > $lc - 3) {
L48: $S = $old;
L49: $old = ""; ### Forgot to this line.
L50: for ($j = 1; $j < $lc; $j++) {
L51: $old = $old . ' ';
L52: }
L53: }
L54: else {
L55: for ($j = 1; $j < $lc - $len; $j++) {
L56: $old = $old . ' ';
L57: }
L58: }
-.-.-.-.-.-.-.-.-.-.-.-....
2023 Aug 31
1
[nbdkit PATCH] sh: Allow pwrite to not consume all data
...don't understand it.
sh plugin is often used for testing where the data written doesn't
matter but we're interested in other metadata like what write calls
were issued, eg:
https://gitlab.com/nbdkit/libnbd/-/blob/c713529e9fd0641b2d73f764517b5f9c21a767fd/copy/copy-sparse-no-extents.sh#L49
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
Fedora Windows cross-compiler. Compile Windows programs, test, and
build Windows installers. Over 100 libraries supported.
http://fedorapr...
2018 Nov 16
1
Sieve notify variables not working with body?
Thanks, now it works.
But it seems that :message string (of notify command) is limited to 255
chars.
Is there any chance to change limit to 512 ?
require ["body","enotify","variables","foreverypart","mime","extracttext"];
foreverypart
{
if header :mime :type :is "Content-Type" "text"
{
extracttext
2023 Aug 31
1
[nbdkit PATCH] sh: Allow pwrite to not consume all data
...> sh plugin is often used for testing where the data written doesn't
> matter but we're interested in other metadata like what write calls
> were issued, eg:
>
> https://gitlab.com/nbdkit/libnbd/-/blob/c713529e9fd0641b2d73f764517b5f9c21a767fd/copy/copy-sparse-no-extents.sh#L49
I look at it as: the plugin decides HOW to process the bytes that the
client requested to write. A traditional plugin will store the data
so it can be read back later (in which case, failing to read all of
stdin better result in the plugin returning failure). But during
testing, a plugin can dec...
2023 Aug 31
1
[nbdkit PATCH] sh: Allow pwrite to not consume all data
On 8/31/23 10:55, Richard W.M. Jones wrote:
> On Thu, Aug 31, 2023 at 10:40:53AM +0200, Laszlo Ersek wrote:
>> On 8/31/23 00:21, Eric Blake wrote:
>>> I hit another transient failure in libnbd CI when a poorly-written
>>> eval script did not consume all of stdin during .pwrite. As behaving
>>> as a data sink can be a somewhat reasonable feature of a