Displaying 20 results from an estimated 2000 matches similar to: "Rsync died on big directories/file-lists"
2004 Jul 19
1
Rsync: Directories become Symbolic Links
Hi all,
I have rsync'ed directory /rootdir/dirdir/ from Server1 to Server2, using cmd on Server2 "rsync
Server1:/rootdir/dirdir -avz /rootdir/dirdir". There were some sub-directories from Server1 got
updated to become the symbolic links. For example, directory /rootdir/dirdir/subdir1/ now becomes
the symbolic link /rootdir/dirdir/subdir1 pointing to the new created directory
2006 Nov 29
2
need help with barplot
Hello,
I do this
a=c(10.2,0.4,0.2,5.2,8.6,1.6,0.0,1.0,6.3,1.4,0.4,0.2)
b=matrix(a,nrow=4)
rownames(b)=c("20/04/2002","21/04/2002","22/04/2002","23/04/2002")
colnames(b)=c("p1","p2","p3")
barplot(b,beside=T,col=(c("red","orange","yellow")))
then I have
2010 Jan 25
6
Best practice for setting ACL
Hello forum.
I''m in the process of re-organizing my server and ACL-settings.
I''ve seen so many different ways of doing ACL, which makes me wonder how
I should do it myself.
This is obviously the easiest way, only describing the positive permissions:
/usr/bin/chmod -R A=\
group:sa:full_set:fd:allow,\
group:vk:read_set:fd:allow \
However, I''ve seen people split each
2011 May 02
2
how to get row name using the which function
Dear All,
Probably a very basic question, but can't seem to work my way around it.
I want to which row has the maximum value. But what if the row names do not correspond with the row numbers. In the example below, you'll see that the max of example is row 4, but the name of row 4 is "9". How do I get R to return "9" as value, instead of 4.
example <-
2011 Feb 11
3
[LLVMdev] Unit testing with random input using JIT
Hi Reid,
If an argument is a pointer and the function changes the value it pointed
to,
do you know how to get that updated value after executing the wrapper
function?
Thanks.
Vu
On Tue, Jan 11, 2011 at 2:40 PM, Reid Kleckner <reid.kleckner at gmail.com>wrote:
> On Tue, Jan 11, 2011 at 1:41 PM, Vu Le <vmle at ucdavis.edu> wrote:
> > Hi,
> > I want to implement a tool
2012 Feb 03
3
replicate rows
Hello,
I have a matrix of 17 rows and 20 columns. I want to replicate this matrix 20 times, but I only want to replicate the rows. How do I do that?
Kind regards / Met vriendelijke groet / Med venlig hilsen,
Dr. Gijs Schumacher
Postdoctoral Researcher
Department of Political Science and Public Management, University of Southern Denmark &
Department of Political Science, VU University
2018 Apr 20
2
LLVM Pass Managers
Hi Vedant,
Thanks for your reply. More comments inline.
Son Tuan Vu
On Fri, Apr 20, 2018 at 10:19 PM, Vedant Kumar <vsk at apple.com> wrote:
> Hi,
>
> + Chandler, who has a lot more experience with our pass managers.
>
> On Apr 20, 2018, at 12:56 PM, Son Tuan VU <sontuan.vu119 at gmail.com> wrote:
>
> + Vedant: what do you think about the last point, since
2018 Mar 16
2
Debugify and Verify-each mode
Mhm I see now, thanks for your explanation!
Son Tuan Vu
On Fri, Mar 16, 2018 at 10:58 PM, Vedant Kumar <vsk at apple.com> wrote:
>
> On Mar 16, 2018, at 2:30 PM, Son Tuan VU <sontuan.vu119 at gmail.com> wrote:
>
> Hi Vedant,
>
> Thank you for your reply. I think I can make this debugify-each mode, but
> I guess this is reserved for your GSoC project ?
>
>
2008 Jan 16
3
Pause on graphics
My R script needs to pause or wait for a key or mouse on each graph. I used the following statement after each plot
par(ask=TRUE)
This works on Windows but not on MacOS.
Is there any way to pause on graph in MacOS?
Thanks,
Vu
[[alternative HTML version deleted]]
2018 May 07
2
[DbgInfo] Potential bug in location list address ranges
Hello,
Has anyone taken a look at this bug? I really want to fix this, but as Paul
pointed out, this requires a lot of care...
Thank you for your help
Son Tuan Vu
On Fri, Apr 27, 2018 at 7:29 PM, Son Tuan VU <sontuan.vu119 at gmail.com>
wrote:
> Thank you all for taking a look at this. I pasted the C source then
> deleted it because I was afraid that it was too long to read...
2018 Mar 16
0
Debugify and Verify-each mode
> On Mar 16, 2018, at 2:30 PM, Son Tuan VU <sontuan.vu119 at gmail.com> wrote:
>
> Hi Vedant,
>
> Thank you for your reply. I think I can make this debugify-each mode, but I guess this is reserved for your GSoC project ?
No, there's no reserved work. If you'd like to work on this I encourage you to do so. There's plenty of other work slated for the GSoC project.
2010 Dec 31
3
[LLVMdev] CodeExtractor.cpp potential bug?
There might be a misuse of DominatorTree::splitBasicBlock in
CodeExtractor.cpp, line 145.
Header is splited into two (OldPred->NewBB).
Line 145 updates the dominator tree by calling DT->splitBasicBlock(NewBB).
I think it should be DT->splitBasicBlock(OldPred).
When I tried to extract a code region whose header has 2 successors, my pass
crashed.
It was because header (or OldPred) is the
2018 Jul 12
5
Should Verifier be an analysis?
Hello all,
I came across the code of Verifier, and see that it doesn't modify the IR
at all. Why it is not considered as an analysis pass?
Actually, this will have impact on debugify-each and
print-before/after-all: we are not supposed to print/debugify Verifier
pass, but since Verifier is declared as a transformation (well, a
non-analysis) pass, we actually do print/debugify it.
Thanks for
2019 Jul 24
2
Intrinsics InstrReadMem memory properties
Ok, now I think I've found a bug:
Consider this C code:
void bar(int b) {
int a[10];
memset(a, b, 10);
}
which generates this IR code:
define dso_local void @bar(i32 %b) #0 {
entry:
%b.addr = alloca i32, align 4
%a = alloca [10 x i32], align 16
store i32 %b, i32* %b.addr, align 4
%arraydecay = getelementptr inbounds [10 x i32], [10 x i32]* %a, i64 0,
i64 0
%0 = bitcast i32*
2007 Jul 31
3
Nonlinear optimization with constraints
Hello R community,
I am using R for creating a model using optimization. I would like to ask if there is R-function/package for solving the problem below:
Minimize sum(abs(exp^(Ai1 x1 + Ai2 x2 + ... + Aim xm - bi) - 1)), for each i = 1, ..., n.
subject to Ai1 x1 + Ai2 x2 + ... + Ajm xm - bi <= c, where c is a scalar.
(x is a vector of variables, A is nxm matrix, b is a vector)
2018 Apr 20
2
LLVM Pass Managers
+ Vedant: what do you think about the last point, since Debugify is also
related?
Son Tuan Vu
On Thu, Apr 19, 2018 at 6:14 PM, Philip Pfaffe <philip.pfaffe at gmail.com>
wrote:
> Hi Son,
>
> PassManagerBuilder is used to populate legacy PassManagers. That role is
> taken over by PassBuilder for new-PM passes.
>
> Cheers,
> Philip
>
> 2018-04-18 13:40 GMT+02:00
2020 Jul 20
2
LLVM IR pure intrinsic?
Hello all,
Does anyone know how to define a pure intrinsic in LLVM IR?
I have tried almost every intrinsic property from
llvm/include/llvm/IR/Intrinsics.td but haven't found anything. Or maybe
this is not supported in the IR yet?
Thank you for your help,
Best,
Son Tuan Vu
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2015 Aug 13
4
need help debugging deleted mails
> Date: Thu, 13 Aug 2015 13:38:58
> From: Marcus R?ckert <darix at opensu.se>
> To: dovecot at dovecot.org
> Subject: Re: need help debugging deleted mails
>
> mail_log plugin might help
>
> darix
I've seen this plugin, but I fear that it will be enabled for all users.
I don't have seen an way to enable it only for 1 user like rawlog permits.
Maybe,
2020 Oct 15
1
Dplyr question
Hi All,
Trying to get familiar with dplyr so I have a basic question:
How to summarise sum(Values) per species, maintaining Code column (each species has a Code):
Species Values Code
1 Acanthocybium solandri 33 LC
2 Makaira nigricans 20 VU
3 Makaira nigricans 20 VU
4. Makaira nigricans
2018 Jul 30
2
Metadata RAUW
Hello,
Does anyone know if it is possible to RAUW the Metadata? I took a look at
the source for it and IIUC, it is not possible. What should I do to
implement the RAUW for DINode (more precisely DILocation)?
Thank you for your help,
Son Tuan Vu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: