Joshua Haberman

Results 27 issues of Joshua Haberman

I wanted to try this out since I'd love to write asciidoc with Bootstrap styling. I followed the instructions, including cloning the current Bootstrap repo. It appears that Bootstrap has...

I am currently using google/benchmark to benchmark https://github.com/protocolbuffers/upb. I would very much like for those benchmarks to also include memory usage. Does this project support memory benchmarking? The [user guide](https://github.com/google/benchmark/blob/main/docs/user_guide.md)...

enhancement
good first issue

There is a corner case in Ruby and PHP where joining a short-lived message to a long-lived message will prevent the short-lived message from being GC'd. We should clearly document...

ruby
php
documentation
inactive

When I tried uploading the package to NuGet, I got: > We found the following issue(s): > * The element is deprecated. Consider using the element instead. [Learn more](https://aka.ms/deprecateLicenseUrl).

c#
cleanup

I just came across Wren today and it looks very cool. I have been a Lua fan for a while, but I always wished for statically defined classes. I notice...

Hi there, I work on protobufs. I noticed your project is using APIs from `google/protobuf/util/internal`: ``` #include "google/protobuf/util/internal/json_stream_parser.h" #include "google/protobuf/util/internal/object_writer.h" ``` https://github.com/grpc-ecosystem/grpc-httpjson-transcoding/blob/master/src/json_request_translator.cc#L23-L24 These APIs have "internal" in the include path,...

RIght now the Python wheel is including unittest files. We should prune this list so it is only including the actual implementation.

The upb_msg_next() function currently returns extensions iff the `ext_pool` parameter is provided. This may not be necessary; the `upb_symtab` can be derived from the `upb_msgdef`. Do we know of any...

We should poison array memory that has been allocated but not yet added to the array (ie. the delta between `arr->size` and `arr->len`).