search for: conceivable

Displaying 20 results from an estimated 694 matches for "conceivable".

Did you mean: conceivably
2017 Nov 22
6
assign NA to rows by test on multiple columns of a data frame
Given this data frame (a simplified, essential reproducible example) A<-c(8,7,10,1,5) A_flag<-c(10,0,1,0,2) B<-c(5,6,2,1,0) B_flag<-c(12,9,0,5,0) mydf<-data.frame(A, A_flag, B, B_flag) # this is my initial df mydf I want to get to this final situation i<-which(mydf$A_flag==0) mydf$A[i]<-NA ii<-which(mydf$B_flag==0) mydf$B[ii]<-NA
2006 May 03
5
SNAT on IPSEC tunnel with kernel 2.6/KAME tools?
Hi, Could not conceive an working set-up for an IPSEC VPN made with racoon/setkey on which I have one address on my side acting as an SNAT router for all traffic from my network to a network segment on the far side. my network --- my gateway ---------------------- remote network 10.0.0.0/24 - 10.0.0.1 (10.253.0.2) -- tunnel - 192.168.0.0/22 All traffic starts on my side, so if I can
2013 Sep 12
5
Setting up postfix under CentOS-6
...tOS-6? I've been amazed how bad the postfix documentation is. It actually seems to be worse that sendmail documentation, which I thought established a record for this sort of thing. The official documentation at <http://www.postfix.org/documentation.html> is ludicrously wordy, with every conceivable option listed in random order. -- Timothy Murphy e-mail: gayleard /at/ eircom.net School of Mathematics, Trinity College, Dublin 2, Ireland
2004 Dec 16
2
MP3 streaming from icecast2 -> WMP
Anyone conceive of any reason why I should have a stream that RealPlayer and iTunes have no problem with, but MP9 refuses to play: just sits there dumbly having loaded the .m3u that points to it, ignoring the play button?
2020 Apr 14
3
Re: [nbdkit PATCH v2 1/3] server: Add nbdkit_stdio_safe
...ough stdin > +(such as a password or inline script). I wonder if we want to say "returns 1" rather than true, to give ourselves wiggle room in future in case we suddenly decided that we needed this to return an error indication? On the other hand, maybe errors can never happen in any conceivable situation. > @@ -455,6 +467,10 @@ nbdkit_read_password (const char *value, char **password) > > if (nbdkit_parse_int ("password file descriptor", &value[1], &fd) == -1) > return -1; > + if (!nbdkit_stdio_safe () && fd < STDERR_FILENO) {...
2002 Aug 10
4
File Not Found Errors
Hello, I seem to be having a strange problem here. First, I will describe my current computer system setup. Second, I will describe the problem. Third, I will pose several suggestions contributing to the problem. Fourth, I will ask you to investigate this for your self in search of quick resolution. Fifth, I will attach relavent configuration files. I have a production web server running
2018 Jun 27
2
new behavior in model.response
I now understand the issue, which leads to a different and deeper issue which is "how to assign a proper length to Surv objects". > Surv(c(1,2,3), c(1,0,1)) [1] 1? 2+ 3 The above prints as 3 elements and is conceptually 3 elements. But if I give it length method to return a 3 then I need a names method, and names<-? pays no attention to my defined length. How do we conceive
2008 Aug 14
2
Printing XP -> 3.2 Now really slow (just like the old days)
...ers\DevModes and DevModes2 of the type \\server\printer. Removal of the entries didn't change a thing. I captured an ethereal/wireshark trace and I have that available to anyone if interested. Have there been any changes in 3.2.x that would effect printing? It does seem to print once every conceivable timer in window times out, but were talking 120-150 seconds. Any Ideas? -- David C. Rankin, J.D., P.E. Rankin Law Firm, PLLC 510 Ochiltree Street Nacogdoches, Texas 75961 Telephone: (936) 715-9333 Facsimile: (936) 715-9339 www.rankinlawfirm.com
2007 Oct 15
3
Is there a sample config out there?
Hi folks, I''m working on building up a puppet infrastructure, and I''m having the darndest time putting it all together. I''ve read through as many of the docs as I can find. I''ve read the best practices guide. And I''m still not grokking how to do what I want to do in puppet. I''ve spend enough time with cfengine that I''m sure
2009 Sep 07
2
Tinn-R setup
I recently installed R 2.9.2 on a new Windows platform. Everything seemed to installed OK. I then downloaded the latest Tinn-R (2.3.2.3 I think) and as I have always done I selected R -> Configure -> Permanent. I was greeted with a dialog box asking me for a mirror site. I don't remember this prompt before but I decided to play along and I select a mrror site. Then the process takes off
2015 Jul 21
2
[LLVMdev] Problem with InsertPointGuard ABI?
I can confirm that the issue has been caused by NDEBUG flag. On Mon, Jul 13, 2015 at 6:29 PM Reid Kleckner <rnk at google.com> wrote: > The layout of AssertingVH has depended on NDEBUG since 2009, which > predates any of our efforts to make LLVM's ABI resilient to mismatched > NDEBUG definitions between LLVM and its users. > > For now, make sure your definition of NDEBUG
2013 Mar 27
2
[LLVMdev] LLVM pass question
I'm implementing this ability to switch between mips16 and mips32 on a per function basis. One issue that I've run into is regarding the DAGToDAGIsel pass. We have a different subclass for mips16 and non mips16 ( conceivably later there could be a separate one for micromips). I need to run a different pass depending on whether it's mips16 or mips32. My initial plan was to create
2006 Mar 01
2
GXP-2000 Volume Issue
...other phones are fine on my TDM400P with txgain set at 0, but the GXP-2000 caps at about a third of the scale in ztmonitor. I'm getting people complaining they can't hear me on my GXP-2000s, whereas my Snom 320 and Polycom 301 are great, and my Budgetones are overmodulating. Is there any conceivable fix on the Asterisk side, or does anyone know of any gain adjustments that can be made to the GXP-2000s on either the older 1.0.1series firmwares or the new 1.0.2 branches? Clint -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/aster...
2009 Feb 02
3
Difference between a[[i]] and a[i]
...he fact that I don't know how to search the newsgroup for this. All the different combinations I tried were declared not to be valid search syntax. 1. What sort of object can the operators [] and [[]] be applied to? How do they differ? I mean objects in standard R, not in packages that provide conceivable overloading of these operators (if that's possible). 2. Meta-question: how could one search for an answer to this question in the newsgroup? 3. Meta-question: how could one search for an answer to this in the FAQ? 4. Meta-question: how could one search for an answer to this in any of the links...
2003 Sep 17
4
ftp.freebsd.org out of date? (WRT security advisories)
It seems (at least for me) the patches on ftp.freebsd.org are out of date for the 03:12 security advisory (openssh). ftp2.freebsd.org has them fine. I'm wondering if this is a mirror issue or perhaps round-robin DNS problem? What compounds the issue is that right now the old openssh 3.7 patches are there (on ftp.freebsd.org), but not the 3.7.1 patches (which can be found on
2006 Feb 17
4
Three-tier
Hi Everyone, I''m working at getting Rails introduced in my company. We''re a J2EE shop. Our deployments make use of thee-tiered architecture, just to be clear, that means that there are essentially three machines involved in dealing out an app: a webserver, an application server, and a database server. As I see it (unless I''ve missed something) Ruby is essentially
2019 Jun 03
2
Converting non-32-bit integers from python to R to use bit64: reticulate
Thank you Martin for giving to know and developing 'Rmpfr' library for unlimited size integers (GNU C GMP) and arbitrary precision floats (GNU C MPFR): https://cran.r-project.org/package=Rmpfr My question is: In the long term (For R3.7.0 or R3.8.0): Does it have sense that CMP substitutes INTSXP, and MPFR substitutes REALSXP code? With this we would achieve that an integer is always an
2015 Apr 02
2
SEmodule dependency hell.
On Wed, April 1, 2015 16:09, Andrew Holway wrote: > I used the command: semanage port -m -t http_port_t -p tcp 8000 > to relabel a port. perhaps you could try: > "semanage port -m -t unconfined_t -p tcp 8000" > Failing that; would it work to run your application in the httpd_t > domain? > I ended up having to create a custom policy to allow the other application to
2006 Nov 09
2
Multiple backgroundrb servers?
What are people are doing when they need to deploy a new code base? You can''t just restart backgroundrb, because then you lose any long-running backgroundrb processes. But then you''d conceivably have to wait several hours for all your procs to complete before pushing out the new code base. I was originally thinking that during code deploys, we''d start up a second
2004 Aug 06
2
php script for listener count and www admin interface password
i have tried every password specified in the conf file (including admin_password) and every conceivable default as the username and/or password for this dialog... no luck. -p On Wednesday, March 12, 2003, at 05:44 AM, Marco Alanen wrote: > On Wed, 12 Mar 2003 04:32:28 -0500 > pharkawik@hampshire.edu wrote: > >> i will try that. about the acl_policy thing: >> >> this con...