Daniel Silva

Results 25 issues of Daniel Silva

It might be helpful to document in the readme how this project relates to https://github.com/bazelbuild/bazel/blob/master/tools/build_defs/repo/maven_rules.bzl -- is it a replacement or does it augment that other one?

Hi, Now that Amazon released a Java DSL for CloudFormation ([AWS CDK](https://github.com/awslabs/aws-cdk)), do you plan on continuing to base cloudformal on the CF API or will it eventually become a...

Both `DefaultAsyncHttpClient` and `ChannelManager` call `config.getThreadFactory`, but when the result is null, `DefaultAsyncHttpClient` instantiates a `DefaultThreadFactory` with the pool name `config.getThreadPoolName() + "-timer"` while `ChannelManager` instantiates that same factory with...

Contributions Welcome!

Since the Logger class just delegates to an underlying slf4j logger, should it be a declared as a value class? Would it help with memory usage (fewer wrapper objects), startup...

question

Say you have a gradle project with both scala and java sources (both scala and java plugins applied), and with extra compiler flags for your java code: ``` testCompile.options.compilerArgs

According to https://github.com/uber/okbuck/issues/28 okbuck honors java compiler flags, but when I tried with Scala flags in `scalaCompileOptions.additionalParameters`, they didn't seem to take effect. Are they not supported?

I have scala targets that rely on `dependency_mode = "plus-one"` to compile. For example, one target depends on circe-derivation and uses the deriveEncoder macro from it, which expands to a...

I have an API where the Create operation consumes a resource without an ID field (the server generates it) and where every operation returns that same resource with an ID...

bug
scala

Hi, I have a swagger spec where the definitions include inheritance like this minimal example: ```yaml --- swagger: "2.0" info: version: "1.0.1" basePath: "/v1" paths: definitions: A: type: "object" B:...

bug
help wanted
scala
good first issue

What's the recommended way to have two different APIs share some data definitions with Guardrail? Swagger allows extracting definitions into their own files and referencing them with `$ref`. For multiple...

enhancement
help wanted