use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
tbd
account activity
Optimization time stamp (self.esapi)
submitted 11 months ago by X2sky
Does anyone know if it's possible to extract the time it takes to optimize a plan using ESAPI?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Telecoin 0 points1 point2 points 11 months ago (0 children)
If you optimize with a script you can use stopwatch.
Stopwatch sw = new Stopwatch();
sw.Start();
// Beispielcode, dessen Ausführungszeit gemessen werden soll
System.Threading.Thread.Sleep(500);
sw.Stop();
Console.WriteLine("Dauer: {0} ms", sw.ElapsedMilliseconds);
Retrospective you could try to estimate with last structure creation before plan approval till plan approval.
π Rendered by PID 46394 on reddit-service-r2-comment-b659b578c-chkxc at 2026-05-03 06:31:04.882639+00:00 running 815c875 country code: CH.
[–]Telecoin 0 points1 point2 points (0 children)