James Hu
James Hu
``` java public interface AttemptTimeLimiter { V call(Callable callable) throws Exception; } ``` can be changed to ``` java public interface AttemptTimeLimiter { V call(Callable callable) throws Exception; } ```...
I am just curious, why in 2.0 branch, DateString and BlobString are defined as: ``` export type DateString = string & { __DateBrand: never }; export type BlobString = string...
Background: in Azure there are currently two deployment model - Classic and Resource manager. With 3.3 version, everything is fine if the Azure storage account is in "Classic" model. However,...
I have this use case: - There are multiple variables I want to included in logging - For most of them, they are strings or numbers, so that I am...
It seems that commits with messages like `fix(ABC-123): my message` are ignored while those with messages like `fix(abc-123): my message` are not. Here's the code, I guess instead of "a-z",...
`zx-bulk-release --debug` does not show zx debug info, however `DEBUG=true zx-bulk-release` works. Documentation probably should be updated.
Should `'none'` at line 54 be changed to `null`? Line 39 below is how it is used: Documentation probably can be updated too if `meta: false` is the recommendation:
## Overview TaskCat fails when running in Kubernetes with contained runtime or in GitLab pipeline due to Docker daemon connection errors. ## Testing/Steps taken to ensure quality See issue #798....
### Description Addressing #528 . This change allows a number to be passed to setLogLevel(...) for setting the log level. Also, log level consts are exposed for convenience.
Based on current code, there's no way to disable logging of error level messages. This is my hacky workaround: ``` /** * Suppress or restore Mp4Box error logging * @param...