Paul Cody Johnston

Results 60 issues of Paul Cody Johnston

It would be nice to support the following: ```ts task("namer", [], function() { return "world!"; }); task("greet", ["namer"], function(named: any) { console.log("Hello,", named); }); ``` So, the return value of...

The plugin maps proto filenames to python module names in a predicable manner according to [_type_names](https://github.com/vmagamedov/grpclib/blob/50742efdf2c2a14ba66c736dd6d1a9cc4bf6f467/grpclib/plugin/main.py#L183) and other functions. This results in import statements like: ```py from google.protobuf.descriptor_pb2 import FileDescriptorProto,...

This experimental PR adds support for handling `GET` requests on the server. See https://github.com/improbable-eng/grpc-web/issues/897 for context.

size/M

The docker CLI has a `--config` flag that allows one to specify an alternate location for the docker config directory. I am primarily interested in implementing push/pull basic auth support...

``` $ (cd $(mktemp -d); GO111MODULE=on go get github.com/google/gops/@v0.3.21) ``` ``` $ ~/go/bin/gops panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x38 pc=0x410df6e]...

While building a bazel test rule for api-linter, encountered this panic: ```go panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x20 pc=0x130f0e7] goroutine...

type: bug

Adds `field_behavior.proto` to the proto_repository golden test. This exposed a bug whereby the global resolver was not being populated for imports of merged rules.

on v2_prerelease branch: ```python for f in info.outputs: print("checking info", f.path) dsts.append(f.short_path) path = f.short_path.split(ctx.attr.original_label_name + "_")[0] file = f.short_path[f.short_path.rfind("/") + 1:] # srcs.append(path + file) srcs.append(f.basename) # srcs.append(ctx.label.package +...