similar to: Query: SELECT "INBOX" permission denied

Displaying 20 results from an estimated 600 matches similar to: "Query: SELECT "INBOX" permission denied"

2018 May 23
2
Pasar palabras de una lista a una variable del dataframe
Muchas gracias Carlos, Me da error al hacerlo. Mi variable donde quiero que localice las palabras de la lista tiene más de una palabra, no se si puede ser por eso. Gracias El Mar, 22 de Mayo de 2018, 20:15, Carlos Ortega escribió: > Hola, > > Aquí tienes un ejemplo (reproducible)... > > #----------------------- >> # Generar nombres de mujer >> library(randNames)
2005 Nov 23
1
[LLVMdev] Cloning BasicBlock
Hello Andrew , Yes , I have missed the phi node since my paths merge together. I'll try this out. I am implementing a timer based profiling scheme and hope your code will be useful for me. Please send me a copy of your code. Thanks Sandra Andrew Lenharth <andrewl at lenharth.org> wrote: On Tue, 2005-11-22 at 09:12 -0800, Sandra Johnson wrote: > Hi , > I am trying
2006 Mar 30
1
Predict function for 'newdata' of different dimension in svm
I am using the "predict" function on a support vector machine (svm) object, and I don't understand why I can't predict on a dataset with more observations than the training dataset. I think this problem is a generic "predict" problem, but I'm not sure. The original svm was fit on 50 observations.
2005 Nov 22
0
[LLVMdev] Cloning BasicBlock
On Tue, 2005-11-22 at 09:12 -0800, Sandra Johnson wrote: > Hi , > I am trying to clone a BasicBlock. I want both to co-exist and I have > introduced > a conditional branch to the original or the cloned BB. I have a pass I haven't commited that does just this. Well, it does so to implement Arnold and Ryder style profiling. I can send you a copy of that if you want (I hope to
2000 Dec 05
2
openssh problems
Hi everyone: I am new so I hope so that this list will be the correct place for my question. I install openssh-2.3.0p1 yesterday on a machine with Red Hut Linux 6.2 and it was fine as client but not as server in other words I can use openssh from my machine to get in the other machines but when I try to do from another machines to the machine that I mentioned above, I got a error that said
2002 Feb 14
4
How to read a long string of characters as a vector
Dear R users, I would really appreciate some help, I have a plain text file which contains info like NANATGGGGGGGCCCAGCTTGAATTCCCNTCCCCNTTCCCATCCAGGCC I would like to read it as a vector, for example, (N,A,N,A,T,G,G,G,G,G,G,G,C,C,C,........) I've tried commands such as read.table and scan but I don't get what I want. Thank you in advanced. Sandra
2010 Mar 24
3
mounting gfs partition hangs
Hi, I have configured two machines for testing gfs filesystems. They are attached to a iscsi device and centos versions are: CentOS release 5.4 (Final) Linux node1.fib.upc.es 2.6.18-164.el5 #1 SMP Thu Sep 3 03:33:56 EDT 2009 i686 i686 i386 GNU/Linux The problem is if I try to mount a gfs partition it hangs. [root at node2 ~]# cman_tool status Version: 6.2.0 Config Version: 29 Cluster Name:
2007 Oct 20
1
mussy data
Hi, I am writing my B.SC thesis and I have to do something in R, my data are i index id x 1 1 1 0.2 2 2 1 0.4 3 3 1 0.3 4 1 2 0.5 5 2 2 0.3 6 3 2 0.1 7 1 3 0.2 8 2 3 0.1 9 3 3 0.4 and for the analysis they have to be as i index id x 1 1 1 0.2 4 1 2 0.5 7 1 3 0.2 2 2
2010 Dec 06
1
Optimize multiple variable sets
Hi, I usually use optimize function for ML Estimation. Now I?ve got a data frame with many sets, but I can?t save estimates each time I run the code for each data set (I?m using a for loop with my loglikelihood function and works ok but when I apply another for loop to: optimize(my.loglikelihood.function[i], int=c(0.0001,10)) it doesn?t work; alternatively, using optimize inside the for loop
2005 Nov 22
3
[LLVMdev] Cloning BasicBlock
Hi , I am trying to clone a BasicBlock. I want both to co-exist and I have introduced a conditional branch to the original or the cloned BB. I tried mapping the original instruction and the clone as below : Instruction *NewInst = II->clone(); if (II->hasName()) NewInst->setName(II->getName()); NewBB->getInstList().push_back(NewInst); ValueMap[II] =
2012 Aug 24
3
Chart of the most common Ruby I should know for puppet 3?
Hi all, Being new to puppet 3 and to Ruby. Does there exist a chart of the Ruby I should know? Hugs, Sandra -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/yuEGLZKgC_4J. To post to this group, send email to puppet-users@googlegroups.com. To
2011 Feb 23
2
copy values from one dataframes into another
Hello everyone, I have the following problem, I have a dataframes that looks like this: fire$Year fire$Size 1 1981 1738.0 2 1984 2228.1 3 1985 38963.3 4 1986 2223.4 5 1987 3594.6 6 1988 1520.0 ... What I would like to do is copy the values from the fire$Size colum and put it into a new df but with "0" for the years that are missing. The
2006 Apr 26
4
Re: Rails AR/Oracle Unit Test: [4280] failed
The revised patch submitted on #4748 broke the build, I''m looking to sort out why. Also note that this auto-test email didn''t make it to rails-core because it was too big (every test failed, so the resulting email was huge). I''ll patch my auto-testing script to truncate the email to no larger than a few kb. Michael Schoen wrote: > "marcel" made
2005 Oct 16
2
[LLVMdev] Help on LLVM Instrumentation
Hi , I am using LLVM for my Post Graduate course project on Optimization. I am trying to do some insrtumentation to the bytecode.I 've been going through your Instrumentation code for the past few days in /llvm/lib/Transforms/Instrumentation folder and finally found two ways of instrumentation : 1) injecting LLVM bytecode instructions 2) calling an external C function. I am trying both and
2013 Feb 23
1
[LLVMdev] One question about two passes interaction
Actually I tried ModulePass. It works exactly as what I expect.But I found another problem. In ModulePass, it not only collects the functions I create, it also treat some system function such as 'printf' as a function. I do not if I does something wrong. The codes I use is as follows: virtual bool runOnModule(Module &M) { for (Module::iterator b = M.begin(), be = M.end(); b !=
2012 Aug 25
12
How can MCollective replace "puppet kick"?
Dear readers, I was shocked to see that "puppet kick" will be deprecated in 3.0.0 https://projects.puppetlabs.com/issues/15735 How can MCollective replace "puppet kick"? Hugs, Sandra -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit
2012 Jul 27
11
Possible to push changes to nodes?
Dear readers, When I have made a change to a template, class or file, is it then possible to push this change to the node(s), so they get the changes now? I would like to be able to push the change from the master, and not have to login to each node and pull. Is that possible? Hugs, Sandra -- You received this message because you are subscribed to the Google Groups "Puppet Users"
2013 Feb 22
0
[LLVMdev] Does LLVM optimize variable to constant value in the compiling time?
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] > On Behalf Of Robert Sandra > Subject: [LLVMdev] Does LLVM optimize variable to constant value in the compiling time? > Considering the following codes: > int x = 21;  > if(x > 20) {  >    p = &C;  > } else {  >    p = &E;  > } > I looked into the bitcode that LLVM
2001 Mar 11
1
MS SQL with Linux through Samba
Hello there, I would like to implement an LVS in my organization. The topology is as follows: (i) On the highest level, there is a storage (possibly RAID5) which will store all my databases of images and important information. (LINUX) (ii) Under it, I will want to have a load-balancer and 2 servers (one as FOS) to handle the clients' requests. (LINUX) (iii) Below the 2 servers, I have to
2013 Feb 22
1
[LLVMdev] Does LLVM optimize variable to constant value in the compiling time?
By optimization, do you mean enable the optimization whiling building llvm or use optimization flag while using clang command to get the bitcode file? In my case, I disable the optimization when I built llvm, and I use the following command to get the bitcode: clang -O0 -emit-llvm hello.c -c -o hello.bc To run the pass: opt -load ../../../Debug+Asserts/lib/Hello.so -hello < hello.bc >