Jesse Schalken
Jesse Schalken
@sgowroji Thanks. I've merged master but I am yet to fix the Windows test failures (I'm still trying to get them to pass locally on master). Hoping someone beats me...
I think this was fixed in https://github.com/grpc/grpc-kotlin/pull/327 and https://github.com/grpc/grpc-kotlin/pull/340
It just occurred to me - why is `emitBody()` converting the stream to a string in the first place? Isn't the whole point of a stream that it can be...
Doesn't everybody "need" their exceptions not to be ignored? Isn't that why they throw exceptions?
As an alternative to building `gdb` with the above patch by @DCNick3, downgrading `gdb` and `gdbserver` to 9.2 (from Ubuntu 20.10, for example) and pointing CLion at `/usr/bin/gdb` instead of...
If it's any help the code for this is here: https://github.com/bazelbuild/intellij/blob/e8fa25e29f338c6e089fccec8dfcfe50f3c37971/java/src/com/google/idea/blaze/java/sync/source/JavaSourcePackageReader.java#L66-L71 which is used used here: https://github.com/bazelbuild/intellij/blob/f894c76e3f492cf9322a9142b43fc0cf2526b39f/java/src/com/google/idea/blaze/java/sync/source/SourceDirectoryCalculator.java#L102-L106 It's just grabbing the first line that looks like `package ...` and using...
It might be useful to document how this can be used to target multiple platforms. Example: ```python # WORKSPACE load("@rules_python//python:pip.bzl", "pip_parse") load("@python3_10//:defs.bzl", "interpreter") # Repeat for each supported target platform...
@schultetwin I didn't know about #510 and I don't have a strong preference between either PR. It would be nice if there was a properly supported cross-build workflow like #510...
Put in `~/.gdbinit` ``` set auto-load local-gdbinit on add-auto-load-safe-path / ``` Then put in `.gdbinit` in your repo root ``` directory . directory bazel-tensorflow ``` The two `directory` lines might...
@Arsenal591 I had this issue and it was because of this error during sync:  Which was specifically caused by this line: https://github.com/bazelbuild/intellij/blob/f894c76e3f492cf9322a9142b43fc0cf2526b39f/cpp/src/com/google/idea/blaze/cpp/CompilerVersionCheckerImpl.java#L32-L34 The issue was that the path is...