Bendegúz Ács
Bendegúz Ács
When trying to build `simple_server.go` (as a dependency of another project), I get the following build errors: ```Stderr: # github.com/NYTimes/gizmo/server ../gizmo/server/simple_server.go:103:2: undefined: prometheus.InstrumentHandlerWithOpts ../gizmo/server/simple_server.go:123:3: undefined: prometheus.InstrumentHandler ../gizmo/server/simple_server.go:123:46: undefined: prometheus.UninstrumentedHandler ```
Thanks a lot for making a contribution to SFML! 🙂 Before you create the pull request, we ask you to check the follow boxes. (For small changes not everything needs...
Thanks a lot for making a contribution to SFML! 🙂 Before you create the pull request, we ask you to check the follow boxes. (For small changes not everything needs...
Currently, the totals are only displayed for each line type. It would be useful to see it for each language as well. For example, this: ``` Language files blank comment...
I'm following the steps described in the README on Windows 10, in git bash, but the last command gives me an error. Here's my full console output: ``` $ git...
This can be useful to preserve the original function's return type. My use case: ``` interface InterfaceWithUnitMethod{ fun unitMethod() } class MyFragment() : Fragment(), InterfaceWithUnitMethod{ override fun unitMethod() = runWithPermissions(...){...
This is needed for the individual ECS tasks to inherit the tags defined for the ECS service, which are the tags that this module takes as input.
### Describe the feature request Similarly to the Java library's [FakeUnleash](https://github.com/Unleash/unleash-client-java/blob/main/src/main/java/io/getunleash/FakeUnleash.java), it would be useful to have an official way to easily mock the UnleashClient of this library. ### Background...
Here's a simple replication: ```kt class SomeTest { object SomeObject { init { Awaitility .await() .atMost(java.time.Duration.ofSeconds(10)) .until { println("in SomeObject::init") true } } } init { Awaitility .await() .atMost(java.time.Duration.ofSeconds(10)) .until...
### Describe the feature Introduce a `rolling_window` macro that allows users to calculate trailing-window aggregates (e.g., 7-day rolling sums) by duplicating fact table rows into the preceding N days and...