search for: unheard

Displaying 20 results from an estimated 91 matches for "unheard".

Did you mean: heard
2006 Jan 17
4
How to find out if a new voicemail exists
...ecorded. I want to send a SMS to mobile phones if someone recorded a message on our voicemail system. I can use VMCOUNT to see if there are new messages in the Inbox but this will result in new SMS being sent even if the caller hangs up during the Voicemailpromt, at least if there are still unread/unheard messages in the inbox. Is there some option or variable I missed or is this a feature request? Kind regards, JP
2012 Dec 17
3
getdents spinning on 0x7fffffff
...with existing entry items with giant keys. If for no other reason than big jerks making corrupt images and leaving them on usb keys in Josef''s driveway. Should we drop the silly INT_MAX setting for 64bit callers and return -EOVERFLOW for 32bit callers? (That''d be gross, but not unheard of. ext4 has grown htree behaviour that depends on compat detection: see its is_32bit_api() callers.) I can make up some fixes but I''d love to hear strong opinions first, if anyone''s got ''em :). - z -- To unsubscribe from this list: send the line "unsubscribe linu...
2020 Feb 05
3
IndVarSimplify: getBackedgeTakenCount and Release vs Assert
Hi, I am investigating a difference in code generation between release and assert builds of llvm. The culprit is IndVarSimplify that comes up with different behavior on the same input: in the assertion build, it does do an extra 'INDVARS: Rewriting loop exit condition' After digging around, it seems that following change is the culprit: ----- Author: Philip Reames <listmail at
2009 Jun 11
2
one domU out of 4 looses time sync
...SL4 domUs run Linux 2.6.9-78.0.17.ELxenU #1 SMP Thu Mar 12 14:49:52 CDT 2009 x86_64 x86_64 x86_64 GNU/Linux and on dom0 xen-libs-3.0.3-64.el5_2.9 xen-3.0.3-64.el5_2.9 This is very puzzling. I did quiet some googling but I was unable to find something that resolved the issue, which seems to be unheard of (only one domU getting out of sync). I would appreciate any ideas on how to resolve this. Cheers, -- ============================================================================= Dimitris Zilaskos GridAUTH Operations Centre @ Aristotle University of Thessaloniki , Greece Tel: +302310998988...
2004 May 21
0
voicemail removal script
...system('find '.$dir.'/'.$context.'/*/Old -name msg????.??? -mtime +'.$age.' -exec rm {} \; -exec echo Deleted {} \;'); with the additional /*/Old The script will only delete messages that have been listened to and not new ones. If you'd want to remove new unheard messages perhaps have 2 age variables, quickly delete old listened to messages and slowly delete - if at all - new unheard messages. $newage=31 $ageold=7 system('find '.$dir.'/'.$context.'/*/INBOX -name msg????.??? -mtime +'.$newage.' -exec rm {} \; -exec echo Delete...
2012 Jun 17
1
Missing voicemail prompt beginning
Hello, I am using the voicemail module of asterisk. When I did some test calls from my mobile phone, sometimes the beginning of the prompt was missing, e.g. instead of something like "number 12345 not available" I was only hearing "345 not available". Verbose level 5 on the asterisk console didn't give me any hint on this, it only shows that playback of the prompt started
2016 Jul 13
2
[PM] I think that the new PM needs to learn about inter-analysis dependencies...
...t 10:57 PM, Chandler Carruth <chandlerc at gmail.com> >> wrote: >> >>> Yea, this is a nasty problem. >>> >>> One important thing to understand is that this is specific to analyses >>> which hold references to other analyses. While this isn't unheard of, it >>> isn't as common as it could be. Still, definitely something we need to >>> address. >>> >> >> We can call this type of dependencies (holding references) >> hard-dependency. The soft dependency refers to the case where analysis 'A'...
2016 Jul 13
3
[PM] I think that the new PM needs to learn about inter-analysis dependencies...
On Tue, Jul 12, 2016 at 10:57 PM, Chandler Carruth <chandlerc at gmail.com> wrote: > Yea, this is a nasty problem. > > One important thing to understand is that this is specific to analyses > which hold references to other analyses. While this isn't unheard of, it > isn't as common as it could be. Still, definitely something we need to > address. > We can call this type of dependencies (holding references) hard-dependency. The soft dependency refers to the case where analysis 'A' depends on 'B' during computation, but doe...
2020 Jul 08
2
How to delete an unwanted NS record
...File "/usr/local/lib/python3.7/site-packages/samba/netcmd/dns.py", line 1071, in run raise e File "/usr/local/lib/python3.7/site-packages/samba/netcmd/dns.py", line 1067, in run del_rec_buf) Unless I am completely missing what you are trying to tell me, which is not unheard of. Sincerely, -- *** e-Mail is NOT a SECURE channel *** Do NOT transmit sensitive data via e-Mail Unencrypted messages have no legal claim to privacy Do NOT open attachments nor follow links sent by e-Mail James B. Byrne mailto:ByrneJB at Harte-Lyne...
2016 Jul 21
2
[RFC] One or many git repositories?
On 21 Jul 2016, at 17:49, Renato Golin <renato.golin at linaro.org> wrote: > > As a back-of-the-envelope, I suggest: llvm, clang, clang-tools-extra, > compiler-rt, libc++, libc++abi, libunwind, test-suite. The minimum that makes sense is llvm, though that defeats the point of a combined repo. I don’t think that libc++ / libc++abi make sense there for several reasons: - You very
2018 Jun 08
2
vanilla build of 7.7p1 release on linux/4.17 fails with gcc8 @ "/usr/bin/ld: unrecognized option '-Wl,-z,retpolineplt'"
On 6/7/18 8:37 PM, Darren Tucker wrote: > On 8 June 2018 at 12:21, Darren Tucker <dtucker at dtucker.net> wrote: >> On 8 June 2018 at 12:09, PGNet Dev <pgnet.dev at gmail.com> wrote: >> [...] >>> /usr/bin/ld -o ssh ssh.o readconf.o clientloop.o sshtty.o sshconnect.o sshconnect2.o mux.o -L. -Lopenbsd-compat/ -Wl,-z,relro -Wl,-z,now -Wl,-z,noexecstack
2009 Oct 22
4
[LLVMdev] request for help writing a register allocator
...the regs used/definied by this instr). 2) How are you making sure that interfering virtregs never receive the same physreg? If you're using the LiveIntervals analysis (and the LiveInterval::overlaps(LiveInterval &) test) you should be ok, since it gets a lot of testing (though bugs are not unheard of). If you've written your own liveness analysis that would be one of the first places I'd check for correctness. > Do you see any obvious errors in the approach outlined above? > No obvious errors. My concern would be the liveness issue mentioned above. In addition, what do you d...
2016 Jul 13
3
[PM] I think that the new PM needs to learn about inter-analysis dependencies...
...t 10:57 PM, Chandler Carruth <chandlerc at gmail.com> >> wrote: >> >>> Yea, this is a nasty problem. >>> >>> One important thing to understand is that this is specific to analyses >>> which hold references to other analyses. While this isn't unheard of, it >>> isn't as common as it could be. Still, definitely something we need to >>> address. >>> >> >> We can call this type of dependencies (holding references) >> hard-dependency. The soft dependency refers to the case where analysis 'A'...
2016 Jul 13
3
[PM] I think that the new PM needs to learn about inter-analysis dependencies...
...il.com >>>> > wrote: >>>> >>>>> Yea, this is a nasty problem. >>>>> >>>>> One important thing to understand is that this is specific to analyses >>>>> which hold references to other analyses. While this isn't unheard of, it >>>>> isn't as common as it could be. Still, definitely something we need to >>>>> address. >>>>> >>>> >>>> We can call this type of dependencies (holding references) >>>> hard-dependency. The soft dependenc...
2006 Aug 13
2
Writing a Helper function
I''ve finally gotten to the point where I want to write my own helper function to call from my views. I used the script/generate to create my Controller so I also got the helper file. I defined the method I wanted to use in the helper rb file, but when I try to call them from the view I get a NoMethodError raised. Is there anything else I have to do besides creating the method in the
2007 Apr 01
0
Re: FLAC: decoding to WAV in the future
...to decode the files. Why not make a backup of flac 1.1.4? Second of all, flac is open-source, so somebody will always be able to compile flac 1.1.4 for any new platform. There are never any guarantees about the future. Some day, MP3 won't decode on a new computer, AIFF and WAV might be unheard of. What makes you think that WAV will outlast FLAC? Some day, there won't be a single CD Player still working. Your best bet is to use open- source software and keep backups. Hopefully, the C programming language won't disappear from the face of computing. Brian Willoughby Soun...
2009 Jan 30
3
New user
Hey everybody! I am a new linux user who's just migrated to linux from windows vista and I also happen to be a desktop user and I've been using linux for hardly a week and so it would be very helpful if you guys could give me a few links and/or a few tips&tricks that would help me to get accustomed to linux and also some things that would help me feel at home in linux ( books would
2006 Jul 21
1
cmusieve plugin
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi guys I have been doing a lot of searching, but maybe I am being dim (not unheard of!). I have dovecot-1.0rc2 built and running on Fedora Core 5. The wiki page (dated yesterday) states that I need the cmusieve plugin to use sieve scripts with the dovecot lda. Is this a new development? They seem to work quite happily on my soon-to-be retired 1.0-beta7 debian box without an ext...
2010 May 10
2
[Bug 1769] New: sftp displays size and transfer speed as "MB"; should use "MiB" for clarity
https://bugzilla.mindrot.org/show_bug.cgi?id=1769 Summary: sftp displays size and transfer speed as "MB"; should use "MiB" for clarity Product: Portable OpenSSH Version: 5.1p1 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: sftp
2003 Apr 22
0
Re: [Asterisk] Kernel panic, ZapRAS & E400p
...rras) have joined forces toward solving this problem and succeeded fixing it. By now, I have seen a E400p filled up with ppp dial-up connections running stable and smoothly. Let me say that I am truly impressed with the kind of commitment Mark has shown in the process resolving this issue. This is unheard of for most vendors I worked with in the past. Thilo -- [netzquadrat] GmbH | Thilo Salmon Ronsdorfer Str. 74 | Fon: +49 211 302033 0 40233 Duesseldorf | Fax: +49 211 302033 22