search for: iffy

Displaying 20 results from an estimated 114 matches for "iffy".

Did you mean: jiffy
2007 Apr 30
2
Improving Asterisk's DNS support
Hello everyone, After several years of using Asterisk I have always been frustrated by the support for DNS. I have seen all kinds of strange behavior when Asterisk is used on a system with "iffy" DNS servers: - no failover to other DNS servers in /etc/resolv.conf (might be a C library thing) - chan_sip will sometimes mark even local SIP peers as unreachable during/after any DNS problems - why? - dnsmgr doesn't support SIP (yikes!): http://bugs.digium.com/view.php?id=9153 - other...
2011 Nov 16
3
create list of names where two df contain == values
...ted this problem. I am trying to now put the names found in one column in data frame 1 (lets call it df.1[,1]) in to a list from the rows where the values in df.1[,2] match values in a column of another dataframe (df.2[3]) I tried to write this function so that it put the list of names (called Iffy) where the 2 criteria (df.1[141] and df.2[21]) matched but I think its too complex for a beginner R-enthusiast ify<-function(x,y,a,b,c) if(x[[,a]]==y[[,b]]) {list(x[[,c]])} else {NULL} Iffy<-apply( df.1, 1, FUN=ify, x=df.1, y=df.2, a=2, b=3, c=1 ) But this didn't work... Error...
2014 Jun 17
4
[LLVMdev] Attaching range metadata to IntrinsicInst
...sses if possible. Metadata will always be secondary. >> > > So you're saying that in this particular case you'd prefer LLVM passes to > know about the range of these PTX intrinsics, rather than Clang adding them > as metadata? > Yep. ValueTracking.cpp already has some iffy target knowledge (someone sneaked a > direct Intrinsic::x86_sse42_crc32_64_64 check in there), but extending it > to other intrinsics in other targets seems like too much... > That's not iffy. That's exactly how it should work, and we should have more of that. There is a major go...
2015 Jun 29
5
resolve errors with Samba 4 dns
...d. since installing Samba 4 and using its DNS server. I've tried forwarding to both my router, which has dns, and directly to Google's 8.8.8.8 DNS servers but the problems persist. On workstations, e-mail sometimes gets through and sometimes fails. Other Internet services are similarly iffy. Any suggestions?
2010 Oct 01
2
strange interaction between rasterImage and Grid graphics
...covers the full device window as expected. However, when I resize the window ever so slightly (interactive device) the rectGrob is suddenly clipped to the previous plot window. I cannot understand this behavior, and it doesn't happen if one removes the rasterImage() call, so I suspect something iffy is going on with the display list or something. The only device I've tried is quartz(), x11() crashed with rasterImage, *** caught segfault *** address 0x28, cause 'memory not mapped' Traceback: 1: rasterImage(matrix(1), 1, 1, 1, 1) sessionInfo() R version 2.11.1 (2010-05-31) x86_...
2014 Jun 17
2
[LLVMdev] Attaching range metadata to IntrinsicInst
...>>> So you're saying that in this particular case you'd prefer LLVM passes to >>> know about the range of these PTX intrinsics, rather than Clang adding them >>> as metadata? >> >> >> Yep. >> >>> ValueTracking.cpp already has some iffy target knowledge (someone sneaked >>> a direct Intrinsic::x86_sse42_crc32_64_64 check in there), but extending it >>> to other intrinsics in other targets seems like too much... >> >> >> That's not iffy. That's exactly how it should work, and we should h...
2019 Jun 25
2
Optimised stack direction?
Why does LLVM struggle to optimize the following stack direction check? #include <stdint.h> inline int stack_direction() { int x = 0; int y = 0; return uintptr_t(&x) < uintptr_t(&y); } int main(int argc, const char * argv[]) { return stack_direction(); } It generates the following assembly: main: # @main lea rcx, [rsp - 8] lea rdx, [rsp - 4] xor eax, eax
2018 May 11
2
SIP Codec negotiation
...e, even though the INVITE/SDP says they prefer gsm >> over ulaw and the OK/SDP says I prefer ulaw over gsm, they can choose >> to use gsm or ulaw? > > Yes. > >> Can it be asymmetrical? They send gsm and I send ulaw? > > Technically, yes. In practice it's a bit iffy - specifically because > some DSPs in devices won't allow it - they require a single codec be in > use for each direction. So, Asterisk will defer it's choice of codec to match the codec it detects in the incoming stream? -- Thanks in advance, -----------------------------------...
2019 Oct 09
2
Livepatch: Linux kernel updates without rebooting
Hi, I am running CentOS Linux release 7.7.1908 (Core). Does CentOS Linux kernel 3.10.0-1062.1.1.el7.x86_64 support kernel updates without rebooting (Live Patching)? I look forward to hearing from you and thanks in advance. Best Regards, Kaushal
2016 Dec 30
2
expunging all mailboxes
> > But is there a way tell it all mailboxes for a user? For example, > something > > like: > > > > doveadm expunge -u user at domain mailbox ALL savedbefore 30d > > try: > doveadm expunge -u user at domain ALL savedbefore 30d > > just like the example thats here: > http://wiki2.dovecot.org/Tools/Doveadm/SearchQuery I already tried that. Did you?
2008 Feb 21
1
cid_rewrite.php -- Caller ID Name lookup
For those folks who are still using it -- I updated the cid_rewrite script. I noticed that two of the providers were "iffy" and one had changed format a little while ago. It's working again. http://muware.com/asterisk has the latest (1.2.0) Enjoy, -- JM
2010 Jan 05
2
bind & kickstart
Anyone know what's up w/ trying to install bind through kickstart? I am trying all variations of group installs, individual package installs and it just won't install, it either fails on the libs, the chroot pkg or whatever?
2012 Mar 27
1
My experience with wine
...;s missing D3D functions in wine in Direct9 mode Sonic Generations- I'd like to have sound, I think it's a pulseaudio bug .net 3.5 is hard to install correctly, usually crashes even with winetricks This thread is just a simple feedback to the community. I hope it helps some people who are iffy on buying games not knowing whether or not it'll work. I found this a lot easier and quicker than creating a appDb thread for each game, that takes forever.. :/ Most of these games were done using wine 1.4 stable (Crysis is broken on 1.4 stable, it works on 1.3.28)
2014 Jun 17
3
[LLVMdev] Attaching range metadata to IntrinsicInst
...gt;> to >> >>> know about the range of these PTX intrinsics, rather than Clang adding >> >>> them >> >>> as metadata? >> >> >> >> >> >> Yep. >> >> >> >>> ValueTracking.cpp already has some iffy target knowledge (someone >> >>> sneaked >> >>> a direct Intrinsic::x86_sse42_crc32_64_64 check in there), but >> >>> extending it >> >>> to other intrinsics in other targets seems like too much... >> >> >> >> >...
2006 Aug 03
5
tc filter
Hi, Is it possible to make a filter with tc which exclude an IP like iptables ?? ex: iptable -t mangle -A PREROUTING -i eth0 -d ! 192.168.1.222 -j MARK ... I try the ! with tc but it doesn''t work. Thanks, doude. _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
2018 Dec 30
2
rsync remote raw block device with --inplace
It would be very nice to be able to rsync the raw data content of, e.g., a non-mounted disk partition, particularly in combination with --inplace. Our reality: several dual-boot machines running Windows during the day and Linux at night, during backups. Windows is very tedious and iffy to re-reinstall without a raw disk image to start from. Disks fail, and the ensuing downtime must be minimized. We're using dd for this. Most of the nightly work is redundant and wasteful of elapsed time and storage. Storage is cheap, but it's not *that* cheap. Elapsed time is priceles...
2004 Aug 06
1
bitrate for slow modems
...that the quality of the sound will also depend on the sampling rate. MP3 will handle some higher sampling rates higher than some of the lame defaults. For example, 16kbps 11khz mono sounds very reasonable. At 24kbps, either 22khz mono or 11khz stereo sound pretty good, though the latter is a bit iffy under lame. At least with 24kbps however, these aren't the lame defaults. Mono will give you 16khz and stereo gives you a lowly 8khz (yuck!). You can get lame to do higher sampling rates by using the resample argument rather than letting it decide where to resample to. You can also improve...
2003 Aug 25
3
Grandstream firmware update DMTF Payload Type
Since firmware 1.0.3.81, unless I'm imagining things, Voicemail2 seems to be having problems. The Grandstream and sip.conf were set to RFC2833 now with that setting I get extra digits during "Mailbox" and "Password" phases. 222001 instead of 2201 for example. When both are changed to "SIP info" there is no problem. But what is the new setting "DTMF Payload
2012 Aug 13
9
[PATCH RFC] xen/netback: Count ring slots properly when larger MTU sizes are used
Hi, I ran into an issue where netback driver is crashing with BUG_ON(npo.meta_prod > ARRAY_SIZE(netbk->meta)). It is happening in Intel 10Gbps network when larger mtu values are used. The problem seems to be the way the slots are counted. After applying this patch things ran fine in my environment. I request to validate my changes. Thanks Siva
2018 Feb 16
3
Install CentOS 7 on MBR hard disk
Stephen J Smoogen wrote: > OK wild guess on install options as sometimes they will do this but > not say they did it. Try adding inst.gpt=false to the boot line. Sorry, that didn't work. Nor did installing CentOS 7 without a boot loader, chroot-ing into it, and trying to install grub2 manually: grub2-install /dev/sda --target=i386-pc grub2-mkconfig -o /boot/grub2/grub.cfg >