search for: obviously

Displaying 20 results from an estimated 30481 matches for "obviously".

2006 Oct 12
9
[PATCH] an obvious fix to PIC IO intercept
an obvious fix to PIC IO intercept. In PIC IO, address from send_pio_req is physical address already. Signed-off-by: Xiaohui Xin <xiaohui.xin@intel.com> Signed-off-by: Xiaowei Yang <xiaowei.yang@intel.com> Signed-off-by: Xin Li <xin.b.li@intel.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com
2006 Jun 29
13
Ideal Ruby on Rails Development Environment on Linux
Hello, I''m not a developer myself, but I work for a hosting company that tries to cater to the needs of developers and basically right now I am trying to create a hosting platform that will be perfect for ruby developers. This is a linux VPS service and I create the base templates to make the system look however i want it after install. I was hoping some of you could give me
2018 Dec 31
4
RFC: Modernizing our use of auto
On Dec 16, 2018, at 11:44 AM, Stephen Kelly via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > On 25/11/2018 14:43, Stephen Kelly via llvm-dev wrote: >> However this is a proposal for more modern thinking regarding the permissiveness of auto in LLVM codebases. >> Currently the rule on the use of auto is here: > > Hi, > > Thanks for the input on this topic,
2002 Jan 31
1
obvious answer
...rial and have stumbled at the first page. I have sussed out that I need to use the source command rather than the read.table command as illustrated in the tutorial, but the data isn't reading in properly with additional names at the beginning and end of the data. $value and $visible. I am obviously missing something here and would appreciate some help on what I'm doing wrong. Many thanks, Graham S > austpop<- source ("austpop.r") > austpop $value Year NSW Vic. Qld SA WA Tas. NT ACT Aust. 1 1917 1904 1409 683 440 306 193 5 3 4941 2 1927 2402 1727...
2002 Mar 26
3
ks.test - continuous vs discrete
I frequently want to test for differences between animal size frequency distributions. The obvious test (I think) to use is the Kolmogorov-Smirnov two sample test (provided in R as the function ks.test in package ctest). The KS test is for continuous variables and this obviously includes length, weight etc. However, limitations in measuring (e.g length to the nearest cm/mm, weight to the nearest g/mg etc) has the obvious effect of "discretising" real data. The ks.test function checks for the presence of ties noting in the help page that "continuous distrib...
2008 Apr 20
3
[LLVMdev] Reference Manual Clarifications 2
...pose you're writing > heap management code. Perhaps, but very unlikely. An allocation of 2 gigabytes or more is probably a bug. >> I'm not necessarily saying that NumElements should be >> signed, only that the choice between signed and unsigned is not obvious. > > Obviously, obviousness is in the eye of the beholder :-) > (SCNR) Yes. But consider that there are many people who agree with me. Search for "unsigned vs signed - Is Bjarne Mistaken?" in comp.lang.c++.moderated. Best Regards, Jon
2010 Apr 25
1
Obvious reason for not looping twice?
Is there an obvious reason why this won't loop to i=2 and beyond? There are many combinations of *st* & *vc* that don't exist in svc. For example, when s=1 there's only an entry at v=1. That's fine, the entry can stay 0. lookup.svc <- array(0,dim=c(length(unique(svc$st)),length(unique(svc$vc))), dimnames=list(unique(svc$st), unique(svc$vc))) for (i in
2018 Dec 04
4
[cfe-dev] RFC: Modernizing our use of auto
On Wed, Nov 28, 2018 at 6:25 PM Chris Lattner via cfe-dev < cfe-dev at lists.llvm.org> wrote: > Generally no IMO, because the cases that produce optional are not obvious. > Just to say, +1 from me too. > > > * Can we use auto in c++14 lambda arguments with llvm::find_if(C, > [](const auto& i) { ... }) for example? > > * We need to use auto for structured
2006 Apr 30
4
Subversion and Capistrano
I have a project under Subversion, deployed by Capistrano. When it is deployed, obviously I need to deploy "real" copies of database.yml, deploy.rb, and maybe a couple of other files. But if I offer it for public checkout, I obviously do not want these files as part of the checked out code. What''s the best way to handle this? --Al Evans -- Posted via http://www...
2001 Nov 08
2
Error Bars
...e error bars on a bar chart. I'm using code like this: thing <- c(3,3,3) se <- c(1,1,1) names(thing) <- c("A", "B", "C") barplot(thing, ylim=c(0,4)) arrows(c(1:3), thing-se, c(1:3), thing+se, code=3, angle=90,length=0.1) Using c(1:3) has 2 problems: 1. Obviously it is untidy, but using names(thing) doesn't work, and I can't find out what will work. 2. It draws the lines in the wrong place (i.e. not in the middle of the bars) I'm sure this problem has a well know and obvious solution, but it's not so well known or obvious to me. Thanks in...
2008 Apr 19
3
[LLVMdev] Reference Manual Clarifications 2
Chris Lattner wrote: > On Apr 19, 2008, at 3:27 PM, Jon Sargeant wrote: >>>> Regarding malloc and alloca, I realized that the size is unsigned, >>>> so a >>>> negative value for NumElements is impossible. I suggest replacing >>>> "it >>>> is the number of elements allocated" with "it is the UNSIGNED number
2018 Nov 25
6
RFC: Modernizing our use of auto
I'm not advocating AAA. However this is a proposal for more modern thinking regarding the permissiveness of auto in LLVM codebases. Currently the rule on the use of auto is here: https://llvm.org/docs/CodingStandards.html#use-auto-type-deduction-to-make-code-more-readable It is quite strict. It allows the use of auto for * lambdas * iterators because they are long to type * casts to
2004 Sep 29
3
R: string connections
hi all i have a simple question: lets assume that i can enter a variable (a) equal to some value, say 100. obviously a could be any value. i would like to create a plot with a main heading as hi all "some writing" + a how would own create a string by combining a string with a numeric variable? hope the question is not too confusing. e.g. say a=5 then i want something like plot(x, main="some...
2008 Oct 02
1
[LLVMdev] MS C++ gives error C2371 on this code while (obviously)gcc compiles it fine
...------------------------------------------------- From: "Argiris Kirtzidis" <akyrtzi at gmail.com> Sent: Thursday, October 02, 2008 12:32 PM To: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu> Subject: Re: [LLVMdev] MS C++ gives error C2371 on this code while(obviously)gcccompiles it fine ... > See 6.4p2: "The rules for conditions apply both to selection-statements > and to the for and while statements" ... > -Argiris
2009 Dec 15
2
silly SVN question
I followed the suggestions at http://developer.r-project.org/SVNtips.html to check out an anonymous copy of the development branch of R, but so far I have been unable to figure out an analogous way to track the development branch of the recommended packages. (I'm assuming they actually live somewhere on the same SVN server, which might not be true ...) Any ideas (including pointing out the
2015 Dec 03
2
Linux & NFSv4 ACLs
I have a situation where I need to share, via Samba, a filesystem mounted via NFSv4. I'm struggling with the best way to make Samba see the NFSv4 ACLs and enumerate them to provide the proper SMB/CIFS access to the files, instead of "Access Denied" errors that I currently get. Looking at the Samba source, the only obvious NFSv4 stuff appears to be the following: - zfsacl, available
2007 Sep 21
3
really dumb question | loop counters in
...ts - like MATLAB), when I realized that handling counters in loop constructs in [R] is not patently obvious (at least, IMO, compared to other languages). Suppose I want to iterate something from 1 to 100, using a step size of (say) 5. Trying the obvious for(x in 1:5:100) { print(x) } (Perhaps obviously, I've borrowed the MATLAB convention to some degree). Or, looping from 0 -> 1 by 0.01? I've dug through what [R] documentation I have, and all I can find is the somewhat obtuse. For example, I can use x <- seq(0,1, by=.01) But not for(x in (0,1,by=0.01)) { print(x) } What abou...
2009 Nov 13
6
replace a whole word with sub()
...o have "xxx", "yyy", "zzz", "0", "0", "kkk", "0", "aaa". I can easily identify these strings with grep("^Ig", X), but if I use this criterion in the sub() function (sub("^Ig", "0", X) I obviously get "0A", "0G" etc. I didn't expect to do it in this way and I tried with metacharacters and regexps in order to grep and substitute the whole word (\b \>, $). I don't post here my tryings, because they were obviously wrong. Please can you help me? Giulio...
2009 Nov 20
3
help me avoid nested for() loops!
...nly way I can see to do this is by pythagoras and nested for loops. distance<-function(x1,y1,x2,y2){sqrt((x2-x1)^2 + (y2-y1)^2)} #pythagoras for(i in 1:nrow(points)){ for(j in 1:nrow(points)){ dist<-c(dist,distance(points[i,1],point.array.indices[i,2],points[j,1],points[j,2])) } } This is obviously prohibitively slow with >10000 rows in the array. Any thoughts on how to do this without for loops? I apologize in advance if there is an obvious way around this. Thanks! Andrew Barr University of Texas at Austin
2006 Jul 27
2
Non-interpreted strings
...hrough R docs, google and a few R users and have not found an answer to my question. Is there a way to create a non-interpreted string object in R? For example, I am using R in a MS Windows environment and I would like to paste DOS paths into some R command: setwd("c:\some\directory") Obviously this does not work because of the escaping mechanism. And I know the obvious answer, use "\\". But if you do a lot of pasting into R it could get tedious manually editing escape sequences. I did find a workable solution to this particular problem: setwd(choose.dir())<Enter><P...