search for: nfound

Displaying 8 results from an estimated 8 matches for "nfound".

Did you mean: found
2008 Jun 11
3
searching for specific row in matrix
...population print(pop) # I am looking for the index of this in pop # if present (else -1?) cat("\ntarget: ", target, "\n") ## ## this is NOT working ## plus it would continue to search ## after it found the target ## for(i in ROWS) if (pop[i,] == target) cat("\nfound in row: ", i, "\n\n")
2010 Apr 09
1
[PATCH] Add SSH transfer method
...rite); + close($stderr_write); + + # Check that we don't get output on stderr before we read the file size + for(;;) { + my ($rin, $rout); + $rin = ''; + vec($rin, fileno($stdout_read), 1) = 1; + vec($rin, fileno($stderr_read), 1) = 1; + + my $nfound = select($rout=$rin, undef, undef, undef); + die("select failed: $!") if ($nfound < 0); + + if (vec($rout, fileno($stderr_read), 1) == 1) { + my $stderr = ''; + while(<$stderr_read>) { + $stderr .= $_; + } + +...
2015 Mar 31
7
Wanted: smartcard with ECDSA support
Hi list, I have no idea if Damien Miller had the time to work on that. I have an initial patch to authenticate using PKCS#11 and ECDSA keys. This requires OpenSSL 1.0.2, prior OpenSSL versions do not expose the required interfaces to override the signature function pointer for ECDSA. The only limitation is that the OpenSSL API misses some cleanup function (finish, for instance), hence I have yet
2010 Mar 17
20
[Bug 1736] New: OpenSSH doesn't seem to work with my MuscleCard PKCS#11 library
...blic key: /usr/local/lib/libmusclepkcs11.so debug1: Authentications that can continue: publickey,keyboard-interactive debug1: Offering public key: /usr/local/lib/libmusclepkcs11.so debug1: Server accepts key: pkalg ssh-rsa blen 151 Enter PIN for 'MuscleCard Applet': C_FindObjects failed (0 nfound): 0 ssh_rsa_sign: RSA_sign failed: error:00000000:lib(0):func(0):reason(0) debug1: Trying private key: /home/dbenoy/.ssh/id_rsa debug1: Trying private key: /home/dbenoy/.ssh/id_dsa debug1: Next authentication method: keyboard-interactive Password: ---------- This PKCS#11 module works fine with Ev...
2009 Jul 30
11
[PATCH 0/9] Quota support for ocfs2-tools (version 2)
Hi, this is the next version of quota support for quota tools. I've addressed all the comments of Tao, Joel and others. Sparse feature disabling also correctly updates quota information now and the patch is merged into the tunefs support patch. Honza
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...stdout + if ($rw == 0) { + $win = undef; + vec($rin, fileno($self->{stdout}), 1) = 1; + } + + # Waiting to write to stdin + else { + $win = ''; + vec($win, fileno($self->{stdin}), 1) = 1; + } - my $nfound = select($rout=$rin, undef, undef, undef); + my $nfound = select($rout=$rin, $wout=$win, undef, undef); die("select failed: $!") if ($nfound < 0); - if (vec($rout, fileno($stderr_read), 1) == 1) { - my $stderr = ''; - while(<$st...
2009 Jul 27
11
[PATCH 0/8] Quota support for ocfs2-tools
Hi, I'm sending a series of patches implementing quota support into ocfs2-tools. It's the same as the original huge patch I've sent but now it's split as Joel asked. I've also realized that when disabling SPARSE feature, we should update quota information. That piece of code is missing, I'll implement it soon. Comments welcome. Honza
2009 Aug 03
9
[PATCH 0/9] Quota support for ocfs2-tools (version 3)
Hi, below comes a new version of the series of patches implementing quota support for ocfs2-tools. I've fixed the calls of ocfs2_malloc_blocks() which were given number of bytes instead of number of blocks. Besides that the series should be the same. Honza