- 07 Jun, 2015 1 commit
-
-
Amol Deshpande authored
-
- 28 May, 2015 1 commit
-
-
Wouter van Oortmerssen authored
-
- 27 May, 2015 3 commits
-
-
Wouter van Oortmerssen authored
Normal behavior is to not output fields that happen to have the default value, since those will be reproduced anyway when turned into a FlatBuffer binary. This however can be problematic when using JSON to interop with other system since they might not know this default value. This flatc option (and also flag to GenerateText) will force those fields to be output anyway. Tested: on Linux.
-
Wouter van Oortmerssen authored
-
Wouter van Oortmerssen authored
Change-Id: Ib2b7aa8a5641cf73fa0d6f2000db7fdd1aabab66 Tested: on Linux.
-
- 20 May, 2015 10 commits
-
-
Wouter van Oortmerssen authored
Change-Id: I290c33c475f7b019ab0d3c571245d27351d22fa1 Tested: on Linux.
-
Wouter van Oortmerssen authored
Change-Id: Iea5fab66047ac0a5057a743dbb1fdb27c063188c Tested: on Linux.
-
Wouter van Oortmerssen authored
Change-Id: Id268e35de207c25c809a09071b81eea873c9123e Tested: on Linux.
-
gwvo authored
Add include for cstdlib for std::bsearch definition
-
Zach Reizner authored
-
Robert authored
Go: CreateString now needs zero allocs.
-
rw authored
-
rw authored
-
rw authored
Big speed boost for the typical use case of building with strings.
-
gwvo authored
Fixed endianness Vector's begin() and end()
-
- 19 May, 2015 2 commits
-
-
gwvo authored
Use std::bsearch in LookupByKey for binary search
-
Zach Reizner authored
-
- 18 May, 2015 1 commit
-
-
gwvo authored
Update Python docs and package description
-
- 15 May, 2015 2 commits
- 14 May, 2015 2 commits
-
-
Wouter van Oortmerssen authored
-
Wouter van Oortmerssen authored
-
- 13 May, 2015 4 commits
-
-
Robert authored
Port FlatBuffers to Python.
-
rw authored
-
rw authored
-
Raphael Zulliger authored
-
- 12 May, 2015 2 commits
-
-
rw authored
Implement code generation and self-contained runtime library for Python. The test suite verifies: - Correctness of generated Python code by comparing output to that of the other language ports. - The exact bytes in the Builder buffer during many scenarios. - Vtable deduplication correctness. - Edge cases for table construction, via a fuzzer derived from the Go implementation. - All code is simultaneously valid in Python 2.6, 2.7, and 3.4. The test suite includes benchmarks for: - Building 'gold' data. - Parsing 'gold' data. - Deduplicating vtables. All tests pass on this author's system for the following Python implementations: - CPython 2.6.7 - CPython 2.7.8 - CPython 3.4.2 - PyPy 2.5.0 (CPython 2.7.8 compatible)
-
Robert authored
Go speed improvements
-
- 11 May, 2015 4 commits
-
-
gwvo authored
Issue #188
-
gwvo authored
Added a default constructor for Java's FlatBufferBuilder.
-
Wouter van Oortmerssen authored
Change-Id: Ib561430b235eddf4bfe20f68409e1dfdb359ef2b Tested: on Linux.
-
Jean-Baptiste "Jiboo" Lepesme authored
Default's size of 1024b like in cpp. Fixes #190.
-
- 09 May, 2015 5 commits
- 08 May, 2015 3 commits
-
-
Mormegil authored
When accessing a union field, we should return the same object type as was given to the method, i.e. the parameter should have a generic type for any Table-derived type. This way, we do not need to make superfluous casts (which also reduce type safety) like var myUnionType = (MyUnionType)buff.GetUnionField(new MyUnionType()); when we can do just var myUnionType = buff.GetUnionField(new MyUnionType()); Change-Id: Idac1b638e46cc50b1f2dc19f10741481202b1515
-
pjulien authored
Change-Id: I17a7896e257c0ab7e4cd1b22c928d4cee21fbf11
-
pjulien authored
Allows adding an already encoded UTF-8 string directly without having to convert to a ``String`` first. Change-Id: I23f9c738eec18fd35f4c14f58dbd0f6cf0970dc7
-