similar to: ignorepat

Displaying 20 results from an estimated 3000 matches similar to: "ignorepat"

2006 Jan 28
2
VOIP carriers and asterisk
Hi all, I am new to asterisk and am looking for a voip provider that supports asterisk. I am aware that their are several vendors to choose from. Any opinions on the best one? thanks Burak Balasaygun -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060128/0a97a302/attachment.htm
2004 Jan 13
2
Voicepulse
I am having probelms connecting to voicepulse this morning. Is anybody else having issues.. burak
2013 Jul 01
2
About Decode Streaming
Sorry, I am newbie. Sample codes are from https://github.com/oneman/libflac/tree/master/examples/cpp. I used FLAC__stream_decoder_process_single function but it still gives exception. Maybe I could not control read callback, you're right. I will check it and write result in this thread. Thanks for help. 2013/7/1 Martijn van Beurden <mvanb1 at gmail.com> > I'll top-post this
2013 Jul 02
2
About Decode Streaming
Martijn, I don't use any metadata when encoding and decoding. When I call *FLAC__StreamDecoderStateString[FLAC__stream_decoder_get_state(m_decoder)] * * * it returns FLAC__STREAM_DECODER_SEARCH_FOR_METADATA enum value. Is it an error ? 2013/7/2 Burak Or?un ?zkablan <borcunozkablan at gmail.com> > Hi again, > > I can not solve problem. I want to mention my source code, so
2008 Mar 26
1
adjusted means and adjusted standard errors after ANOVA
I am trying to obtain adjusted means and standard errors for a three way ANOVA I have three effects, two continuous; fire frequency and annual precipitation, and one categorical; soil type in an unbalanced design. I am testing the effect of annual precipition (AP), soil type (ST), and fire frequency (FF) on stem count (SCt) My data table looks as such: ST FF AP SCt 3 Coy
2004 Dec 23
2
how to ignore t.test error message
Hello, I was wondering if there is a way to ignore the error message you get when some of the data means you compare are constant in some lines of your data frame. I'd like to go ahead with t.test and get the calculated p-values anyway in such a case. Thanks -burak
2013 Jul 01
3
About Decode Streaming
Hi, I am developing an audio network system and using boost, OpenAL and FLAC library in C/C++. I can stream raw audio data over network but I want to encode audio before streaming in current PC and decode after streaming in other PC because of bandwidth limit. I run your sample codes, encode.c and decode.c, about file encode / decode. Then, I run streaming encode / decode with two different
2014 Jul 18
2
subfolders in public mailboxes
Hello, I added this to the configuration: namespace { type = public separator = . prefix = public. location = maildir:/var/mail/public subscriptions = no list = yes } and I can list maildirs inside these folders correctly. however, I can't see any subfolders. The issue seems to be that /var/mail/public dir itself is interpreted as a maildir directory. However, what I'd
2008 Nov 06
1
Reconnect behaviour
Hello, Does Samba server have a grace period that allows a client to reopen its files and reacquire locks on them before the locks are given to other clients? If there is no grace period, is there a way for the client to avoid the lock ownerships files if the connection goes away for a short period (say few seconds). Thanks and Regards Sudheer
2006 Jan 17
2
DHCP without network access
Hi, I've got a box with CentOS 4.2 x86_64 which had no DHCP access for a few hours, now I can't ping it (I'm pretty sure the box is still up). I expect the DHCP lease has timed out and the box has lost it's IP, I was expecting it to reacquire it once the DHCP came back up (configuration problem) - but no luck. Is this a known problem? Any solution/workaround? (for now or for
2013 Jul 02
3
About Decode Streaming
Yes, I have tried plain wav data with file and stream functions of decoder and encoder. They work succesfully. You're right about FLAC can't find the first block in stream, because I didn't add any metadata in stream. The documentation of FLAC says that metadata callback function is optional for stream function of decoder, so I didn't need adding metadata. Actually, I am sure
2019 Jun 14
3
[PATCH] drm/nouveau/dmem: missing mutex_lock in error path
In nouveau_dmem_pages_alloc(), the drm->dmem->mutex is unlocked before calling nouveau_dmem_chunk_alloc(). Reacquire the lock before continuing to the next page. Signed-off-by: Ralph Campbell <rcampbell at nvidia.com> --- I found this while testing Jason Gunthorpe's hmm tree but this is independant of those changes. I guess it could go through David Airlie's tree for nouveau
2013 May 30
1
Dovecot 2.2 build rpm on Centos6
> -----Original Message----- > From: dovecot-bounces at dovecot.org [mailto:dovecot-bounces at dovecot.org] > On Behalf Of Burak G?RER > Sent: Thursday, May 30, 2013 10:34 AM > To: Nikolaos Milas > Cc: Dovecot Mailing List > Subject: Re: [Dovecot] Dovecot 2.2 build rpm on Centos6 > > On 27-05-2013 16:56, Nikolaos Milas wrote: > > On 27/5/2013 1:07 ??, Birta
2016 Jul 13
2
[PM] I think that the new PM needs to learn about inter-analysis dependencies...
On Wed, Jul 13, 2016 at 1:40 AM Sean Silva <chisophugis at gmail.com> wrote: > On Wed, Jul 13, 2016 at 12:39 AM, Hal Finkel <hfinkel at anl.gov> wrote: > >> Interesting. I'm not sure this is the right metric, however. There are >> lots of analyses that hold pointers to other analyses but don't need to. >> The analysis handle itself can be reacquired
2005 Oct 11
1
Error when cross configuring openssh 4.2p1
I see that lots of improvements have happened in cross configure support compared to version 3.8p1 but a couple of problems remain 1) The check that openpty does not reacquire controlling terminal (line 1326 in configure.ac) does not have a default value - I ran the test on my target and checked it was OK but I'm not sure what is the best default for others. 2) The etc_default_login
2008 Jun 18
1
linux server not caching users
I've got a CentOS 5 server joined to a Windows 2003 Domain. The Linux machine joined the Windows domain successfully and imported users, created their home directories and migrated their passwords. When looking at the current home directory It lists permissions and ownership properly for a few minutes drwxr-xr-x 2 jdoe domain users 4.0K Jun 14 2007 jdoe drwxr-xr-x 2 jqpublic domain
2013 Jul 02
0
About Decode Streaming
Hi again, I can not solve problem. I want to mention my source code, so you may answer easily. This is decoder init stream function. *FLAC__stream_decoder_init_stream(m_decoder, decoderReadCallback, NULL, NULL, NULL, NULL, decoderWriteCallback, NULL, decoderErrorCallback, input_pile_array);* * * Then, callbacks * * /// \brief read callback function of decoder FLAC__StreamDecoderReadStatus
2012 Nov 14
2
auth attempts errors
i have install 2.1.1 and configured in dovecot log this error is coming every 20 seconds: dovecot: imap-login: Disconnected (no auth attempts in 0 secs): rip=**********, lip=**********, TLS handshaking: SSL_accept() syscall failed: Connection reset by peer and this error every 2 seconds: dovecot: imap-login: Disconnected (no auth attempts in 0 secs): rip=**********, lip=********** what can
2004 Apr 09
3
Ignorepat with capi
Hi to all, I'm trying to make outside call in this way : ignorepat => 0 exten => _0.,1,Dial(CAPI/xxxxxxx:b${exten}) But the first number 0 is not ignored. I'm doing something wrong ? Bye
2004 May 19
0
problem with ignorepat
> I have placed "ignorepat => 9" in just about every context I > can think of in my extensions.conf, but yet when I dial 9 > from my sip devices, the dialtone is broken. I even tried a > nearly untouched version of samples, and it stil doesn't > work. Is there something somewhere else that needs to be set > to make this work properly, like may in the sip