search for: plann

Displaying 6 results from an estimated 6 matches for "plann".

Did you mean: plain
2012 Oct 30
0
[LLVMdev] Status of YAML IO?
Hi Nick, I had a few questions :- 1) Is there a way to validate that the input file is of a valid format, thats defined by the YAML Reader ? 2) How are you plannning to represent section groups in the YAML ? 3) How are you planning to support Atom specific flags ? Is there a way already ? (This would be needed to group similiar atoms together) 4) Are you planning to support representing shared libraries too in this model ? 5) are you planning to supp...
2004 Sep 03
7
Shorewall as a "commercial" firewall
I am considering replacing my old checkpoint and watchguard firewalls witha single Linux box using iptables and shorewall. I have two ISP''s (with separate routing tables), two DMZ''s, at least one VPN to a remote office, and a local trusted network. The configuration will look like: +----------------+ | | net0 ----------+ eth1
2009 Nov 30
1
cor.test(method = spearman, exact = TRUE) not exact (PR#14095)
Full_Name: David Simcha Version: 2.10 OS: Windows XP Home Submission from: (NULL) (173.3.208.5) > a <- c(1:10) > b <- c(1:10) > cor.test(a, b, method = "spearman", alternative = "greater", exact = TRUE) Spearman's rank correlation rho data: a and b S = 0, p-value < 2.2e-16 alternative hypothesis: true rho is greater than 0 sample estimates:
2012 Oct 30
2
[LLVMdev] Status of YAML IO?
Michael, To validate the refactor of YAML Reader/Writer using YAML I/O. I updated all the test cases to be compatible with YAML I/O. One issue that was a gnarly was how to handle the test cases with archives. Currently, we have test cases like: --- atoms: - name: foo # more stuff --- archive: - name bar.o atoms: - name: bar # more stuff This sort of
2012 Oct 30
2
[LLVMdev] Status of YAML IO?
...o validate that the input file is of a valid format, thats defined by the YAML Reader ? Do you mean different than if the yaml reader accepts it? Tons of files will be valid yaml syntactically. It is the semantic level checking that is hard, and that is what YAML I/O does. > 2) How are you plannning to represent section groups in the YAML ? You mean the ELF concept of section groups in YAML encoded ELF? The YAML encoding of ELF (or COFF or mach-o) does not know anything deeper about the meaning of the files. It is just the bytes from each section and the entries in the symbol table. If...
2012 Oct 30
0
[LLVMdev] Status of YAML IO?
...f the yaml reader accepts it? Tons of > files will be valid yaml syntactically. It is the semantic level > checking that is hard, and that is what YAML I/O does. > Yes, if the YAML reader accepts it and figures out that its not the format what ReaderYAML needs. >> 2) How are you plannning to represent section groups in the YAML ? > You mean the ELF concept of section groups in YAML encoded ELF? The > YAML encoding of ELF (or COFF or mach-o) does not know anything deeper > about the meaning of the files. It is just the bytes from each > section and the entries i...