You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 7, 2025. It is now read-only.
During the last FLEDGE call we discussed potential approaches to learning how much time is left from within generateBid before a timeout occurs.
As I understand, exposing an accurate timer would introduce certain privacy risks.
One idea proposed was to allow to query whether "at least 3ms is left". An extension of this idea would be to provide a function getApproxTimeLeft(), which returns a lower bound on time left. A potential implementation could return time left minus some random number, or time left rounded down to a multiple of 5ms. Even a very limited version, where we can learn whether there's "at least 1", "at least 5", "at least 25" would be quite useful already.
I'd be curious to hear if that sounds feasible to you.
Hi,
During the last FLEDGE call we discussed potential approaches to learning how much time is left from within generateBid before a timeout occurs.
As I understand, exposing an accurate timer would introduce certain privacy risks.
One idea proposed was to allow to query whether "at least 3ms is left". An extension of this idea would be to provide a function
getApproxTimeLeft(), which returns a lower bound on time left. A potential implementation could return time left minus some random number, or time left rounded down to a multiple of 5ms. Even a very limited version, where we can learn whether there's "at least 1", "at least 5", "at least 25" would be quite useful already.I'd be curious to hear if that sounds feasible to you.
Best regards,
Jonasz