search for: understanding

Displaying 20 results from an estimated 64381 matches for "understanding".

2005 Dec 25
5
understanding session fixation attacks
is there a way that, our application can understand wheteher the session id sent from the browser is forged or created by rails? I understand that if the attacker guesses session id, theres nothing we can do about it; but can we understand if he/she is trying to guess by creating random session ids. _______________________________________________ Rails mailing list
2009 Aug 17
3
Help understanding lrm function of Design library
Hi, I'm developing an experiment with logistic regression. I've come across the lrm function in the Design library. While I understand and can use the basic functionality, there are a ton of options that go beyond my knowledge. I've carefully read the help page for lrm, but don't understand many of the arguments and optional return values. (penalty, penalty.matrix,
2007 Jul 12
6
best string setting
I think he might be concerned with audio quality, and doesn't quite understand what "lossless" really means! On Thu, 2007-07-12 at 07:12 -0700, Mark Rudholm wrote: > Rick wrote: > > hmm, let me ask this question, another way... > > which setting offer the least compression ?. > > Not using it at all. > > But why would you want that? What's the goal
2006 Oct 24
3
Help with understanding [[]] [] array, list, matrix referencing
Hi all, I would greatly appreciate some help understanding how R references arrays, matrices, lists, and objects using [[]] and []. I have read the R guides and several tutorials but I am not the fastest kid on the block so I am still having difficulty understanding this. For examples the following code produces a 5 element list of 2X5 random numbers...
2010 Dec 08
1
Newbie trying to understand $ so I can understand acf function in stats
I am trying to understand the function acf stats:::acf shows me the function I am having trouble understanding the usage "$acf" in the following acf <- array(.C(R_acf, as.double(x), as.integer(sampleT), as.integer(nser), as.integer(lag.max), as.integer(type == "correlation"), acf = double((lag.max + 1L) * nser * nser), NAOK = TRUE)$acf, c(lag.max...
2016 Apr 05
1
Good pointers for understanding the R language implementation
Dear All, I'm currently working on a project with the purpose of remotely executing R code, which requires me to have to work with the code of R itself. I've searched the Internet for good information that will help me understand how R is implemented but what I've got so far isn't detailed enough. I've looked specifically at CRAN's manuals on the official website but
2006 Jul 14
6
Don''t understand :: in ActionController::Base
Maybe this should apply to Ruby forums directly, but I''ll try here. I understand the concept of classes and subclasses thanks to the excellent "Programming Ruby - The Pragmatic Programmer''s Guide". However, I don''t understand what :: signify in terms of inheritance, parent and child in e.g. ActionController::Base -- Posted via http://www.ruby-forum.com/.
2020 Sep 25
2
Understanding tail call
...tried the following two really simple functions: > extern void g(int*); > void f1() { > int x; > g(&x); > } > void f2(int* x) { > g(x); > } > It turns out that 'f1' does not have tail call optimization, but 'f2' does. My current really naive understanding is that a call happening as the last statement of the function can be optimized as a tail call. However, why cannot 'f1' do this? Is there any recommended articles that I should read if I were to understand the internals of tail call optimization in LLVM, or more generally, performance opt...
2016 Apr 05
1
Good pointers for understanding the R language implementation
Dear All, I'm currently working on a project with the purpose of remotely executing R code, which requires me to have to work with the code of R itself. I've searched the Internet for good information that will help me understand how R is implemented but what I've got so far isn't detailed enough. I've looked specifically at CRAN's manuals on the official website but they
2007 Jul 12
3
best string setting
...ur search for the least amount of compression, that might help us find the right answer. Brian Willoughby Sound Consulting On Jul 12, 2007, at 13:26, Rick wrote: > I try to make it easier for you to understand, > I do understand about lossless format, hence I installed flac, > second, understanding the setting under the man pages is the key. > so, I pose a question, which is: > > What setting uses the least amount of compression. > > flac --best > or > flac -1 > > Richard > > >> On Thu, 2007-07-12 at 07:12 -0700, Mark Rudholm wrote: >>> Rick wro...
2020 Sep 05
1
Acls
I got an output. But I changed it. But still the same problem. But is there a place with more info about this. From my understanding, am I linking windows rights with the unix rights. But I don?t really understand what I am doing. I just copy the winbind settings, and don?t really bother. But maybe when I understand what I am doing, I can fix the problem myself. Btw the problem is, to my understanding, is a right problem. I th...
2020 Aug 01
2
Understanding assert in SelectionDAGBuilder.cpp
Hi, I am new to LLVM. I am experimenting with a toy backend. I don't understand "LowerFormalArguments didn't return a valid chain" in SelectionDAGBuilder.cpp file. What is the interface here? What does it mean by returning a Chain? Thanks Jen. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Jun 29
2
[LLVMdev] Why some registered passes are not available through opt?
Hi Duncan, Is it correct that opt does not understand codegen passes, but llc understands both analysis/transformation and codegen passes? I would like to modify bugpoint to work on this end. Thanks, - D. 2012/6/29 Duncan Sands <baldrick at free.fr>: > Hi Dima, > >> I'm trying to understand why opt tool does not know some of the >> registered passes, for example,
2009 Oct 25
1
A naive question about permutation tests in the coin package
Dear R helpers, I am trying to understand how to use the independence_test function in the coin package. I think I suffer from a misunderstanding about what the package does. Either that or I do not understand how to use it properly. Specifically, I cannot understand if I can test independence of arbitrary statistics. Take the following example: set.seed(10) d <- data.frame(y = c(rnorm(10, mean=3, sd = 5), rnorm(10, mean = 4, sd = 4)),...
2007 Aug 05
1
Understanding of Johansen test.
...epresentation of a VAR[p] model can be written as: Delta y[t] = A[0]*y[t-1] + A[1]*Delta y[t-1] +.............. where, y[t] is a vector of n variables. It is said that "if the variables in system are all co-integrated, then Rank of A[0] will be different from zero" My understanding is following : suppose, y[t] is of order 3 and p = 1 Then Delta y[t] = A[0]*y[t-1] + epsilon[t] Hence : Delta y1[t] = a[11]*y1[t-1] + a[12]*y1[t-1] +a[13]*y1[t-1] + epsilon1[t] Delta y2[t] = a[12]*y1[t-1] + a[22]*y1[t-1] +a[23]*y1[t-1] + epsilon2[t] Delta y3...
2009 May 21
1
"Error: C stack usage is too close to the limit" (can't understand explanations of how to fix this)
Apparently the way to deal with this error message is to set R_CStackLimit = (uintptr_t)-1 I tried typing this in the R console, but it says Error: object "R_CStackLimit" not found. So where do I type it? In one of the initialization files that R uses when it starts up? I can't find the answer anywhere. Please note that I don't understand words like "DLL" or
2010 May 23
1
need help in understanding R code, and maybe some math
Hi, I am trying to implement Higham's algorithm for correcting a non positive definite covariance matrix. I found this code in R: http://projects.cs.kent.ac.uk/projects/cxxr/trac/browser/trunk/src/library/Recommended/Matrix/R/nearPD.R?rev=637 I managed to understand most of it, the only line I really don't understand is this one: X <- tcrossprod(Q * rep(d[p], each=nrow(Q)), Q) This
2012 Dec 20
1
Understanding Sockets
Hi, Just trying to consolidate my knowledge of Dovecot and I want to understand various things rather than just key out lines of config in dovecot.conf with the hope of it working. What I wanted to clarify is my understanding the "socket listen" section of the config file. From my limited understanding, this section details how other processes can access the userdb defined in Dovecot. The master socket is used for "internal" processes which is mainly dovecot-lda so that when Dovecot receives mail...
2006 Nov 12
0
[LLVMdev] need help understanding getelementptr assembler instruction
Ram, Please read and understand the GetElementPtr FAQ available here: http://llvm.org/docs/GetElementPtr.html That will help you understand how it works. We wrote that document specifically because this question comes up all the time. Reid. On Sun, 2006-11-12 at 11:13 -0800, Ram Bhamidipaty wrote: > I am trying to understand the hello word assember example. This is > my version: >
2020 Apr 27
2
Understanding modularity
> On 4/27/20 8:27 AM, Simon Matter via CentOS wrote: >> Hi, >> >> I've read the Fedora modularity docs but am still missing the big >> picture >> somehow. Hope someone can clarify things for me. >> >> What I'm most wondering: does modularity have any influence on the RPM >> packages at all. I mean, is there anything inside a RPM package