Axel Huebl

Results 1611 comments of Axel Huebl

Fixed the title, thanks for the clarification! Should we start with adding asserts, so people do not use it wrong as it is right now?

Blocked now by EVPath: https://github.com/ornladios/ADIOS2/issues/4105#issuecomment-2594746944

Wouldn't "non-blocking collective" be the right description for our `.flush()`? (like [MPI_IBarrier](https://www.mpich.org/static/docs/v3.3/www3/MPI_Ibarrier.html)) I think we just do not have as MPI has a "corresponding completion operation" (test/wait). (We kind of...

> coherent data declaration Or maybe even simpler: _consistent_ data declaration?

We deploy using our own Docker image, which in the end runs a line like: ```dockerfile CMD ["python", "app.py", "--port", "8080", "--host", "0.0.0.0", "--server", \ "--parameter", "/some/path/file.yaml"] ``` Everything works...

The error message in detail is this. I marked the `:[email protected]` out due to credentials. # Firefox ![Image](https://github.com/user-attachments/assets/a8945657-5e3c-4e09-bf4a-22793e5e00ff) # Chrome Works

This is what I found: - https://bugzilla.mozilla.org/show_bug.cgi?id=1195820 - https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Releases/43#miscellaneous I think one has to strip the user:password from the URI for resources that Trame loads and put them into a...

Thank you for the hints! > Side note, in your docker, you should probably provide the --timeout 0 or something so the docker don't exit after 5 minutes when nobody...

> Also you can setup an `--authKey arg` to prevent random person to connect. Which is what you are trying to do with the basic authentication. Oh, that is good...