Jesper Findahl

Results 55 comments of Jesper Findahl

nice! That could be a good idea to use a skewed scale since you mostly care about differentiating which files are stable and which are actively being worked on. d3.js...

just tried with `--cookies ...` and get the same error. Not sure exactly what "cookies exported from your logged-in browser session" means. We should copy them from the browser and...

Thanks for the fast reply! Tried now with the downloaded cookies and I get the same(?) error as in the initial report. I tried both with `--username` and `--netrc`. I...

Ah I see. Makes sense. Tried again and now the error is different (so it seems authentication works?). ```bash [debug] Command-line config: ['--cookies', './cookies.txt', '-v', 'https://www.hotstar.com/ca/movies/laxmii/1260036200/watch'] [debug] Encodings: locale UTF-8,...

Oh! I was trying around different solutions and didn't realize that I was using `yt-dlp`... just tried again with `youtube-dl` and have the error still. I'll then take this issue...

I suggest that we put individual `Lock`s for each test/experiment ID. See [Lock](https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/locks/Lock.html). These `Lock`s can be stored in a [ConcurrentHashMap](https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentHashMap.html) for each class. ```{Java} ConcurrentHashMap lockMap = new ConcurrentHashMap();...

I also looked at the guava `Striped` class, but since it is in beta I don't think we should use it. Good point about only locking for write and just...

ok - if you think it is alright. The only place where we keep the references to the test/experiment IDs is in the controllers. We need to ensure that these...

If I understand your questions correctly: `ConcurrentHashMap` does provide atomic access to the values. Since we are not changing the lock objects I think it is fine. We can have...

For `PAUSED` we still need to keep the lock in the map. The issue you describe I think can be solved by checking that the state is not `TERMINATED` after...