Displaying 20 results from an estimated 5000 matches similar to: "[LLVMdev] [Fwd: Re: svn issues]"
2009 Oct 11
3
SVN hell!
Hi!
I'm trying to install SVN on a latest version of CentOS (5.3). I just did:
yum install subversion
yum install mod_dav_svn
Then i edited /etc/httpd/conf.d/subversion.conf
and here is the content:
========================
<Location /svn>
DAV svn
SVNParentPath /var/www/svn
# Limit write permission to list of valid users.
<LimitExcept GET PROPFIND OPTIONS
2006 Aug 16
1
Re: 400 Bad Request error from svn
It's nice to see that the OS where CentOS gets its sources from also
experiments the same error!
I have been very busy lately so I haven't had the time to deal with the
problem, probably later this week or early next week. As soon as I find
something Ill let you know. Hopefully you'll do the same if you come
across the solution first.
PS. Forwarding this message to the mailing
2007 Feb 18
0
[LLVMdev] LLVM Cygwin build RLIMIT_RSS configuration problem
Okay I have put a #ifdef HAVE_RLIMIT_RSS round the RSS code.
There needs to be logic added to config system to complement this.
Or shall I just use an #ifdef _CYGWIN_ ?
Regarding the Bytecode writer stuff. I will try adding some inline
dis-ambiguator functions.
Aaron
----- Original Message -----
From: "Reid Spencer" <rspencer at reidspencer.com>
To: "LLVM Developers
2007 Feb 18
2
[LLVMdev] LLVM Cygwin build RLIMIT_RSS configuration problem
On Sun, 2007-02-18 at 21:42 +0000, Aaron Gray wrote:
> Okay I have put a #ifdef HAVE_RLIMIT_RSS round the RSS code.
>
> There needs to be logic added to config system to complement this.
>
> Or shall I just use an #ifdef _CYGWIN_ ?
Please just use #ifdef _CYGWIN_
>
> Regarding the Bytecode writer stuff. I will try adding some inline
> dis-ambiguator functions.
Yeah,
2006 Aug 08
1
[LLVMdev] build error
On Mon, 07 Aug 2006 19:36:01 -0700
Reid Spencer <rspencer at reidspencer.com> wrote:
>
> Hi Simon,
>
> What version of llvm-gcc did you configure LLVM with? If you don't
> know, please send your configure.out file from your LLVM_OBJ_ROOT
I didn't find that file in the source anywhere.
Also, I don't normally use llvm-gcc, so I didn't knowingly configure for
2006 Aug 16
0
[LLVMdev] GetElementPtr.html
Hello,
Reading through this, I found a typo...
In the paragraph after the 3rd code snippet in the 1st question's section:
"The second operand will be the field offset" seems like it should be the
third operand? The second is the pointer offset...
HTH! =]
-Chandler Carruth
On 8/15/06, Reid Spencer <rspencer at reidspencer.com> wrote:
>
> All,
>
> The often
2007 Mar 10
2
[LLVMdev] LLVM with Microsoft Visual Studio
On 3/11/07, Reid Spencer <rspencer at reidspencer.com> wrote:
> Could you submit the patch? We could make sure that 2.0 doesn't have the
> same problem.
Sure, I can't test this from where I am now but if anyone can take it
for a spin to test it and verify the fix then by all means check it
in. I'm just providing a hand-edited diff from our vendor branch here
(1.9 tarball
2006 Mar 13
1
svn rails problem
svn co http://dev.rubyonrails.org/svn/rails/trunk
svn: PROPFIND request failed on ''/svn/rails/trunk''
svn: PROPFIND of ''/svn/rails/trunk'': Could not resolve hostname
`dev.rubyonrails
.org'': The requested name is valid and was found in the database, but it
does no
t have the correct associated data being resolved for.
(http://dev.rubyonrails
.org)
--
2006 Mar 07
1
SVN troubles
Dear r-devel,
Sorry to trouble the list with this, but I've been beating my head
against the wall trying to figure out what's wrong. When I try to
connect to the R SVN server, I get the following message:
(sly at cornas):~/src/R$ svn co https://svn.r-project.org/R/trunk r-devel
svn: PROPFIND request failed on '/R/trunk'
svn: PROPFIND of '/R/trunk': SSL negotiation
2007 Jul 25
0
[LLVMdev] svn issues
Hi David,
On Wed, 2007-07-25 at 10:38 -0500, David A. Greene wrote:
> I'm getting a lot of errors from svn like this:
>
> svn: REPORT request failed on '/svn/llvm-project/!svn/vcc/default'
> svn: REPORT of '/svn/llvm-project/!svn/vcc/default': Could not read response
> body: Secure connection truncated (https://llvm.org)
What is
2007 Jul 25
0
[LLVMdev] svn issues
On Wednesday 25 July 2007 11:45, David Greene wrote:
> On Wednesday 25 July 2007 11:06, Reid Spencer wrote:
> > Hi David,
> >
> > On Wed, 2007-07-25 at 10:38 -0500, David A. Greene wrote:
> > > I'm getting a lot of errors from svn like this:
> > >
> > > svn: REPORT request failed on '/svn/llvm-project/!svn/vcc/default'
> > > svn:
2007 Jul 25
3
[LLVMdev] svn issues
On Wednesday 25 July 2007 11:06, Reid Spencer wrote:
> Hi David,
>
> On Wed, 2007-07-25 at 10:38 -0500, David A. Greene wrote:
> > I'm getting a lot of errors from svn like this:
> >
> > svn: REPORT request failed on '/svn/llvm-project/!svn/vcc/default'
> > svn: REPORT of '/svn/llvm-project/!svn/vcc/default': Could not read
> > response
2007 Jun 18
2
[LLVMdev] Arbitrary bit width integers
Ok, so if I needed very precise control over the allocation of memory,
then I should avoid using integers with bit widths larger than 64 bits
(or perhaps 128)? Is there a hard rule for an integer being stack
allocated, ie. one that doesn't depend on the current implementation
details?
Sandro
On 6/18/07, Reid Spencer <rspencer at reidspencer.com> wrote:
> Sandro Magi wrote:
>
>
2007 Feb 09
2
heatmap color specification
hi,
I have a positive integer matrix like:
test<-matrix(c(1,2,2,2,2,1,1,2,3),3)
and based on the distant function I made like this:
generateDistMat<-function (target)
{
n <- nrow(target)
rn <- rownames(target)
distM <- matrix(NA, n, n)
diag(distM) <- 0
for (i in 1:(n - 1)) for (j in (i + 1):n) {
distM[i, j] <- length(which(target[i, ] !=
2007 Jul 25
3
[LLVMdev] svn issues
I'm getting a lot of errors from svn like this:
svn: REPORT request failed on '/svn/llvm-project/!svn/vcc/default'
svn: REPORT of '/svn/llvm-project/!svn/vcc/default': Could not read response
body: Secure connection truncated (https://llvm.org)
I've now been checking out llvm-gcc for two days.
Is there a problem with the server? I don't have this issue with other
2006 Dec 14
2
public SVN dead?
James Mead wrote:
> Trunk has moved on considerably since the last release. I really must
> get round to releasing again soon.
Righty, right. I''ve tried:
svn checkout svn://rubyforge.org/var/svn/mocha
as documented here [1], but svn will just hang forever.
Accessing any of the following:
[svn|http[s]]://rubyforge.org/var/svn/mocha[/[trunk[/]]]
either through the svn
2007 Jul 25
1
[LLVMdev] svn issues
David,
Did upgrading to a newer version help at all? If so, I'd like to notify
people to stay away from 1.3.1. What's the status?
Reid.
On Wed, 2007-07-25 at 12:07 -0500, David Greene wrote:
> On Wednesday 25 July 2007 11:45, David Greene wrote:
> > On Wednesday 25 July 2007 11:06, Reid Spencer wrote:
> > > Hi David,
> > >
> > > On Wed, 2007-07-25 at
2009 Aug 10
3
[LLVMdev] svn down?
I've been getting this on svn update all day:
svn: REPORT request failed on '/svn/llvm-project/!svn/vcc/default'
svn: REPORT of '/svn/llvm-project/!svn/vcc/default': 403 Forbidden
(http://llvm.org)
Is this related to the server problems that have been going on for a while?
-Dave
2007 Oct 17
0
svn access via apache with ntlm authentication
My setup :
Debian Etch i386
httpd-2.0.61 configured with the following command
"./configure --prefix=/opt/httpd-2.0.61 --with-mpm=worker --enable-so
--enable-dav=shared
--enable-unique-id=shared --enable-version=shared --enable-ssl=shared
--enable-info=shared
--enable-cgi=shared --enable-rewrite=shared --enable-cache=shared --
enable-disk-cache=shared --enable-deflate=shared"
2007 Apr 02
1
SVN Propget error linking to techno-weenie.net
After installing the plugin like this:
./script/plugin install -x http://svn.techno-weenie.net/projects/plugins/exception_logger/
I get this error when accessing the source repositories:
svn: PROPFIND request failed on ''/projects/plugins/exception_logger/
init.rb''
svn: PROPFIND of ''/projects/plugins/exception_logger/init.rb'': Could
not resolve hostname