similar to: Solaris 2.7 error in file IO (code 11) at main.c(883)

Displaying 20 results from an estimated 6000 matches similar to: "Solaris 2.7 error in file IO (code 11) at main.c(883)"

2002 Feb 23
1
rsync error: unexplained error (code -1) at main.c(883)
rsync 2.5.2 on FreeBSD 4.4-STABLE. my rsyncd.conf looks like this: read only = yes [test] path = /tmp I am starting rsync as root like this: rsync --daemon when I connect to the rsync server on the localhost I get this: myhost# rsync localhost:: test but when I connect, from the localhost, using it's hostname i get this: myhost# rsync myhost.hwi.buffalo.edu:: rsync error: unexplained
2003 Jul 17
0
Silverman modality test
Dear R users, I've written the following functions to implement Silverman's modality test ("Using kernel density estimates to investigate multimodality", J.R. Stat. Soc. B, 43, (1981), 97-99.), and I tested them on the Chondrite data set (Good & Gaskins, J. Amer. Stat. Ass., 75, (1980), 42-56). Values for the critical window width seem OK, which is not the case for the
2011 Sep 30
1
Implementing Silverman's Negative Reflection
Hi! I'm trying to implement in R in an easy way the negative reflection method described in Silverman (1986) on p.31, ie I have a non-negative dataset and would like to estimate the density by applying a reflection method where the reflected points have weight -1. I thought there should be a way to evaluate the wanted kernel at the required points, in other words to calculate formula (2.16):
2004 Apr 01
2
Role of Xen/Xenolinux in New IO networking
I know I have asked this before, but I am having trouble understanding the role of each component in the new 1.3 world: In 1.3 networking if Xen has no devices, and domain 0 owns and operates the NIC - does Xen have any role at all in networking for the guest OS''s? Which network device driver will a guest OS use? Do all the vnetif rules defined in Domain 0 now get interpreted by
2001 Apr 05
1
bug in channel_still_open() ?
channel_still_open() does not count "larval" channels as open. If the server sets up a protocol 2 connection with no remote command (as with "ssh -N ..."), the "server-session" channel remains larval, and the server exits as soon as it notices that there are no open channels besides this one. Typically, it exits right after the first use of a port forwarding closes.
2009 Dec 25
2
I had a 5.4 installation crash and generate a log file - where do I send it?
People, While installing 5.4, I ran into an unhandled exception. It generated a log file, which I saved successfully. Unfortunately, I neglected to write down where to send the log file. Where does it go? Thank you Jeff Jeff Silverman | Network Support Engineer D 206.272-6465 F 206.272-5541 www.f5.com<http://www.f5.com>
2017 Mar 09
0
(no subject)
Seems like everyone but you got the answer. See the archive: http://lists.xiph.org/pipermail/opus/2017-February/003764.html You might want to check why your SMTP gateway rejected my original email. On Thu, Mar 9, 2017 at 9:27 AM, Brian Silverman <bri at readysetstem.com> wrote: > Hi, > > I'm looking a porting the Opus encoder (encoder only) to a Cypress PSoC 4 > (a 32-bit
2017 Mar 09
2
(no subject)
Hi, I'm looking a porting the Opus encoder (encoder only) to a Cypress PSoC 4 (a 32-bit ARM Cortex-M0 with very limited resources), and would like to know the feasibility of stripping down the encoder to fit. I've been playing with the encoder configured with "--enable-fixed-point --disable-intrinsics". The end result I'm trying to get to is encoding a single 16kHz 16-bit
2008 Sep 09
3
Modality Test
Dear Readers: I have two issues in nonparametric statistical analysis that i need help: First, does R have a package that can implement the multimodality test, e.g., the Silverman test, DIP test, MAP test or Runt test. I have seen an earlier thread (sometime in 2003) where someone was trying to write a code for the Silverman test of multimodality. Is there any other tests that can enable me to
2007 Jun 07
0
How to get the number of modes using kde2d
Hi, The silverman's paper introduction offer how to find a mode for one dimensional data based on software http://www.stanford.edu/~kasparr/software/silverman.r, for two dimensional data I use kde2d to smooth it out first, then I get a matrix of densities for all the X(one dimension) cross Y(another dimension). I sort X and Y first before I pass the values to kde2d(x, y, c(hx, hy)), the
2007 Aug 14
0
'fda' 1.2.2 is now available on CRAN.
The fda package supports "Functional Data Analysis" and "Applied Functional Data Analysis" by Bernard Silverman and James Ramsay. Functional data analysis, which lots of us like to call "FDA", is about the analysis of information on curves or functions. FDA is a collection statistical techniques for answering questions like, "What are the main ways in which the
2007 Aug 14
0
'fda' 1.2.2 is now available on CRAN.
The fda package supports "Functional Data Analysis" and "Applied Functional Data Analysis" by Bernard Silverman and James Ramsay. Functional data analysis, which lots of us like to call "FDA", is about the analysis of information on curves or functions. FDA is a collection statistical techniques for answering questions like, "What are the main ways in which the
2007 Dec 07
0
fda, version 1.2.3
fda 1.2.3 ======================== Version 1.2.3 of the fda package has just been released. This version adds to previous versions a script to create most of the figures of chapter 6 of "Applied Functional Data Analysis" by Ramsay and Silverman. Other changes offer simpler calls to time warping / registration and functional principal component functions. The fda package supports the
2011 Oct 16
2
Use of ICA for sound
Hi, I'm looking at the "cocktail party" classic problem. I can see how to use ICA to separate the components. But, How do I then create new wav files of the separated sounds so that they can be played? Thanks -- Noah Silverman UCLA Department of Statistics 8208 Math Sciences Building Los Angeles, CA 90095 [[alternative HTML version deleted]]
2010 Jan 28
2
rtp.c:883 ast_rtcp_read: RTCP Read too short
Hi: I have a linksys voip gateway connecting to an asterisk server ,when i dial a call from the linksys gateway to asterisk , i see repeated messages of a RTP errors ,and at same time i hear fake ring on the linksys?, This is wht i see on asterisk console?: ? -- Executing [9613070741 at direct:1] Set("SIP/03070741-088bd470", "CALLERID(number)=96170707070") in new stack ??? --
2011 Sep 02
2
Avoiding for Loop for moving average
Hello, I need to calculate a moving average and an exponentially weighted moving average over a fairly large data set (500K rows). Doing this in a for loop works nicely, but is slow. ewma <- data$col[1] N <- dim(data)[1] for(i in 2:N){ data$ewma <- alpha * data$ewma[i-1] + (1-alpha) * data$value[i] } Since the moving average "accumulates" as we move through the data,
2012 Feb 13
1
Warnings from script - where?
Hi, Next challenge today. I have a script that I call within R: source("foo.R") When it finishes, I get the dreaded output: "There were 50 or more warnings (use warnings() to see the first 50)" So, I type warnings() and get a nice list. (Same error repeatedly, so probably something I'm using in a loop.) The difficult part is I have no idea *where* the warning is
2012 May 18
4
Menus - best practices?
Hello, I need to design a fairly simple front-end for someone to use an R script system that I've built. My thought was to just use the text based menus available in the base R package, perhaps in some kind of loop. How have other people done this? Any "best practices" that you can recommend? Thanks! -- Noah Silverman UCLA Department of Statistics 8117 Math Sciences Building
2010 Sep 17
3
ZFS Dataset lost structure
After a crash, in my zpool tree, some dataset report this we i do a ls -la: brwxrwxrwx 2 777 root 0, 0 Oct 18 2009 mail-cts also if i set zfs set mountpoint=legacy dataset and then i mount the dataset to other location before the directory tree was only : dataset - vdisk.raw The file was a backing device of a Xen VM, but i cannot access the directory structure of this dataset. However i
2011 Aug 23
2
dummy variables from factors
Hi, Looking at a large data set with many factors. I would like to expand each factor variable into multiple new variables for each level. (0,1) coding. My first though was just to code a big nasty loop, to take each level and cbind a column onto my data set. But, that seems painful. There must be a better way. Is there an "easy" way to do this in R? (Note, I don't want to