search for: interceding

Displaying 5 results from an estimated 5 matches for "interceding".

2013 Jul 22
2
script to test CATENATE
Attached please find a perl script which tests the CATENATE support in dovecot. I used this to test my CATENATE implementation a few years ago and it runs fine against dovecot in OS X Server. When run against dovecot-2.2.4 though it always fails or hangs, which in some cases means we interpreted RFCs differently and in other cases means it's finding bugs; both conditions are worthy of
2007 Jul 01
0
[LLVMdev] Repository Layout
...tags/stacker/... > tags/java/.. Reid, This is a common problem with Subversion. I wouldn't recommend using the layout you suggested here, though. Although it's "just" a convention, please keep the standard layout at the root of each project. (You're proposing interceding a directory layer between trunk, branches, and tags, etc. I don't think you'll find that it solves many management problems.) If the projects are too granular, merge them together. It might, in fact, be appropriate to use a single project root for the totality of llvm. Getting this...
2007 Jul 01
1
[LLVMdev] Repository Layout
...> > > Reid, > > > This is a common problem with Subversion. I wouldn't recommend using > the layout you suggested here, though. Although it's "just" a > convention, please keep the standard layout at the root of each > project. (You're proposing interceding a directory layer between > trunk, branches, and tags, etc. I don't think you'll find that it > solves many management problems.) I wasn't trying to solve any management problems. I see both schemes (project at top vs. trunk/tags/branches at top) as having basically the same mana...
2007 Jun 30
6
[LLVMdev] Repository Layout
All, I'm finding the current layout a bit frustrating, not to mention that it breaks all the documentation. We currently have modules laid out like this: llvm/trunk/... llvm/branches/... llvm/tags/... stacker/trunk/... stacker/branches/... stacker/tags/... and similarly for all the other modules (test-suite, java, poolalloc, etc.). Unfortunately, this "standard"
2006 Feb 01
4
exclude a column in save!
Hi all, I have a column that peeks its value from a sequence (postgres) some times. Other times, I set it to a certain value. This column has a default value of "nextval(''the_sequence'')"... When I want that this column peeks the value from the sequence, I do this: obj = Mymodel.new obj.some_column1 = blah obj.some_column2 = blah obj.some_column3 = blah obj.save! but