Displaying 13 results from an estimated 13 matches for "trucat".
Did you mean:
truct
2002 Aug 21
0
odd errors in log files: service name trucation
...mes STARTING with these
characters. eg ta would be a service called tae, app would be a service
called apps, revie would be a service called review. I could believe
maybe one or two due to user typing errors etc, but this seems to be
systematic.
I guess I'm suggesting there might be a string trucation bug somewhere
there. I've included a few lines around one of these errors that will
give more details:
[2002/08/21 13:09:05, 1] smbd/service.c:close_cnum(690)
iceberg-ts5 (10.2.3.15) closed connection to service tlin
[2002/08/21 13:09:15, 0] smbd/service.c:make_connection(251)
iceberg-...
2003 Jun 20
1
procfs problems -cmdline turncated at 256 bytes ?
running 4.8 stable, the cmdline file in /proc/$$ seems to be trucated
at, or before 256 bytes for very long command lines. I cant find
any refernec to this behaviour in the manpage, nor does google reveal
anything. I took a look in the source, but didnt properly understand what
was going on - the comments imply that it does give the full commandline
for the current...
2005 Nov 18
1
Truncated observations in survreg
...n)
y<-rnorm(n,mean=x)
d<-data.frame(x,y)
d$ym<-pmin(y,0.5)
d$c<-ifelse(d$ym==0.5,0,1)
s<-survreg(Surv(ym,c)~x, dist="gaussian",data=d)
The truncated observations can be fitted with the following naive code.
Being able to use survreg (or similar) would however be great.
#trucated observations
d$c<-0.1
e<-d[d$y>d$c,]
e$cc<-1
#ss<-survreg(Surv(time=c,time2=y,event=cc,type="right")~x,
dist="gaussian",data=e)
a<-function(x,y,alpha=0,beta=1,sigma=1,s)
{
sum(
log((dnorm(y,mean=alpha+beta*x,sd=sigma^2)/(1-pnorm(q=s,mean=alpha+beta*x,sd=sigm...
2016 Jan 29
1
Re: [PATCH 6/6] launch: avoid too long paths for sockets
...X sockets limits the path to a static size (usually 104
> or 108 characters, NULL included), which is internally represented as
> UNIX_PATH_MAX. If the temporary directory set is long enough (e.g.
> when running tools as uninstalled, using "run") then these socket paths
> get trucated, if not even cause failures when binding the sockets.
>
> Introduce a new internal API to create paths for sockets, and a new
> helper path where store them in the above case. This new path is created
> only when needed, on a temporary directory under /tmp (hardcoded), and
> clean...
1998 May 06
1
R-beta: adjusting y-axis scale with multiple lines in plot
Hello --
I am plotting multiple densities in a single plot. If the max of a new
density (added with 'lines()') is sufficiently larger than that of the
one first plotted (using 'plot()'), the new density is cut or
trucated off of the figure. Is there a simple way of adjusting the
yscale after all lines have been added?
Or is the procedure to be used to first estimate all densities, the plot
the first one with 'ylim=c(0,max())' and the add the lines one by one?
If anyone has pondered on and solved this, I&...
2009 Nov 30
1
RSQLite does not read very large values correctly
Hello,
I am trying to import data from an SQLite database to R.
Unfortunately, I seem to get wrong data when I try to import very large
numbers.
For example:
I look at the database via SQLiteStudio(v.1.1.3) and I see the following
values:
OrderID Day TimeToclose
1 2009-11-25 29467907000
2 2009-11-25 29467907000
3 2009-11-25 29467907000
Now I run this R Code:
>
2001 Dec 03
0
Socket address problems with 2.5.1pre1
...: rsync: forward name lookup for failed: Name or service not known
rsyncd[32707]: rsync on debian/ from UNKNOWN (::ffff:127.0.0.1)
rsyncd[32707]: wrote 616 bytes read 70 bytes total size 143069
The forward name lookup still fails but at least the numeric address
is correct. It looks like the trucation getpeername() has to do goes
unnoticed and this causes problems with output from getnameinfo(). In
message <20010813234035.I1015@wistful.humbug.org.au> Martin wrotes
that:
I have merged the KAME.net IPv6 patch onto the track-kameipv6
branch. It compiles and seems to work but is not y...
2005 Mar 09
1
Filenames apparently truncated when acessing Samba share from XP.
Hi List,
This one is puzzling me. I suspect it is largely due to a badly-behaved
installer, but I would appreciate any help. I'm so puzzled, I'm not even
sure how to explain the problem, but here goes...
I have a Samba 3.0.1 system on AIX 5.2, which a number of XP users connect to,
in order to access an application installed there. The upgrade installer for
said application is causing
2005 May 25
3
Rounding fractional numbers to nearest fraction
Hi all,
I've got a matrix of fractional data that is all positive and greater than
zero that I would like to "loosely" classify, for lack of a better word. It
looks something like this :
1.07 1.11 1.27 1.59 0.97 0.76
2.23 0.98 0.71 0.88 1.19 1.02
What I'm looking for is a way to round these numbers to the nearest 0.25,
i.e. the above matrix would be
2016 Jan 29
0
[PATCH 6/6] launch: avoid too long paths for sockets
The API for UNIX sockets limits the path to a static size (usually 104
or 108 characters, NULL included), which is internally represented as
UNIX_PATH_MAX. If the temporary directory set is long enough (e.g.
when running tools as uninstalled, using "run") then these socket paths
get trucated, if not even cause failures when binding the sockets.
Introduce a new internal API to create paths for sockets, and a new
helper path where store them in the above case. This new path is created
only when needed, on a temporary directory under /tmp (hardcoded), and
cleaned when the handle is des...
2003 Jul 21
2
silent file truncation on ext3 with linux quota v0
The following message is a courtesy copy of an article
that has been posted to comp.protocols.smb as well.
Hi,
I'm trying to implement file system quotas on a Debian Woody Linux
box. My problem is that W2k Explorer silently truncates files when
going over quota by copying files. Other applications work as
expected and show a "disk full" error message.
To me it looks like the
2016 Jan 29
7
[PATCH 1/6] launch: unix: check for length of sockets
Error out early if the path to the socket will not fit into
sockaddr_un::sun_path, as we will not be able to connect to it.
---
src/launch-unix.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/launch-unix.c b/src/launch-unix.c
index 740c554..973e14b 100644
--- a/src/launch-unix.c
+++ b/src/launch-unix.c
@@ -47,6 +47,12 @@ launch_unix (guestfs_h *g, void *datav, const char
2004 Aug 24
5
MMX/mmxext optimisations
quite some speed improvement indeed.
attached the updated patch to apply to svn/trunk.
j
-------------- next part --------------
A non-text attachment was scrubbed...
Name: theora-mmx.patch.gz
Type: application/x-gzip
Size: 8648 bytes
Desc: not available
Url : http://lists.xiph.org/pipermail/theora-dev/attachments/20040824/5a5f2731/theora-mmx.patch-0001.bin