Displaying 6 results from an estimated 6 matches for "ndrop".
Did you mean:
drop
2025 Apr 07
1
Call for testing: OpenSSH 10.0
...t bbc9c18e84 added a use of time() but didn't include
<time.h>:
sshd.c: In function 'drop_connection':
sshd.c:622:41: error: implicit declaration of function 'time' [-Wimplicit-function-declaration]
622 | ratelimited = log_ratelimit(rl, time(NULL), NULL, &ndropped);
| ^~~~
sshd.c:96:1: note: 'time' is defined in header '<time.h>'; this is probably fixable by adding '#include <time.h>'
95 | #include "atomicio.h"
+++ |+#include <time.h>
96 |
This...
2000 Jun 02
3
graphical parameters in plot
I'm using plot to make a simple plot but I want to control where
the tick marks go on bot axes. The graphical parameters xaxp and
yaxp seem to be ignored by the plot function so I tried setting them
using
op <- par(no.readonly=T)
par(xaxp=c(-2.4,-2.2,5), yaxp=c(-2500,10000,6))
plot(...)
par(op)
but they are still ignored.
Next I tried to use the axis function as follows
op <-
2004 Dec 16
0
[patch] ffmpeg2theora A/V sync
...s_delta = v_pts_delta_new;
+ else
+ v_pts_delta = ((v_pts_smoothness*v_pts_delta + v_pts_delta_new) /
+ (v_pts_smoothness+1.0));
+ framesync = ((v_pts_delta - a_pts_delta) * this->fps);
+ if (framesync < -framesync_thresh)
+ {
+ fprintf (stderr, "\nDropping frame at %.1f: sync off by %.3f frames\n",
+ v_pts_out, framesync);
+ framesync = -1;
+ }
+ else if (framesync > framesync_thresh)
+ {
+ fprintf (stderr, "\nDuplicating frame at %.1f: sync off by %.3f frames\n",
+ v_pts_out, framesync)...
2004 Dec 19
0
[patch] more ffmpeg2theora improvements
...framesync_change) {
+ fprintf (stderr, "\nNo sync adjust at %.1f, sync change %.2f too large\n",
+ v_pts_out, framesync-was_framesync, max_good_framesync_change);
+ frameadjust = 0;
+ }
+ else if (framesync < -framesync_thresh) {
+ fprintf (stderr, "\nDropping frame at %.1f: sync off by %.2f frames\n",
+ v_pts_out, framesync);
+ frameadjust = -1;
+ }
+ else if (framesync > framesync_thresh) {
+ fprintf (stderr, "\nDuplicating frame at %.1f: sync off by %.2f frames\n",
+ v_pts_out, framesync);...
2005 Nov 04
19
Drag & Scroll
...you move the mouse off the page. This makes it very difficult, if not impossible to create certain types of web applications.
I know this has been mentioned before and is on the Wish List, but it''s very frustrating.
If you look at this other Javascript library called "Drag''nDrop & DHTML Library" here:
http://www.walterzorn.com/dragdrop/dragdrop_e.htm
...you''ll notice that his implements the window scrolling when you drag elements around.
Is this maybe a Prototype issue? I know that OpenRico has the same problem.
Thanks.
--
__________________________...
2025 Apr 01
9
Call for testing: OpenSSH 10.0
Hi all.
OpenSSH 10.0p1 is almost ready for release, so we would appreciate testing
on as many platforms and systems as possible. This is primarily a bugfix
release, although one notable change is the introduction of the sshd-auth
binary (see below).
Snapshot releases for portable OpenSSH are available from
http://www.mindrot.org/openssh_snap/
The OpenBSD version is available in CVS HEAD: