David B
David B
The status of the launchpad bug is a bit confusing to me--the janitor reported back in May that it was fixed in 5.3/5.4, comments suggest the fix caused other issues...
Alright. A big part of my CRIU usage is on google cloud, so I went ahead and created some clean ubuntu images with latest stable docker from the download.docker repo,...
No problem at all, thanks for following up on launchpad. I'm keeping my work on xenial to avoid manually blocking kernel updates, but I'll keep these instances around to retry...
Just wanted to drop by again since launchpad is again confusing. There's another fix-released comment, but still "confirmed" status for focal and "won't fix" for eoan. The two most recent...
Understood, just wanted to follow up since there was a new janitor post and you had said previously that you didn't have an easy way of testing it. I'll still...
update for checkpoint creation on google cloud images: I ran ``` docker run --security-opt=seccomp:unconfined --name cr -d busybox /bin/sh -c 'i=0; while true; do echo $i; i=$(expr $i + 1);...
@vmatare I'm not personally affected by this (the fan in my T430 never gets to zero...), but came here via a reddit post about this issue. The user claims that...
The CreateFcn hook above did not quite work. In a case where I was repeatedly resetting/reusing the same figure handle (calling clf) and had a separate CreateFcn already present, I...
One last edit...the above missed recreating the function handle for single-CreateFcn cases in reused figures. ``` createfcn = get(figh, 'CreateFcn'); ff = @(src,evt)resetListeners(src,evt, hg2flag, Lf,hnew); if isempty(createfcn) set(figh, 'CreateFcn', ff);...
Hi again...two more scenarios. If there is more than one legendflex in a figure, my kludge only worked for the most recently added, and, regardless of the number of legends,...