peakschris

Results 135 comments of peakschris

> I had a similar issue and in the output of `kubectl logs -n ambassador deployment/traffic-manager` there was a message `warning Could not determine DNS ClusterIP`. After `kubectl rollout restart...

We have the same need; our application uses two custom exception types (not derived from std::exception etc) and we need to be able to catch them whenever they are unexpectedly...

We have the same need; our application uses two custom exception types (not derived from std::exception etc) and we need to be able to catch them whenever they are unexpectedly...

Hi all, @samhowes @purkhusid I have been getting rules_dotnet running on our large codebase. We have around 1000 targets successfully building. However, a smaller number based on net48 and involving...

@purkhusid thank you! I've created a repo with two WPF examples in it. If you could have a look at getting it working that would be great. https://github.com/peakschris/rules_dotnet_wpf. Is this...

This can be fixed with these two changes: build_grpc_with_cxx14.patch: ``` diff --git a/bazel/copts.bzl b/bazel/copts.bzl index 10be944f25..879518b92f 100644 --- a/bazel/copts.bzl +++ b/bazel/copts.bzl @@ -59,4 +59,7 @@ GRPC_LLVM_WARNING_FLAGS = [ GRPC_DEFAULT_COPTS =...

Would you be able to upstream this?

Amazing! Thanks :-) I'm also looking at whether we can add the bazel extensions to the conan package, so people using bazel can consume flatbuffers from conan. I'll followup on...

All I've changed in that patch file is to use `/std:c++14` on windows, whilst the default option used is `-std=c++14`. Original patch file: ``` +}) + ["-std=c++14"] ``` Modified patch...

You can use a combination of bazel fetch and bazel vendor to write module repos to a vendor folder. See https://docs.google.com/document/d/1P9WwRvpGLi9Tw-AKN7dZ2AeRmfVsl_-lH-N9g3UkVMI/edit?pli=1#heading=h.ij7l30ek7uph. This seems to be changing rapidly. You may want...