24
I Use This!
Very High Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Jun 07, 2024 — Jun 07, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Changed benchmark namespace and fixed enum issue More... over 16 years ago
Benchmarking More... over 16 years ago
Upgraded to protoc.exe 2.0.3. Added new build target of clean-build More... over 16 years ago
Benchmarking, dumping and munging More... over 16 years ago
Adding slicing support for repeated scalar fields and get/delete slice for composite fields. More... over 16 years ago
Move package declaration More... over 16 years ago
Remove ugly bootstrapping - we don't need it now. More... over 16 years ago
Update trunk version to 2.0.4-SNAPSHOT. More... over 16 years ago
Submit script used to post-process dist files. More... over 16 years ago
Support "Solaris 10 using recent Sun Studio". More... over 16 years ago
Add full-system test for custom enum value options. (Previously, only a parsing test in parser_unittest.cc existed.) More... over 16 years ago
* Avoid using pushd/popd in generate_descriptor_proto.sh because they are bash-only features, and /bin/sh is not a symlink to bash on all systems. * If an input file is a Windows absolute path (e.g. "C:\foo\bar.proto") and the import path only contains "." (or contains "." but does not contain the file), protoc incorrectly thought that the file was under ".", because it thought that the path was relative (since it didn't start with a slash). This has been fixed. More... over 16 years ago
Fix call to superclass.__init__() to work on newer versions of Python. More... over 16 years ago
* Update version compatibility stuff -- 2.0.3 is in no way compatible with 2.0.2. * Minor Tru64 fix. More... over 16 years ago
Update CHANGES.txt with stuff from 2.0.3. More... over 16 years ago
Added address book example More... over 16 years ago
Refactor IsInitialized to match Java version More... over 16 years ago
Fix property special-casing More... over 16 years ago
Integrate changes from internal code. More... over 16 years ago
Support HP C++ on Tru64. More... over 16 years ago
New options now work fine. More... over 16 years ago
Refactored options More... over 16 years ago
Fix bugs in zero_copy_stream_impl. More... over 16 years ago
Only build tests when running "make check", not "make". More... over 16 years ago
Fixed alignment issue that caused bus errors on platforms like sparc which require all memory reads to be aligned. Specifically, it turns out that sizeof(RepeatedField<bool>) is 20 on 64-bit sparc with GCC 3.4.6. This is strange, since one of RepeatedField's members is a pointer, which I thought meant that it had to be 64-bit aligned, which means its size should be a multiple of 64 bits. But, 20 is not a multiple of 8. I don't understand why this is the case, but if this is possible, then DynamicMessage's strategy of sorting fields in descending order by size and then tightly packing doesn't work. To fix this, I got rid of the sort step and instead added code that aligns each field's offset appropriately based on the field's size. More... over 16 years ago
Simplify some template usage so that older compilers can handle it. (Users report that MSVC 2003 in particular needs this change.) More... over 16 years ago
Work around GCC 4.3.0 x86_64 compiler bug (seen on Fedora 9). More... over 16 years ago
Replaced copyright notice More... over 16 years ago
Fix bug in GeneratedBuilder.MergeFrom More... over 16 years ago
Fixed bug in GeneratedBuilder.MergeFrom - only fields already set in builder would be merged. More... over 16 years ago