search for: dumper

Displaying 20 results from an estimated 334 matches for "dumper".

Did you mean: dumped
2006 Mar 15
2
ruby data dumper?
Coming from the perl world to ruby, I was wondering if there was anything like data::dumper perl module for ruby/rails? @thing.inspect or dump(@thing) works, but isn''t formatted all as nice. thx :-) -- Posted via http://www.ruby-forum.com/.
2013 May 29
0
CEBA-2013:0838 CentOS 6 perl-XML-Dumper FASTTRACK Update
...nd Bugfix Advisory 2013:0838 Upstream details at : https://rhn.redhat.com/errata/RHBA-2013-0838.html The following updated files have been uploaded and are currently syncing to the mirrors: ( sha256sum Filename ) i386: 8019a34dc00a2c522b60c8bcfaea4432f3b49b3ea47d308bf789c191d5783b9d perl-XML-Dumper-0.81-8.el6.noarch.rpm x86_64: 8019a34dc00a2c522b60c8bcfaea4432f3b49b3ea47d308bf789c191d5783b9d perl-XML-Dumper-0.81-8.el6.noarch.rpm Source: 4202e12345532e85b11b5bf041fd447305a08a038864aa72aed78aa87a33099d perl-XML-Dumper-0.81-8.el6.src.rpm -- Johnny Hughes CentOS Project { http://www.cento...
2008 Oct 08
5
schema.dump chokes on RAW type
I haven''t seen anyone mention this yet. The tail end of the migration process is a call to schema.dump. Our primary keys are uuids and these choke schema.dump on both oracle and postgres. The latter fails silently (skips three tables) while the former complains about the RAW(16) in each of the three tables. Anyone had a similar experience? -- Posted via http://www.ruby-forum.com/.
2006 Feb 25
0
Dumper, mySQL adapter and TIMESTAMP ... something strange ?
...using DATETIME instead of TIMESTAMP, I can''t understand why we''re generating some invalid mySQL command here. Looking at the mysql_adapter, it seems that the native database type :datetime, is defined as: :datetime => { :name => "datetime" }, and that the dumper choose whether it should add the :limit bit, based on: tbl.print ", :limit => #{column.limit.inspect}" if column.limit !=@types[column.type][:limit] Wouldn''t it make sense here to add something like the possibility to have ''no limit'': tbl.print ", :li...
2008 Mar 04
2
FYI: RAM dumper
Hi, http://mcgrewsecurity.com/projects/msramdmp a com32 for dumping RAM... Tru
2006 Jan 20
0
How to install the Foreign Key Schema Dumper Plugin
I don''t know how to install it. Does it support to generate foreign_key_constraint when I execute db_schema_dump? thanks.
2005 Dec 24
2
Variable dumper
Hi there, I am newbie both in Ruby and in Rails. My experience is mostly PHP. In PHP, there is a var_dump($mixed) function that dumps the object $mixed to std_out. This is helpful to see the curent value of a variable, of if it is an object, everything that is in the object. Is there an equivalent methods in RoR? Thanks, Ezra -- Posted via http://www.ruby-forum.com/.
2013 Jan 18
7
[LLVMdev] RFC: Improving our DWARF (and ELF) emission testing capabilities
...ge, I propose to adopt some external tool that parses DWARF and emits decoded textual dumps which makes tests easy to write. Concretely, I have a pure Python library named pyelftools (https://bitbucket.org/eliben/pyelftools) which provides comprehensive ELF and DWARF parsing capabilities and has a dumper that's fully compatible with the readelf command. Using pyelftools would allow us to immediately improve the quality of our tests, and as lib/DebugInfo matures llvm-dwarfdump can gradually replace the dumper without changing the actual tests. pyelftools is relatively widely used so it's we...
2013 Jan 18
0
[LLVMdev] RFC: Improving our DWARF (and ELF) emission testing capabilities
...xternal tool > that parses DWARF and emits decoded textual dumps which makes tests > easy to write. > > Concretely, I have a pure Python library named pyelftools > (https://bitbucket.org/eliben/pyelftools) which provides comprehensive > ELF and DWARF parsing capabilities and has a dumper that's fully > compatible with the readelf command. Using pyelftools would allow us > to immediately improve the quality of our tests, and as lib/DebugInfo > matures llvm-dwarfdump can gradually replace the dumper without > changing the actual tests. > > pyelftools is relative...
2009 Dec 02
5
Inquiry:How to compare two files but not in line-by-line basis?
Dear All Can you please do me favor and let me know how can I compare two files but not in line-by-line basis on my CentOS server ? I mean say row#1 in file1 has the same data as say row#5 in file2 , but the comm compares them in line-by-line basis that is not intended . It seems that the diff cannot do the job as well . Thank you in advance -------------- next part -------------- An HTML
2020 Apr 22
2
Debug symbols are missing in elf
...that DW_AT_name is always (indirect string, offset: 0x0): clang > > version 8.0.1, instead of variable names. > > That symptom suggests that relocations from .debug_info to .debug_str > are not being handled correctly. Either your backend is not emitting > them correctly, or the dumper does not know what to do with them. > > If you are able to dump the .rela.debug_info section and it looks > reasonable, the fault is most likely with the dumper. If you are > using llvm-dwarfdump then that should not be hard to solve. > --paulr > Hi Paulr, Thanks for the reply. &...
2015 Sep 09
2
custom ValueRangeProcessor in Perl?
...::Search::DateVRP1; use strict; use warnings; use base 'Search::Xapian::NumberValueRangeProcessor'; sub new { my ($class, @args) = @_; Search::Xapian::NumberValueRangeProcessor::new($class, @args); } # doesn't seem to get called sub process_value_range { use Data::Dumper; print STDERR "PVR called ", Dumper(\@_); 1; } 1; # Try 2 without subclassing package PublicInbox::Search::DateVRP2; use strict; use warnings; sub new { my ($class, @args) = @_; my $s = 1; bless \$s, $class; } # doesn't seem to get called sub process_val...
2008 Jun 05
23
unit test question
In development and production, I''ve got postgresql constraints that prevent deleting a CaseManager if there is a Client that belongs to that CaseManager. In unit tests...and obviously in my testing db, those restrictions don''t get added. Is it wrong to test for deleting dependent records in unit tests? Craig --~--~---------~--~----~------------~-------~--~----~ You received
2017 Jun 02
2
[RFC][ThinLTO] llvm-dis ThinLTO summary dump format
...n't it be better to extend that to cover >>> the entire summary? >>> >> >> IMO it is useful/convenient to be able to see the summary in the llvm-dis >> output. >> > > There are two things: > 1) the format of the summary > 2) where to add the dumper > I'm not too concerned about 2 (I wouldn't add it to llvm-dis, but rather > as a subcommand to llvm-lto2, but I don't have a strong opinion about that). > > So that leaves the text based summary format. We need a format that is > easily parseable so that we can test comp...
2013 Jan 18
0
[LLVMdev] RFC: Improving our DWARF (and ELF) emission testing capabilities
...xternal tool > that parses DWARF and emits decoded textual dumps which makes tests > easy to write. > > Concretely, I have a pure Python library named pyelftools > (https://bitbucket.org/eliben/pyelftools) which provides comprehensive > ELF and DWARF parsing capabilities and has a dumper that's fully > compatible with the readelf command. Using pyelftools would allow us > to immediately improve the quality of our tests, and as lib/DebugInfo > matures llvm-dwarfdump can gradually replace the dumper without > changing the actual tests. I would be a little hesitant ab...
2010 May 29
1
[LLVMdev] python usage for test cases
I have written a python based COFF object file dumper for use in automated testing. I followed the lead for the MachO test cases. Some concerned was expressed with putting a dependency on python into LLVM. I was wondering what way I should go on this one? Aaron has a C++ COFF dumper available that could be used also. - Nathan -------------- next part...
2018 Sep 20
2
[lldb-dev] [LLD] How to get rid of debug info of sections deleted by garbage collector
...rrectly (e.g. reference from an inlined-subprogram to its abstract instance) but it didn't seem like the problems were insurmountable. The ultimate design almost certainly requires agreement about what the ELF pieces should look like, and a description in the DWARF spec so that consumers (e.g. dumpers) of the .o files would understand about the fragmented sections. And then the linkers and dumpers have to be modified to implement it all. :-) Even without gc-sections, there is duplicate info to get rid of: everything that ends up in a COMDAT, like template instantiations and inline functions....
2020 Apr 23
2
Debug symbols are missing in elf
...offset: 0x0): clang >> > > version 8.0.1, instead of variable names. >> > >> > That symptom suggests that relocations from .debug_info to .debug_str >> > are not being handled correctly. Either your backend is not emitting >> > them correctly, or the dumper does not know what to do with them. >> > >> > If you are able to dump the .rela.debug_info section and it looks >> > reasonable, the fault is most likely with the dumper. If you are >> > using llvm-dwarfdump then that should not be hard to solve. >> > -...
2013 Nov 20
2
[LLVMdev] Adding line table debug information to LLVM on Windows
...ump the info. I realize this is likely a very large > >> undertaking as well, but it seems like the only way to ensure we're > >> getting some decent testing out. > > > > As you can see from my patch, I actually succeeded in writing *some* > > tests without a dumper - just by using the MCAsmStreamer. > > Do you think we should really write a dumper too? > > That's kinda hard and we don't plan to fully support the CodeView format > yet... > > I tried my patch on Chromium and it hit the llvm_unreachable I wrote > in WinCOFFStreame...
2017 Jun 03
2
[RFC][ThinLTO] llvm-dis ThinLTO summary dump format
...ering requires to use another tool than >> llvm-as, so be it). >> > > I don't disagree with these points. I was the one who suggested that > Charles implement this as a learning experience for his ThinLTO GSoC > project, because I have long wanted a simple human-readable dumper for the > summaries. I knew about the YAML support Peter added for the type test > summaries, but thought that was largely geared towards testing while those > summaries weren't automatically generated from the IR. It sounds reasonable > to have a single format, and so doing the dum...