search for: henrique

Displaying 20 results from an estimated 1924 matches for "henrique".

2010 Nov 25
4
Cumsum with a max and min value
...do It, was res <- vector(length=length(a)) res[1] <- a[1] for ( i in 2:length(a)) res[i] <- res[i-1] + a[i] * (( res[i-1] < max_value & a[i] > 0 ) | ( res[i-1] > min_value & a[i] < 0 )) This is certainly not the best way to do it, so any suggestions? Henrique [[alternative HTML version deleted]]
2005 Sep 22
3
ACLs with Problem
...delete share command = /usr/local/samba/share/modify_samba_config.pl idmap uid = 10000-20000 idmap gid = 10000-20000 template homedir = /data/users/%U template shell = /bin/ksh winbind use default domain = Yes admin users = corniani, administrator, henrique read only = No force unknown acl user = Yes guest ok = Yes [Teste1] comment = Teste de ACL Linux path = /data/teste browseable = Yes admin users = ECPNET\henrique read only = No With this configuration the users of the PDC (windows 20...
2017 Oct 18
2
[PATCH] [CMake] Allow parent projects to use in-source builds
Hi all. Is there anything else to be done for the patch to be merged? Best regards Henrique Jung On 9 October 2017 at 19:56, NAKAMURA Takumi <geek4civic at gmail.com> wrote: > Note, I guess it may work for "Unix Makefiles", since we discarded > autoconf support. > > On Tue, Oct 10, 2017 at 7:54 AM Henrique Jung via llvm-dev < > llvm-dev at lists.llvm.or...
2006 Apr 02
5
Help with Webmin Module
...nstalled shorewall is 3.0.5 (package from testing) but the webmin module only understands (and builds) the old shorewall 2.x file format. The webmin module is from testing too. Is there anyplace where I can get a webmin module for shorewall that can handle the 3.0 branch? Thanks in advance -- Henrique Cesar Ulbrich henrique.ulbrich@gmail.com ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking int...
2013 Nov 15
2
[LLVMdev] dominator, post-dominator and memory leak
Hi Henrique, I have tried using -mergereturn and inserting a free into the predecessors of dominance frontier of malloc block and it caused double free. It is possible for multiple free's to be inserted on the path from malloc to an exit. For example, in the following CFG: BB10 (malloc)...
2013 Nov 13
3
[LLVMdev] dominator, post-dominator and memory leak
Hi Henrique, Thanks for the quick reply! On Tue, Nov 12, 2013 at 9:13 PM, Henrique Santos < henrique.nazare.santos at gmail.com> wrote: > PRE normally uses a latest placement algorithm to do something of the sort. > I don't know about GVN/PRE, but older version of PRE might have it. > Just...
2013 Nov 13
2
[LLVMdev] dominator, post-dominator and memory leak
Thanks! I will try that and see whether it works. On Wed, Nov 13, 2013 at 5:01 AM, Henrique Santos < henrique.nazare.santos at gmail.com> wrote: > It seems that placing the calls to free at the predecessors of dominance >> frontier is inadequate. It is possible that there are exit blocks that are >> dominated by BB12 (calls to malloc). I guess we can also insert call...
2012 Aug 08
4
Saving Splitted Series to Excel via XLConnect
...ok("Teste.xlsx", create = TRUE) createSheet(wb, name = "Teste1") writeWorksheet(wb, dados2, sheet = "Teste1") saveWorkbook(wb) With this code I only get the "433" series. How could I fix my code? How could I include the other series? Many thanks in advance, Henrique Andrade
2013 Nov 13
0
[LLVMdev] dominator, post-dominator and memory leak
...ulates the "availability frontier" which is probably what you're looking for. I suggest, however, that you try coming up with another solution instead. You might consider using -mergereturn. H. On Wed, Nov 13, 2013 at 2:13 AM, Bin Tzeng <bintzeng at gmail.com> wrote: > Hi Henrique, > Thanks for the quick reply! > > On Tue, Nov 12, 2013 at 9:13 PM, Henrique Santos < > henrique.nazare.santos at gmail.com> wrote: > >> PRE normally uses a latest placement algorithm to do something of the >> sort. >> I don't know about GVN/PRE, but older...
2011 Jan 22
2
meaning of formula in aggregate function
Dear R community Recently, dear Henrique Dallazuanna literally saved me solving one problem on data transformation which follows: (n_, _n, j_, k_ signify numbers) SOURCE DATA: id cycle1 cycle2 cycle3 ? cycle_n 1 c c c c 1 m m m m 1 f f f...
2008 May 03
0
Thanks to Mark, Henrique, and Jorge
Mark, Henrique, and Jorge, Thank you all very much for your replies. I'm really impressed by your knowledge of R: I'd never even heard of of some of these functions (especially split() and unlist().) I went with the Henrique-Mark solution and it is working fine. Thanks again! David [[alternative HT...
2013 Nov 15
0
[LLVMdev] dominator, post-dominator and memory leak
...ed without going back to BB10 again. I hope this reasoning make sense. : ) Also, you might also have to treat the special case in which the block where the malloc() is placed dominates the return block. H. On Fri, Nov 15, 2013 at 2:29 AM, Bin Tzeng <bintzeng at gmail.com> wrote: > Hi Henrique, > > I have tried using -mergereturn and inserting a free into the predecessors > of dominance frontier of malloc block and it caused double free. It is > possible for multiple free's to be inserted on the path from malloc to an > exit. For example, in the following CFG: > &gt...
2023 May 29
4
[PATCH] ocfs2: check new file size on fallocate call
When changing a file size with fallocate() the new size isn't being checked. In particular, the FSIZE ulimit isn't being checked, which makes fstest generic/228 fail. Simply adding a call to inode_newsize_ok() fixes this issue. Signed-off-by: Lu?s Henriques <lhenriques at suse.de> --- fs/ocfs2/file.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index efb09de4343d..b173c36bcab3 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -2100,14 +2100,20 @@ static long ocfs2_fallocate(st...
2013 Nov 13
0
[LLVMdev] dominator, post-dominator and memory leak
...ooking for calls to functions that mayThrow(), changing their calls to invokes, and freeing the memory before resuming the unwinding. -Hal ----- Original Message ----- > > > Thanks! I will try that and see whether it works. > > > > > On Wed, Nov 13, 2013 at 5:01 AM, Henrique Santos < > henrique.nazare.santos at gmail.com > wrote: > > > > > > > It seems that placing the calls to free at the predecessors of > dominance frontier is inadequate. It is possible that there are exit > blocks that are dominated by BB12 (calls to malloc)...
2013 Nov 04
2
[LLVMdev] conditional flow resulting in "Instruction does not dominate all uses!"
On 4 November 2013 08:19, Henrique Santos <henrique.nazare.santos at gmail.com> wrote: > Well, what I had in mind was actually something like the following: > > entry: > result0 = invoke func0 to defer_block unwind landing0 > > landing0: > landingpad > result1 = invoke func1 to defer_block unwind...
2004 Jun 22
1
Fw: Error C000019B
PLEASE!! can somebody help me? I need much these! ----- Original Message ----- From: "Henrique" <henrique@astuto.com.br> To: "Samba Samba" <samba@lists.samba.org> Sent: Monday, June 21, 2004 3:35 PM Subject: Error C000019B > Hi everyone! im having problems with Samba 3.0.4 > > My PDC is samba+openldap+nss+pam+smbldaptools > > All work fine (posix a...
2013 Nov 09
2
[LLVMdev] Warnings on Opt passes
On 9 November 2013 15:03, Henrique Santos <henrique.nazare.santos at gmail.com>wrote: > It seems like a difficult thing to do since we would have to keep metadata > intact across transformations, which, AFAIK, is not done. > mem2reg, for example, doesn't even propagate debug metadata to phi nodes, > and I'...
2018 Jul 23
2
liboggz release
Hello Silvia, ok Enviado do meu iPhone Em 22 de jul de 2018, à(s) 19:02, Silvia Pfeiffer <silviapfeiffer1 at gmail.com> escreveu: > Hey Henrique, > > I think liboggz needs a new maintainer. Are you volunteering? > > Cheers, > Silvia. > > >> On Mon., 23 Jul. 2018, 6:47 am Henrique Almeida, <hdante at gmail.com> wrote: >> Hello, there are around 30 commits in liboggz master branch that >> don&...
2004 Jun 24
2
Roaming profiles. How to do it ?
...he user logins for the first time on MACHINE1 a local profile is created using the "All users" folder (under \windows\profiles) I'm not sure if the option " logon home = \\%N\%U\profile " tells Samba to do what I want. Somone can help me ? Thank you in advance. Fl?vio Henrique
2023 May 31
2
[PATCH] ocfs2: check new file size on fallocate call
On 5/29/23 11:26 PM, Lu?s Henriques wrote: > When changing a file size with fallocate() the new size isn't being > checked. In particular, the FSIZE ulimit isn't being checked, which makes > fstest generic/228 fail. Simply adding a call to inode_newsize_ok() fixes > this issue. > > Signed-off-by: Lu?s He...