search for: trivally

Displaying 20 results from an estimated 68 matches for "trivally".

Did you mean: trivially
2008 Apr 29
2
More trival questions
Hopefullly this is once again something trivial I'm missing. I'm still trying to figure out how to pull a part a stream. I get two out the three theora headers I can see in the file (http://v2v.cc/~j/theora_testsuite/320x240.ogg) if I use the buffer in the page struct and nothing usable if I try to use the packet structs. Hopefully this is once again something something trivial I've
2017 Sep 06
2
[PATCH 3/4] paravirt: add virt_spin_lock pvops function
Guys, please trim email. On Tue, Sep 05, 2017 at 10:31:46AM -0400, Waiman Long wrote: > For clarification, I was actually asking if you consider just adding one > more jump label to skip it for Xen/KVM instead of making > virt_spin_lock() a pv-op. I don't understand. What performance are you worried about. Native will now do: "xor rax,rax; jnz some_cold_label" that's
2017 Sep 06
2
[PATCH 3/4] paravirt: add virt_spin_lock pvops function
Guys, please trim email. On Tue, Sep 05, 2017 at 10:31:46AM -0400, Waiman Long wrote: > For clarification, I was actually asking if you consider just adding one > more jump label to skip it for Xen/KVM instead of making > virt_spin_lock() a pv-op. I don't understand. What performance are you worried about. Native will now do: "xor rax,rax; jnz some_cold_label" that's
2003 Sep 17
2
possible bug in diag()
It concerns trival diagonal matrices: > diag(1) [,1] [1,] 1 > diag(rnorm(1)) <0 x 0 matrix> > diag(rnorm(1),nrow=1) [,1] [1,] 0.4843697 There's an obvious work around... but I thought it was worth notifying the list. Regards, John Marsland ********************************************************************** This is a commercial communication from
2006 Sep 14
2
Adding predicted values as a new variable in a data frame
I am running a regression: ols.reg1 <- lm(y ~ x1 + x2 + x3 + x4) on a data.frame and then generating fitted values: y.hat <- ols.reg1$fitted.values Then I would like to add these fitted values to the data.frame as a new variable. The problem is that when the values are predicted the resulting output has too few rows. for some reason certian observations do not get predicted values. So
2016 May 31
2
[cfe-dev] GitHub anyone?
> On May 31, 2016, at 2:05 PM, Joerg Sonnenberger via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > On Tue, May 31, 2016 at 01:45:30PM -0700, Matthias Braun wrote: >> To be more exact here: I usually do not checkout llvm svn at a higher >> level because that forces me back to svn (which last time I used it did >> not have built-in support for bisection, not
2012 Aug 07
1
[LLVMdev] YASM and LLVM
Hi, A while ago I posted about implementing something to print ASM in a format that the YASM assembler can handle, well, I've got a small change set that does just that. We're compiling non-trival programs with it for Win32/Metro so it seems to work :-) Having little exposure to the LLVM codebase, I'm not 100% sure of the coding guidelines, or what the repercussions of some of my
2016 May 31
0
[cfe-dev] GitHub anyone?
On Tue, May 31, 2016 at 01:45:30PM -0700, Matthias Braun wrote: > To be more exact here: I usually do not checkout llvm svn at a higher > level because that forces me back to svn (which last time I used it did > not have built-in support for bisection, not sure if that changed > recently). svn-bisect is a trival tool and should be part of every good svn installation. While I never got
2017 Sep 06
1
[PATCH 3/4] paravirt: add virt_spin_lock pvops function
On Wed, Sep 06, 2017 at 08:44:09AM -0400, Waiman Long wrote: > On 09/06/2017 03:08 AM, Peter Zijlstra wrote: > > Guys, please trim email. > > > > On Tue, Sep 05, 2017 at 10:31:46AM -0400, Waiman Long wrote: > >> For clarification, I was actually asking if you consider just adding one > >> more jump label to skip it for Xen/KVM instead of making > >>
2017 Sep 06
1
[PATCH 3/4] paravirt: add virt_spin_lock pvops function
On Wed, Sep 06, 2017 at 08:44:09AM -0400, Waiman Long wrote: > On 09/06/2017 03:08 AM, Peter Zijlstra wrote: > > Guys, please trim email. > > > > On Tue, Sep 05, 2017 at 10:31:46AM -0400, Waiman Long wrote: > >> For clarification, I was actually asking if you consider just adding one > >> more jump label to skip it for Xen/KVM instead of making > >>
2003 Sep 01
2
gnuGK + h323 Caller ID
Hi, I use with asterisk gnugk a gatekeeper for h323 client. I don't understand why asterisk can't have the H323-ID (callerID). In the gatekeeper's monitor I have this H323-ID but not in asterisk. Does anyone know something about it, or how can I send a caller ID to asterisk ? Rattana -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Nov 15
1
Sweave: Conditional code chunks?
I have a code junk that produces a figure. In my special case, however, data does not always exist. In cases where data exists, the code chunk is of course trival (case #1), however, what do I do for case # 2 where the data does not exist? I can obviously prevent the code from being executed by checking the existence of the object x, but on the Sweave level I have a static figure chunk. Here an
2009 Jun 10
1
how to get output from a nested loop
Dear all, I imagine that this is a trival question, but it has perplexed for most of the day. Any help would be greatly appreciated. Below is an example of what I'm trying to do. Essentially I want to produce all unique 1 x 1 combinations of certain columns from a dataframe, and join these to other columns from the same dataframe. I'm having problems with the nested loop as I can only
2016 May 31
0
[cfe-dev] GitHub anyone?
On Tue, May 31, 2016 at 02:43:02PM -0700, Matthias Braun wrote: > > > On May 31, 2016, at 2:05 PM, Joerg Sonnenberger via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > > > On Tue, May 31, 2016 at 01:45:30PM -0700, Matthias Braun wrote: > >> To be more exact here: I usually do not checkout llvm svn at a higher > >> level because that forces me back
2012 Mar 06
1
sourcearg function is there a better way already built into R
Hi list: I work with a lot of laboratory analytical data and I often have inconsistent names of files and variables within those files so I wrote this sourcearg function to facilitate handling file and variable names as both character and R names. The source of the function is given below sourcearg=function(arg){ su=sprintf("%s\n",arg) sink("TMPTMPRarg")
2015 May 27
2
[LLVMdev] Beignet Backend as an LLVM Target
Dear LLVM experts! we would like to use BeignetBackend as and LLVM Target It shown in teh Beignet code there is a note "Well, the complete code base is somehow a compiler backend for LLVM. Here, we really speak about the final code generation passes that you may find in `src/backend`." http://www.freedesktop.org/wiki/Software/Beignet/Backend/compiler_backe nd/ But Beignet does not
2016 May 31
2
[cfe-dev] GitHub anyone?
> On May 31, 2016, at 1:42 PM, Matthias Braun <mbraun at apple.com> wrote: > >> >> On May 31, 2016, at 1:31 PM, Joerg Sonnenberger via llvm-dev <llvm-dev at lists.llvm.org> wrote: >> >> On Tue, May 31, 2016 at 04:24:08PM -0400, Aaron Ballman via cfe-dev wrote: >>> On Tue, May 31, 2016 at 3:31 PM, Renato Golin via cfe-dev >>>
2006 Mar 21
5
Encrypting source / application licensing
Hey folks- If I wanted to distribute my code to users that would run the code on their own machine, how could I go about encrypting the source to run on a user''s machine? PHP has the Zend Encoder among others, I believe. Is there anything similar for Ruby? Jake -- Posted via http://www.ruby-forum.com/.
2017 May 26
2
warning that legacy WAVE file has format type 1 but bits-per-sample is 24
Hello, I've tried encoding a FLAC file from a WAVE file saved with 24-bits-per-sample, using the flac executable. I get this warning: WARNING: legacy WAVE file has format type 1 but bits-per-sample=24 The code is currently here on line 373: src/flac/encode.c where the comment says let these slide with a warning since they're unambiguous I do not really understand the warning
2010 Aug 16
1
samba4 + ubuntu 10.0.4
I have samba4 (installed from package 4.0.0~alpha8+git20090912-1) running on my Ubunut 10.0.4 Lucid server. For anyone to replicate this, install samba4, import the DisplaySpecifiers from source and edit /usr/lib/python2.6/dist-packages/samba/provision.py to contain the right setup path; $ vi /usr/lib/python2.6/dist-packages/samba/provision.py # In source tree # ret = os.path.join(dirname,