search for: _know_

Displaying 20 results from an estimated 65 matches for "_know_".

2018 Jul 06
2
Segfault on ubuntu 18.04
...(I use the Ubuntu package, i.e. I did not | build > > from source.) > > > > I have been a little too busy and have not yet upgraded to 18.04 so I > > can't attempt to replicate -- but it _looks_ just like a garden > > variety binary mismatch. > > > > We _know_ R 3.5.* requires _all_ binary packages to be reinstalled > > and it is easy to miss one. So unless G?ran shows us a generally > > reproducible bug I will suspect that this is simply a local > > deployment issue. > > I suspect that too, since the segfault does _not_ occur if...
2008 Sep 05
2
Bridge 2 incoming calls
I think I've forgotten something obvious.... I've got 2 incoming calls, I want to bridge them - how can I do this ? (assume I somehow know which calls should be paired up...) I could dump them both in a meetme - but that seems wasteful as i _know_ there will only ever be 2 parties. (And I need DTMF to flow through). I may want to record the bridged call, but that isn't vital. I'm thinking of dialing chan_local with a call-id but I'm sure I am missing something simpler. Tim.
2018 Jul 06
3
Segfault on ubuntu 18.04
...cannot reproduce the segfault, with | R 3.5.1 on (L)Ubuntu 18.04. (I use the Ubuntu package, i.e. I did not | build from source.) I have been a little too busy and have not yet upgraded to 18.04 so I can't attempt to replicate -- but it _looks_ just like a garden variety binary mismatch. We _know_ R 3.5.* requires _all_ binary packages to be reinstalled and it is easy to miss one. So unless G?ran shows us a generally reproducible bug I will suspect that this is simply a local deployment issue. Dirk -- http://dirk.eddelbuettel.com | @eddelbuettel | edd at debian.org
2009 May 19
4
omindex options
...possible to the omindex native code, but am facing a bit of confusion: what exactly is the reason for omindex to take in a base directory AND a subdirectory. In other words, what scenario is possible that cannot be covered by just passing in a directory and a corresponding mapping to the url. * I _know_ there was something I read somewhere about this - but could not find it when I needed it (now). If someone has a link, that would help as well. ** I am wondering if the tool would be interesting/usable to anyone else - please let me know if so. Right now I am only trying for html support, but once...
2006 Apr 30
4
Server IP
Can a ruby on rails app obtain the ip of the server it is running on? I''d like the application to be able to determine x set of data is for y data, for example: These domains all point to the same ip... mydomain-1.com mydomain-2.com mydomain-3.org I can obtain the domain name from the request by using: @request.domain I''d like the application to grab the corresponding ip for
2006 Feb 13
9
Please e-mail (not only post) the Forum Instructions URL
Am I just blind, or are there no links to the instructions, e.g. the Search syntax or how to get back to a thread I started on RoR? Or do those links, buttons, whatever only show / work in IE? Thanks for any help; sorry if I can''t figure out something I should be able to. jandjharris (at) gmail.com -- Posted via http://www.ruby-forum.com/.
2016 May 09
2
x.with.overflow semantics question
...) { entry: %uadd.overflow = call { i64, i1 } @llvm.uadd.with.overflow.i64(i64 %b, i64 %a) %uadd = extractvalue { i64, i1 } %uadd.overflow, 0 %overflow = extractvalue { i64, i1 } %uadd.overflow, 1 store i1 %overflow, i1* %res_i1 store i64 %uadd, i64* %res_i64 ret void } Now if we _know_ that the arithmetic result is used only if it does not overflow, then we can "pretend" that the arithmetic was nsw/nuw. This is what I tried to do in http://reviews.llvm.org/rL265912, but I had to back out the change due to an unrelated issue with SCEV. -- Sanjoy Nuno Lopes via llvm-...
2018 Jul 06
0
Segfault on ubuntu 18.04
...kage, i.e. I did not | >>> build from source.) >>> >>> I have been a little too busy and have not yet upgraded to 18.04 >>> so I can't attempt to replicate -- but it _looks_ just like a >>> garden variety binary mismatch. >>> >>> We _know_ R 3.5.* requires _all_ binary packages to be >>> reinstalled and it is easy to miss one. So unless G?ran shows us >>> a generally reproducible bug I will suspect that this is simply a >>> local deployment issue. >> >> I suspect that too, since the segfault do...
2006 Jul 29
2
Searches limited to 10 results?
...ello all, I''ve just recently gotten my ActiveRecord models indexed properly in my Rails App. Woohoo! So I''ve started testing some searches. Is there some limit to acts_as_ferret that only allows it to return 10 results? I''m searching for common terms in my data that I _know_ return many results, but I only ever get at most 10 results. This is in a db with 350k rows: >> Comment.find_by_contents("ian").size => 10 The following SQL returns 1359 rows: SELECT count(*) FROM comments where comment like ''% ian %''; My comment model has...
2003 Oct 26
1
getsockopt TCP_NODELAY: Socket operation on non-socket
We get the warning above whenever we use a ProxyCommand. We _know_ it's a pipe, so we can't use sockopts on it. So we shouldn't bitch about it. This breaks all kinds of things which use SSH transparently; including pine, which really wants the first thing it receives from an IMAP server to be a valid imap greeting... which $subject is not. $ ssh -o...
2012 Sep 23
1
Tiff image handling like MODI
...ages in to another file. GUI is a necessity. I am aware of tifflib, imagemagick, but but not sure about a decent GUI wrappers for them. The file numbers are huge. I have tried many things for almost a fortnight or so to even remember all those names. None of them "cuts it" per se. I _know_ this query is not Centos Specific, but I also know that I can get a viable answer here along with a rap in the knuckle. Any pointers? TIA -- Regards, Rajagopal
2004 Jan 07
0
[LLVMdev] 9 Ideas To Better Support Source Language Developers
...at") other host then `f', then one is prohibited to do almost any optimizations between `f' and `g'. Am I right up to here? if `yes' then: One is hardly able to make support for distributed calculations on top of LLVM. Because, in order to make legal optimizations LLVM should _know_ where the code is really executed. Right?.. (Should I reformulate the tings above?) -- Best regards, Valery A.Khamenya mailto:khamenya at mail.ru Local Time: 20:51
2004 Jun 23
4
[LLVMdev] weird issue with mem2reg, should have guessed
...asting. I just caught this on cerr though (printing out what the > Value* was each time). Yeah, you shouldn't do that. :) Also, you should use the 'cast' template instead of the dyn_cast template unless you are prepared to handle the null return value. Use 'cast' when you _know_ that something is a particular type. This will give you a nice assertion failure instead of a segfault when you deref the null pointer :) > Let me check bugpoint. Cool, post the testcase it produces. Hopefully it will be small :) -Chris > ----- Original Message ----- > From: "Mi...
2004 Jan 07
2
[LLVMdev] 9 Ideas To Better Support Source Language Developers
On Wed, 7 Jan 2004, Valery A.Khamenya wrote: > Hello Reid and LLVMers, > 10. Basic support for distributed computations. What kind of support? What do you think should be included in LLVM directly, as opposed to being built on top of it? -Chris -- http://llvm.cs.uiuc.edu/ http://www.nondot.org/~sabre/Projects/
2002 Jan 14
2
That pesky udial.wav again...
...sent all the way out to 10.0. Lame handles this a lot more gracefully - the sine sweep is cut of until about V2 or 3 (but the hiss is still present), and it sounded pretty close to the original at V0 (though I could still got 12/16 in an ABX test, the difference was barely perceptable). Now I _know_ that high frequency sine wave sweeps are a completely contrived sample to test an audio codec with, but I'd hate to think that some idiot kid on slashdot will end up badmouthing vorbis because it goes to pieces on a sample like this. It would be a lot nicer if it failed to include the sweep...
2007 Feb 07
1
Centos VPS providers in the European Union?
...ely enough") with a fully customized postfix/procmail/dovecot setup. I'd prefer to use Centos, which I already use and know. One reason why I'm asking this here is that I'd really like to be sure, before I go for it, that the provider not only _offers_ Centos VPS but also actually _know_ Centos, so they can help if some problems with their setup comes up. Now, for several reasons I am only interested in companies which are 100% based in the European Union (both the legal entity and the datacenter) _and_ speak English with their customers, thanks. Another requirement is that it ha...
2007 Mar 27
2
problem with installation of packages
I am having a peculiar problem with installation of packages. I am trying to install the package "maptools". This is what I get. install.packages("maptools",depend=T) Warning in install.packages("maptools", depend = T) : argument 'lib' is missing: using /usr/local/lib/R/site-library Warning: unable to access index for repository
2018 Jul 06
2
Segfault on ubuntu 18.04
...gt;>> build from source.) >>>> >>>> I have been a little too busy and have not yet upgraded to 18.04 >>>> so I can't attempt to replicate -- but it _looks_ just like a >>>> garden variety binary mismatch. >>>> >>>> We _know_ R 3.5.* requires _all_ binary packages to be >>>> reinstalled and it is easy to miss one. So unless G?ran shows us >>>> a generally reproducible bug I will suspect that this is simply a >>>> local deployment issue. >>> >>> I suspect that too, s...
2004 Jun 23
0
[LLVMdev] weird issue with mem2reg, still
...his on cerr though (printing out what the > > Value* was each time). > > Yeah, you shouldn't do that. :) Also, you should use the 'cast' template > instead of the dyn_cast template unless you are prepared to handle the > null return value. Use 'cast' when you _know_ that something is a > particular type. This will give you a nice assertion failure instead of a > segfault when you deref the null pointer :) > > > Let me check bugpoint. > > Cool, post the testcase it produces. Hopefully it will be small :) > > -Chris > > > --...
2004 Jun 23
2
[LLVMdev] weird issue with mem2reg, still
...ing out what the > > > Value* was each time). > > > > Yeah, you shouldn't do that. :) Also, you should use the 'cast' template > > instead of the dyn_cast template unless you are prepared to handle the > > null return value. Use 'cast' when you _know_ that something is a > > particular type. This will give you a nice assertion failure instead of a > > segfault when you deref the null pointer :) > > > > > Let me check bugpoint. > > > > Cool, post the testcase it produces. Hopefully it will be small :) >...