search for: heirarchy

Displaying 20 results from an estimated 93 matches for "heirarchy".

2007 Dec 22
1
Help with complicated heirarchy exclude syntax
I want rsync to do this: Backup all files under ~/, except in some cases. When rsync gets to ~/News, which has an extensive, fluctuating and deep heirarchy of directories under it. An example might be: News/agent/nntp/news.gmane.org/gmane/comp/lang/perl/beginners/ I want to skip any files that have all numbers for names which would be under the last directory above. However there are at least 2 files in there (.overview .agentview) that I do wan...
2009 Oct 12
1
[LLVMdev] [PATCH] docs/WritingAnLLVMPass.html: s/heirarchy/hierarchy/
Hi, attached patch fixes an obvious typo in docs/WritingAnLLVMPass.html. best regards, Timo Lindfors -------------- next part -------------- A non-text attachment was scrubbed... Name: llvm-docs-writing-pass-typo1.patch Type: text/x-diff Size: 407 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091012/27de943d/attachment.patch>
2006 Jun 16
1
sortable acts_as_tree with heirarchy
I''ve been stumbling on the tut at oriontransfer (http://wiki.oriontransfer.co.nz/main/show/SortableTree) I''ve got it working in a one dimensional list and I''ve got the drag and drop working on children, but as can''t get it to save the tree. Here''s my view: <h2>Menu Prototype 2</h2> <%= flash[:notice] %> <ul
2016 Mar 05
2
GSOC-2016 Project : Clustering of search results
Hello devs, I am Richhiey Thomas, pursuing my third year of undergraduate studies in Computer Science from Mumbai University. I had gone through the project list for this year and the project idea based on clustering caught my attention. I spoke to Assem Chelli on IRC who guided me to the code and got me started. I started going through the code and have successfully built Xapian on my machine.
2006 Jul 20
2
DESCRIPTION and PACKAGES files.
Greetings; I'm working on translating the heirarchy of R packages into the Gentoo Ebuild environment, currently working from a 2.3.1 install. There are several data which it would be nice to see provided alongside the existing output of available.packages; at the moment I think I'm going to have to get License and SystemRequirements out of indi...
2009 May 19
2
incremental directory searche in rsync 3.0.6
...r in file IO (code 11) at main.c(576) [receiver=3.0.6] rsync: connection unexpectedly closed (9 bytes received so far) [sender] rsync error: error in rsync protocol data stream (code 12) at io.c(600) [sender=3.0.6] I want rsync to create "/mytest/rsync-test/dir-test/parent-dir/" directory heirarchy at destination. I also tried with --relative and --no-implied-dirs/--implied-dirs but no luck. Jignesh -------------- next part -------------- HTML attachment scrubbed and removed
2009 May 20
2
Example for parsing XML file?
...ld point me in the right direction to a resource (preferably with an example or two), it would be greatly appreciated. Here is a snippet from one of the XML files that I am looking to read, and I am aiming to be able to get it into a data frame with columns N, T, A, B, C as in the 2nd level of the heirarchy. <?xml version="1.0" encoding="utf-8" ?> - <C S="UnitA" D="1/3/2007" C="24745" F="24648"> <T N="1" T="9:30:13 AM" A="30.05" B="29.85" C="30.05" /> <T N="2&q...
2006 Apr 20
1
Fun and games with newhidups, udev rules and permissions
Thought I would write some notes about how I got an APC BackUPS XS 1500 working with newhidups under Gentoo 2006.0. The specific issue here is the permissions on the device files used that libusb uses to access the USB hardware. I followed Peter Selinger's instructions at http://www.mscs.dal.ca/~selinger/ups/backups.html on getting newhidups going with an APC device. The sticking point for
2007 Oct 04
1
Subscribe to root of Maildir namespace?
...p/dovecot/%u.a-thumper-mail } I can set up subfolders of archive/, and they work as expected. I can also designate the "root" of archive/ as INBOX and that works properly. But "SUBSCRIBE archive" fails. Is it possible to subscribe to the "root" of this new Maildir heirarchy as if it were just another folder? If not, would this be a useful feature to add? Thanks, -- Adam Tilghman | Systems Support / Academic Computing | +1 858 822 0711 agt at ucsd.edu | University of California, San Diego | fax +1 858 534 7018
2006 Feb 27
1
How to build a recursive parenting structure?
...is create a site that has "sections" each section then could have a sub "section". So I built a "sections" table and in the model I included the line "has_and_belongs_to_many :sections" I also made a table called "sections_sections" to build the heirarchy however the fields I generated were: CREATE TABLE `sections_sections` ( `section_id` INT( 10 ) UNSIGNED NOT NULL, `parent_id` INT( 10 ) UNSIGNED NOT NULL , constraint fk_parents foreign key (parent_id) references sections(id), constraint fk_sections foreign key (section_id) references sectio...
2004 Nov 17
1
IMAP - many folders?
Hi, I've been reading the list and it seems the answer to my (soon to be asked question) is no, at least with 0.99, but I'll ask to be sure. I have following setup: new mail goes to ~/Mail/Maildir, except for mailing lists which are moved by procmail to ~/Mail/mailing_lists/name, spam which goes to ~/Mail/spam. Read mail is moved by mutt to ~/Mail/read. Everything is in maildir format.
2008 Apr 22
2
[LLVMdev] The source code Makefile (newbie with pass registering Problem)
...m in the Makefile of my source code. But I don't know where. Could you please verify it? The Makefile is written like this: # Makefile for Genetic Algorithm Pass CXXFLAGS = -Wall -I/iss/fpga3/nicole/galib247/ LDFLAGS= -L/iss/fpga3/nicole/galib247/ga/ -lga -Wl,-E # Path to top level of LLVM heirarchy LEVEL=../../../ # Name of the library to build LIBRARYNAME = gascheduling # Make the shared library become a loadable module so the tools can # dlopen/dlsym on the resulting library. # LOADABLE_MODULE = 1 # USEDLIBS=ga.a # Tell the build system which LLVM libraries your pass needs. You'll pr...
2009 Jul 17
2
[LLVMdev] LLVM Hello Pass load error when using opt -load Hello.so
...) { llvm::cerr << "Hello: " << F.getName() << "\n"; return false; } }; char Hello::ID = 0; RegisterPass<Hello> X("hello", "Hello World Pass"); } Makefile: # Makefile for hello pass # Path to top level of LLVM heirarchy LEVEL = . # Name of the library to build LIBRARYNAME = Hello # Make the shared library become a loadable module so the tools can # dlopen/dlsym on the resulting library. LOADABLE_MODULE = 1 # Tell the build system which LLVM libraries your pass needs. You'll probably # need at least LLVMSys...
2007 Dec 30
1
bi monthly based Mail/News backup scheme
...rs. jan-feb-mar-apr/ may-jun-jul-aug/ sep-oct-nov-dec/ So the problem as I see it is that the src spools continue to accrue on the new end and expire on the old with about 5000 message que or holding period (works out to close to 1 mnth). So when a changover occurs, since the new top level heirarchy has nothing for rsync to find as `uptodate', it copies over whatever is on the src spool which will include a massive amount of overlap. I guess what I'd like to do is redirect the actual destination but make rsync look at the old destination to determine what is uptodate for some period....
2006 Mar 16
4
Table Relationships Problems.
I have the following tables setup: locations :id :name systemmessages :id :name systemmessage_validtimes :id :name :systemmessage_id :location_id :start :end The systemmessage_validtimes has a ''has_many'' relationship with systemmessages, meaning that there could be many valid times for each system message. @systemMessage = Systemmessage.find(1) E.g. I
2007 Nov 05
5
xtable.by
...I want to summarize in tables via LaTeX. Ideally I'd like a table similar to this ( http://www.andy-roberts.net/misc/latex/tutorial4/multirow.png ) with mean/SD of the measurement broken down by road type (both surface and capacity). Ideally it would be extensible so that when I add layers of heirarchy on top the complexity does not increase exponentially (e.g. measurement by road surface/capacity by month by neighborhood), but rather take those additional levels as arguments. xtable() is a wonderful thing, but it seems to lack a method for displaying the results broken down by a factor as in th...
2011 Oct 05
2
[LLVMdev] collect end line number for scope
...nd the information shared was helpful.   I will make my problem definition more clear. While I am "asm printing" target code, I also want to emit scope related information. Scope related information includes, - for each scope, start line, end line, start column, end column and - scope heirarchy. As scope is delimited by "{" and "}" (for an input C/C++ code), hence wanted to collect "endline" for scope. When I went through the ".ll" emitted by llc, i could find the "startline" in metadata.   For this I could think of 2 approaches 1. Crea...
2008 Jan 23
5
Changing rspec directory structure
.../models /controllers etc. Basically the Jay Fields style of testing -- I want the unit tests to be run all the time on a continuous integration server, but the integration/functional and system tests to be run only once a night. How do I break out the rspec tasks so that they cover this heirarchy? It looks like they''ll take a pattern, but I don''t want to have to redefine every rake task just to specify this. Also, anyone know how hard this would be to maintain? Or if there''s an easier way to organize this? Will.
2005 May 08
3
[OT] Linux Development Environment - suggestions
Hey, sorry for the off topic email, but I appreciate any feedback you guys can give me. I just put together a new box and installed Ubuntu linux on it. I''m coming from a totally windows environment, so I''m having some trouble getting my head around the linux file system and where things "should" go. I am trying to create a nice development environment for myself
2007 Mar 03
1
Error handling in the bindings
...dError:'): # Handle a DocNotFoundError (Incidentally, the error raised in python for this actually is a RuntimeError, not an IOError as I would have expected from reading the SWIG code, but that's not a major issue.) For Python, it would be much nicer to have the full exception heirarchy of Xapian mirrored as Python classes, with the appropriate inheritance structure. This is probably true for other languages too. Looking at the code, I don't think it would take terribly long to sort this out for Python, but I haven't looked at what's needed for the other bindings...