Oliver Mannion
Oliver Mannion
I like the test harness you've proposed above 😍 I too need something that allows both client -> server and server -> client requests to be testable. At the moment...
Here's an MRE ```python from asyncio import Lock from asyncache import cached from cachetools import LRUCache @cached(cache=LRUCache(maxsize=640*1024, getsizeof=len), lock=Lock()) def get_pep(num): ... ``` vscode/pyright will error with: ``` error: Argument...
Hi David, sounds like there's some different use cases here. In my use case the data is relatively static, large, and expensive to generate the whole dataset on the server....
Had this problem when including the bouncy castle classes were packaged up into my uber jar. As mentioned by eyalkaspi, bouncy castle doesn't like this unless the jar is signed....
eg: !SLIDE Line 1 Line 2 Line 3 Will produce an empty slide
@RemcodM @karlkfi How did you go? I'd be happy to test this out if it helps?
Similar to the above, being able to trigger another pipeline and extract meta-data into an environment variable would be really useful to me. Something like ``` - trigger: "api-perf-test" label:...
+1 even just having a list of names of repos that failed at the end, alongside the count, would be helpful
Could the threshold be some percentage of memory, that would leave enough space for background optimizations? Each operation is a batch update with 20 upserts + 20 deletes with a...
This was on a stack that I had created by importing resources. I updated the stack using another tool (parfait). The stack is now in a state that stackit is...