Displaying 7 results from an estimated 7 matches for "nputs".
Did you mean:
inputs
2006 Dec 07
4
Removing a block of text within a string
When you first visit my site, you see a snippet (the first 75 words) of
the most recent post. If it exceeds 75 words, a link will be appended
to extend the post and read it in full.
Now, my problem is when I post a code snippet, and I use "pre" tags to
preserve its formatting, I don''t want that to show up on the snippet...
only on the full version of the post. The reason is
2006 Dec 05
1
unsuccessful speex_echo_cancel() usage
Hello Jean-Marc and all,
I?ve got a problem with speex_echo_cancel usage. I only managed to get an
attenuation of 5-8 db using testecho.c and it depends heavily on the
playback/capture delay. I used clear speech as far-end input and same speech
with a bit of reverb, attenuation and delay as mic nput. I also tried using
played and recorded speech for mic input. I tried different constant delays
2005 Mar 21
0
Comport access error
I'm trying to get working a simulator.
I use wine + wondows.
The prgram runs quite welle Bit I get an error
when accessing the com1 port (the game adapter is a
serial one)
This worked with wine 20040914 but is now broken.
Here is the comm trace:
[jm@localhost AeroFly Professional]$ WINEDEBUG="comm"
wine afpro
Please use the registry key
HKEY_CURRENT_CONFIG\Software\Fonts\LogPixel
to
2003 Jun 20
0
[PATCH] Regression test portabilization.
Hi All.
Attached is a patch (against OpenSSH Portable -current) to portablize the
regression tests. It will also apply to OpenBSD's (with a couple of
rejects). They are based on work by Roumen Petrov and myself, with
contributions from Corinna Vinschen and David M Williams.
My goal is to have the tests work out of the box on as many of our
supported platforms as possible so running the
2019 Dec 04
0
error in parallel:::sendMaster
Hi all,
With the help of Tomas, I was able to track the issue down: Prior to R v3.6.0 the parallel package passes an uninitialized variable as the file descriptor argument to the close system call.
In my particular R session this uninitialized variable (reproducibly) was holding the value 7, which corresponded to the file descriptor of the write end of the pipe the second child would use to
2019 Dec 04
0
error in parallel:::sendMaster
Hi all,
With the help of Tomas, I was able to track the issue down: Prior to R v3.6.0 the parallel package passes an uninitialized variable as the file descriptor argument to the close system call.
In my particular R session this uninitialized variable (reproducibly) was holding the value 7, which corresponded to the file descriptor of the write end of the pipe the second child would use to
2019 Nov 28
1
error in parallel:::sendMaster
Hi Andreas,
thank you very much, good job finding it was EBADF. Now the question is
why the pipe has been closed prematurely; it could be accidentally by R
(a race condition in the cleanup code in fork.c) or possibly by some
other code running in the same process (maybe the R program itself or
some other code it runs). Maybe we can take this off the list and come
back when we know the cause