Displaying 10 results from an estimated 10 matches for "ftd".
Did you mean:
fd
2012 Feb 21
1
prior.weights and weights()
...)) ## 5
length(g$prior.weights) ## 2
poisson()$simulate(g,1) ## fails
## here's a new, 'safe' version of the Poisson simulate function ...
simnew <- function (object, nsim) {
wts <- weights(object)
if (any(na.omit(wts) != 1))
warning("ignoring prior weights")
ftd <- na.omit(fitted(object))
napredict(na.action(object),
rpois(nsim * length(ftd), ftd))
}
simnew(g,1)
2011 Oct 13
1
[hivex][PATCH] Increase filetime printing resolution to sub-second
...les changed, 17 insertions(+), 3 deletions(-)
diff --git a/xml/hivexml.c b/xml/hivexml.c
index 5030c24..98b90c5 100644
--- a/xml/hivexml.c
+++ b/xml/hivexml.c
@@ -185,6 +185,8 @@ filetime_to_8601 (int64_t windows_ticks)
char *ret;
time_t t;
struct tm *tm;
+ int64_t sub_seconds;
+ size_t ftd; /* # chars formatted so far. */
if (windows_ticks == 0LL)
return NULL;
@@ -194,16 +196,28 @@ filetime_to_8601 (int64_t windows_ticks)
if (tm == NULL)
return NULL;
- ret = malloc (TIMESTAMP_BUF_LEN);
+ sub_seconds = windows_ticks % WINDOWS_TICK;
+ /* Trim trailing zeroes fro...
2011 Apr 14
0
StructTS fitting problem - can anyone help?
...es using StructTS. ?For this particular time series, if the length is reduced below 140 months, the BSM fits are bad.?
The following illustrates the problem
ap0 <- log10(AirPassengers) - 2ap<-ts(ap0[1:139], freq=12) ?# bad fits for length < 140(fit <- StructTS(ap, type= "BSM"))ftd<-fitted(fit)plot(cbind(ap, ftd[,1], ftd[,3]), # data, level, cyclic terms?? ? plot.type = "single", col=c("black", "red", "green"))abline(h=0, col="gray60")
A plot is attached, for series lengths 139 and 140. The red line is the fitted level and...
2005 Aug 25
1
Fw: FTP timout
...ged to the server running pure-ftpd, i can use ftp command
>> to
>> download any file from vsftpd server but i can't upload the same file
>> back
>> to the server if this file size is big
>>
>> Do you think that i should edit the configuration file for pure-ftd or
>> vsftpd? If yes, Which parameter i should change
>>
>
> This sounds to me like a proxy/firewall problem, not an FTP
> configuration problem. My money says that the pure-ftpd box is behind
> a proxy/firewall that is checking to make sure that your ftp session
> is al...
2013 Aug 27
0
possible tweaking of family()$simulate?
...ins references to
* object$prior.weights -- could be replaced by weights(object) ?
* fitted(object) -- I would like to be able to substitute my own "mu"
value here, but I can hack around it (in a perfect world I would add a
third optional argument:
$simulate <- function(object,nsim,ftd=fitted(object)) {
...
}
binomial()$simulate contains references to the above two components,
as well as a reference to object$model (which could be replaced by
model.frame(object)).
inverse.gaussian()$simulate has a reference to
summary(object)$dispersion (this wouldn't be too hard)...
2013 Jul 30
0
[ANNOUNCE] xf86-video-nouveau 1.0.9
...UyRqTSP6dZHzFNkKyzBV0p8OTJkgxL
IY7bOLJNUS0bjiDavtyQHxtPFMDWOwf5xbEzxj058DeFDyyv0gg/zZxL9S9J9aD/
v4P219x4JOBIlhyceOZTF1ruoI2HABV6G1deoG8WzaElDh9M3NtOH/Qqibx1nPFX
fvJBFkCWPHWfiTCOMSXzlAsz4KKRbkJdY+pDKdQdPIcK9EazY0RwZ1AjOy/2uoe5
AWCKtjPLYNdX/jsSVmzqRdgPm86BbCS83It2FYs+lbXiuF7TCjZgehebOx/WOvlz
KBaeEURN/ftD/rTaUZT8
=BtMe
-----END PGP SIGNATURE-----
2013 Jul 30
0
[ANNOUNCE] xf86-video-nouveau 1.0.9
...UyRqTSP6dZHzFNkKyzBV0p8OTJkgxL
IY7bOLJNUS0bjiDavtyQHxtPFMDWOwf5xbEzxj058DeFDyyv0gg/zZxL9S9J9aD/
v4P219x4JOBIlhyceOZTF1ruoI2HABV6G1deoG8WzaElDh9M3NtOH/Qqibx1nPFX
fvJBFkCWPHWfiTCOMSXzlAsz4KKRbkJdY+pDKdQdPIcK9EazY0RwZ1AjOy/2uoe5
AWCKtjPLYNdX/jsSVmzqRdgPm86BbCS83It2FYs+lbXiuF7TCjZgehebOx/WOvlz
KBaeEURN/ftD/rTaUZT8
=BtMe
-----END PGP SIGNATURE-----
2005 Aug 24
2
FTP timout
Hi all,
I have 2 CentOS 3.5 boxes & i do backups on the LAN
Recently, I always get FTP timout error with large files "700 MB and more" .
i tried to log and do manual backup with FTP command and i also got the same result "FTP timeout"
i tried to google and i did
# modprobe ip_conntrack_ftp
but still get the same timeout message
Any one can help???
Hameed
2010 Jul 27
2
[LLVMdev] Failed to build llvm with gcc 4.3.4 on Solaris x86
...ap
Thread model: posix
gcc version 4.3.4 (GCC)
dev2:~/gcd/llvm>
——————
This was after trying './configure --disable-shared’ as I thought this was potentially http://llvm.org/bugs/show_bug.cgi?id=896
I believe the compiler was a binary install from http://www.blastwave.org/jir/pkgcontents.ftd?software=gcc4&style=brief&state=5&arch=i386
The only ‘strange’ thing I saw during the configure stage was:
—
checking for GCC atomic builtins... no
configure: WARNING: LLVM will be built thread-unsafe because atomic builtins are missing
-
4.3.4 should have the atomic builtins, as I b...
2014 Mar 26
11
[Bug 10518] New: rsync hangs (100% cpu)
https://bugzilla.samba.org/show_bug.cgi?id=10518
Summary: rsync hangs (100% cpu)
Product: rsync
Version: 3.1.1
Platform: All
OS/Version: Linux
Status: NEW
Severity: critical
Priority: P5
Component: core
AssignedTo: wayned at samba.org
ReportedBy: syzop at vulnscan.org
QAContact: