search for: incidental

Displaying 20 results from an estimated 2133 matches for "incidental".

2004 Sep 23
1
browser() is called incidentally (?) somewhere from inside methods::as
Hi, Executing the following code causes the prompt to enter browser() mode. >dd<-as(Npatrick1,"list") Called from: as(Npatrick1, "list") Browse[1]> R : Copyright 2004, The R Foundation for Statistical Computing Version 2.0.0 beta (2004-09-20), ISBN 3-900051-07-0 Some addtitional info about Npatrick1 > is(Npatrick1) [1] "Massvectorlist"
2009 Nov 22
3
Sendmail "Queued mail for delivery"
...eing "Queued mail for delivery". 1. What is likely to cause this message? I know I registered with my remote mail server with a different name to my name on the computer. Is that likely to be the cause of my problem? And if so, what is the solution? Or is there any other likely cause? Incidentally, I can telnet the mail server: --------------------------------------- m at althea ~]$ telnet out.alice.it 25 Trying 85.33.2.55... Connected to out.alice.it (85.33.2.55). Escape character is '^]'. 220 FBCMCL01B06.fbc.local Microsoft ESMTP MAIL Service, Version: 6.0.3790.3959 ready at Su...
2016 Feb 10
3
Testing Best Practices/Goals (in the context of compiler-rt)
...t execute LLVM optimizations, etc. There are exceptions/middle ground to this - DIBuilder is in LLVM, but essentially tested in Clang rather than writing LLVM unit tests. It's somewhat unavoidable that any of the IR building code (IRBuilder, DIBuilder, IR asm printing, etc) is 'tested' incidentally in Clang in process of testing Clang's IR generation. But these are seen as incidental, not intentionally trying to cover LLVM with Clang tests (we don't add a Clang test if we add a new feature to IRBuilder just to test the IRBuilder). Another case with some middle ground are things lik...
2003 Dec 18
1
SIP Inuse Count Wrong
...ts that I have 3 incoming connections to one of the Grandstream phones, even though that isn't the case. I believe I have tracked the problem down to the following error message, which also (conveniently) showed up 3 times: -- Got SIP response 481 "" back from 192.168.252.101 Incidentally I am using the code from 10 days ago because as explained earlier today the CAPI support with the current Asterisk is unable to do a native bridge between two CAPI calls (instead it just drops both calls). Incidentally am I sending this report to the right mailing list, or is there a better...
2019 Sep 19
3
Improving partial lookup results
Incidentally, if you're actually aiming to match different forms of a name (Peter vs Pete, Ann vs Anne vs Annette) then you might find the synonym feature a better option than wildcarding. You'd need to give it a list of names to treat as synonyms, but it should have many fewer false positives, and c...
2009 Nov 28
1
Does --archive include an --update behaviour?
...is issue... So I am getting insecure. How does --archive behave when a newer file is at the destination? I am thinking about this, because I am thinking about the restore process. If I keep a certain filtered subset of my original as a backup, and then my original partially brakes (example: incidental file deletion) I would use: rsync -au backup/ original/ In order to put everything back, except where content at the original is newer, or identical (=did not get missing through the incidental file deletion in our example). What I want to avoid is that a newer file is at the destination,...
2006 Apr 25
2
Bug in Rails 1.1 implementation of before_filters
...che and use read_inheritable_attribute("before_filters") instead of before_filters. Similarly, use read_inheritable_attribute("included_actions") instead of included_actions. This is bad because now my code is tied to an implementation detail which would normally be hidden. Incidentally, the same bug also occurs in after_filters and excluded_actions. Cheers, Graham -- Posted via http://www.ruby-forum.com/.
2007 Sep 25
5
extracting data using strings as delimiters
...73 Gross Building Area: 578 sq ft Total Rooms: 6 Living Area: 578 sq ft There is a lot of data I'd like to ignore in each record, so I'm hoping there is a way to use strings as delimiters to get the data I want (e.g. tell R to take data between "Built:" and "Gross" - incidentally, not always numeric). I think an ugly way would be to start at the end of each record and use a substitution expression to chip away at it, but I'm afraid it will take forever to run. Is there a way to use strings as delimiters in an expression? Thanks in advance for ideas. LB
2011 Jul 26
3
[LLVMdev] [PATCH][RFC] upgrade to googletest 1.6.0 (was Re: Build of latest llvm gives warning and error)
...from google's unittest > library.  I think it is best to fix them upstream at google. We're using googletest 1.5.0. These warnings seem to be fixed in 1.6.0, so here's a patch to upgrade us. Disclaimer: I've only tested this by doing "make check-all" on Linux/x86_64. Incidentally, the upgrade would have been much easier if we weren't carrying local changes to support Haiku OS and Minix. Can these be pushed upstream (or thrown away if no-one is using them)? Jay. -------------- next part -------------- A non-text attachment was scrubbed... Name: googletest-1.6.0.diff.g...
2015 Oct 29
4
RFC: Improving license & patent issues in the LLVM community
...atabase rights' https://en.wikipedia.org/wiki/Sui_generis_database_right). Referring to Clang source to ascertain certain facts wouldn't necessarily put any requirement on the licensing of the code you later produce. However for safety many might prefer not to look at the source so that any incidental similarities can't be accused of being due to copying code directly. If you're worried about this, asking a community member to use the Clang source to write a short document on the details you require might be a way forward. Alex
2007 Dec 10
4
[LLVMdev] ocaml binding question
...the latter, you would be very much in my debt...) > > > > Or the other way around, or something. :) > > :) I'm adding it now. I'd really appreciate JIT support from OCaml while you're there and if you'd like to send me some money as well that'd be great. ;-) Incidentally, should more OCaml stuff beyond the bindings be part of LLVM or would it be better to fork them into a separate project and alleviate some stress from Chris et al? Might be easier if a community want to tinker with ideas, e.g. for a higher-level interface. -- Dr Jon D Harrop, Flying Frog Con...
2004 Aug 21
4
loadhistory() in .Rprofile ?
dear wizards: my .Rprofile has just one command for testing, loadhistory("~/.Rhistory") but this gives me an error on R startup: Error: couldn't find function "loadhistory" Invoking loadhistory() as the first interactive command works fine; incidentally, I believe loadhistory() in the .Rprofile worked in earlier or other platform R releases, too. Is the .Rprofile now loaded before loadhistory()? if so, this seems to make it impossible to set up one big history file across directories (save history prior to exit, then reload automatically on...
2014 Jul 15
3
[LLVMdev] [cfe-dev] Bug in MapVector::erase ?
> On 2014-Jul-15, at 11:07, Reid Kleckner <rnk at google.com> wrote: > > Can we explicitly delete the erase method or do something else to document the fact that it is unsupported? It was added incidentally in r211350, even though it was added and removed by Doug back in r175538 / r175449. > I'm happy with it deleted or fixed (see WIP patch that fixes it w/o tests). For now, I'll fix it, and then David (or someone else) can migrate the code to `remove_if()`. FWIW, when it's fixed,...
2020 Aug 20
0
[PATCH nbdkit 01/13] common/replacements: Replace missing functions using LIBOBJS.
...T AND CONTRIBUTORS ''AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR +# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +# OR TORT (INCLUDING...
2005 Nov 25
2
Wx::SystemSettings mark II
...ample that doesn''t segfault wxruby. CVS patches: RubyConstants.i, type_map.i CVS new: system_settings.rb (sample) SystemSettings.i (SWIG file) The sample should allow you to view the available information about system colours, fonts and metrics (eg cursor size, display size) in a Grid. Incidentally, there seems to be a bug in Wx::Grid - when I double-click on a grid cell, I get samples/system_settings/system_settings.rb:245:in `get_text_extent'': No matching function for overloaded ''wxWindow_GetTextExtent'' (ArgumentError) from samples/system_settings/system_...
2007 Dec 10
1
[LLVMdev] ocaml binding question
...I'd really appreciate JIT support from OCaml while you're there and >> if you'd like to send me some money as well that'd be great. ;-) >> > > :) Well, this commit should be a good template for adding bindings for > new libraries. > > >> Incidentally, should more OCaml stuff beyond the bindings be part of >> LLVM or would it be better to fork them into a separate project >> > > Can you be more specific than "stuff"? > > >> and alleviate some stress from Chris et al? Might be easier if a >...
2010 Jan 08
4
fast lm se?
...rom an lm() object. alas, I also need the standard errors and I need them fast. I know I can do a "summary()" on the object and pick them off this way, but this computes other stuff I do not need. Or, I can compute (X' X)^(-1) s^2 myself. Has someone written a fast se() function? incidentally, I think this would make a nice addition to the R base. I presume it is not uncommon for a statistician also to want to use the se of coef estimates. pointers appreciated. regards, /iaw ---- Ivo Welch (ivo.welch@brown.edu, ivo.welch@gmail.com) [[alternative HTML version deleted]]
2015 Dec 18
5
playing DVDs on C7
Hi all! I'm trying to finish setting up my newly upgraded C7 system. It's on the same hardware I ran C6 on for several years. on C6 I had no trouble playing DVDs (after installing tons of packages and libdvdcss). Well, on C7, I've got totem (videos) and all its plugins I can find via yum, VLC (from nux) all the gstreamer and gstreamer1 packages I can find, everything with
2020 Aug 18
0
[PATCH nbdkit 3/9] server: Add general replacements for missing functions using LIBOBJS.
...T AND CONTRIBUTORS ''AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR +# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +# OR TORT (INCLUDING...
2006 Aug 19
3
memcache-client working for anyone?
...ssion => true,:debug => false,:namespace => ''foo'',:readonly => false,:urlencode => false CACHE.servers = ''localhost:11211'' config.action_controller.session_store = :mem_cache_store config.action_controller.fragment_cache_store = CACHE, {} Incidentally, the session store works with memcache-client, but the fragment cache craps out. I''ve tried every method on every blog entry out there that I could find, but they are inconsistent with the rails source code, or I am missing something. Thanks! -- Posted via http://www.ruby-forum.com/...