search for: enp

Displaying 20 results from an estimated 23 matches for "enp".

Did you mean: end
2005 Jan 24
0
winbind debugging help.. act 2
...-Si --debuglevel=3 and this is part of the startup... IPC$ connections done anonymously bind_rpc_pipe: transfer syntax differs rpc_pipe_bind: check_bind_response failed. cli_nt_session_open: rpc bind to \PIPE\lsarpc failed rpc: trusted_domains IPC$ connections done anonymously add_trusted_domain: ENPS is an NT4 domain Added domain ENPS S-1-5-21-1959819392-1564699789-355810188 add_trusted_domain: BUILTIN is an NT4 domain Added domain BUILTIN S-1-5-32 add_trusted_domain: WPTZHOME is an NT4 domain Added domain WPTZHOME S-1-5-21-299585271-4192769577-2397001913 rpc: trusted_domains IPC$ connec...
2005 Jan 21
0
winbind debugging help..
...-Si --debuglevel=3 and this is part of the startup... IPC$ connections done anonymously bind_rpc_pipe: transfer syntax differs rpc_pipe_bind: check_bind_response failed. cli_nt_session_open: rpc bind to \PIPE\lsarpc failed rpc: trusted_domains IPC$ connections done anonymously add_trusted_domain: ENPS is an NT4 domain Added domain ENPS S-1-5-21-1959819392-1564699789-355810188 add_trusted_domain: BUILTIN is an NT4 domain Added domain BUILTIN S-1-5-32 add_trusted_domain: WPTZHOME is an NT4 domain Added domain WPTZHOME S-1-5-21-299585271-4192769577-2397001913 rpc: trusted_domains IPC$ connec...
2008 May 14
6
PWGL in wine, problems
Hello, I'm new on this list. First of all, thank you to all the developers of this great project! At the moment there is only an application that keeps me on both macos and windows, its name is PWGL a free environment for computer assisted composition in openGL. (http://www2.siba.fi/PWGL/) I'm running Ubuntu 8.04 and wine 0.9.59. I have to say that I also installed vcrun2005 and
2005 Nov 17
3
loess: choose span to minimize AIC?
...on (x) { # extract values from loess object if (!(inherits(x,"loess"))) stop("Error: argument must be a loess object") span <- x$pars$span n <- x$n traceL <- x$trace.hat sigma2 <- sum( x$residuals^2 ) / (n-1) delta1 <- x$one.delta delta2 <- x$two.delta enp <- x$enp aicc <- log(sigma2) + 1 + 2* (2*(traceL+1)) / (n-traceL-2) aicc1<- n*log(sigma2) + n* ( (delta1/(delta2*(n+enp)))/(delta1^2/delta2)-2 ) gcv <- n*sigma2 / (n-traceL)^2 result <- list(span=span, aicc=aicc, aicc1=aicc1, gcv=gcv) return(result) } > cars.lo <-...
2007 Nov 19
2
How to write plugin
Hi, Where can I find documentation for plugin writers? Now I see mail-log-plugin source, but I can't understand how entry points (functions mail-log-plugin-init and mail-log-plugin-deinit) are defined to execute some actions on load/unload/copy messages. Can anybody comments this?
2000 Nov 15
2
loess documentation
Hi all, I 've got a question about the usage of loess in the modreg package. The documentation (loess.html) states that the smoothing window is either set by span or enp.target. If span is used, the details section of the docs state... <SNIP> DETAILS Fitting is done locally. That is, for the fit at point x, the fit is made using points in a neighbourhood of x, weighted by their distance from x (with differences in `parametric' variables being ignored...
2000 Nov 15
2
loess documentation
Hi all, I 've got a question about the usage of loess in the modreg package. The documentation (loess.html) states that the smoothing window is either set by span or enp.target. If span is used, the details section of the docs state... <SNIP> DETAILS Fitting is done locally. That is, for the fit at point x, the fit is made using points in a neighbourhood of x, weighted by their distance from x (with differences in `parametric' variables being ignored...
2006 Mar 24
2
[PATCH] qemu pcnet emulation fixes
...nrda = nnrda; + s->crmd = s->nrmd; + s->nrmd = s->nnrmd; + s->nnrmd.rmd1.own = 0; + } + pktcount++; + } while (size > 0 && s->crmd.rmd1.own); - RMDLOAD(&rmd, PHYSADDR(s,crda)); if (size == 0) { - rmd.rmd1.enp = 1; - rmd.rmd1.pam = !CSR_PROM(s) && is_padr; - rmd.rmd1.lafm = !CSR_PROM(s) && is_ladr; - rmd.rmd1.bam = !CSR_PROM(s) && is_bcast; + s->crmd.rmd1.enp = 1; + s->crmd.rmd2.mcnt = packet_size; +...
2015 Nov 01
3
OT Strange IP address on home network
On 10/30/2015 09:01 AM, Timothy Murphy wrote: > Johnny Hughes wrote: > >>> So I guess the strange IP address probably comes from some Lite-On device >>> somewhere in my house - maybe on the server itself, an HP MicroServer. >>> There are so many possible electronic culprits today. > >> You should be able to use nmap to scan the device. > > Thanks
2019 Dec 21
2
dovecot rejecting connects
I am a newbie to dovecot but not postfix and centos I created a new VM with Centos 8 and installed dovecot and postfix.? Postfix is working fine but dovecot rejects connections from anything but the local machine. Locally ? Trying 10.10.100.157... ? Connected to 10.10.100.157. ? Escape character is '^]'. ? * OK [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE IDLE
2007 Jul 17
2
xyplot for longitudinal data
Dear R-help subscribers, I use xyplot to plot longitudinal data as follows: score<-runif(100,-4,5) group<-sample(1:4,100,rep=T) subject<-rep(1:25,4) age<-rep(runif(4,1,40),25) df<-data.frame(score,group,age,subject) xyplot(score~age|group, group=subject, panel=function(...){ panel.loess(...,lwd=4) panel.superpose(...)} ,data=df) this produced a plot with four panels one for each
2010 Apr 02
2
How to save a model in DB and retrieve It
...kw <- abs(modelspline(wind_ms) - (wind_dg)*2 + (air_kgm3 - 1.15)*300 + rnorm(length(wind_ms))*10) #plot(wind_ms, kw) windDat <- data.frame(kw, wind_ms, air_kgm3, wind_dg) windDat[windDat$wind_ms < 3, 'kw'] <- 0 model <- loess(kw ~ wind_ms + air_kgm3 + wind_dg, data = windDat, enp.target = 10*5*3) #, span = 0.1) modX <- serialize(model, connection = NULL, ascii = T) Channel <- odbcConnect("someSysDSN; UID=aUid; PWD=aPwd") sqlQuery(Channel, paste( "INSERT INTO GRT.GeneratorsModels ([cGeneratorID] ,[tModel] VALUES (1,&...
2011 Jun 16
0
Update: Is there an implementation of loess with more than 3 parametric predictors or a trick to a similar effect?
...= double((D+1)*max.kd), diagonal = double(N), trL = double(1), delta1 = double(1), delta2 = double(1), as.integer(0L)) pseudo.resid <- pseudovalues - zz$temp } sum.squares <- if(iterations <= 1) sum(weights * fitted.residuals^2) else sum(weights * pseudo.resid^2) enp <- one.delta + 2*trace.hat.out - N s <- sqrt(sum.squares/one.delta) pars <- list(robust=robust, span=span, degree=degree, normalize=normalize, parametric=parametric, drop.square=drop.square, surface=surface, cell=cell, family= if(iterations <= 1) "gaussian" el...
2004 Sep 30
4
IPSec connection from fw itself over vpn
Hello everyone, I''m not sure whether to place my question here or in the racoon mailing list or even in that of iptables. I have created an ipsec connection with racoon in tunnel mode to another gateway to connect one subnet on each side to each other. This works fine. Only the ipsec gateway itself can''t send packages to the opposite subnet. Shorewall is configured according
2015 Nov 01
0
OT Strange IP address on home network
...> IPV6INIT=no > in the relevant config file, probably something like > /etc/sysconfig/networking/devices/ifcfg-eth? > then restart your network. I don't have a directory /etc/sysconfig/networking/ on my CentOS-7 server, but I have IPV6INIT=no in /etc/sysconfig/network-scripts/ifcfg-enp{23}s0 . Incidentally, I haven't yet worked out how to get any useful information from nmap, as suggested by Johnny Hughes - I only get information about open ports, which is interesting but not relevant to my query about the 169.254.* address appearing in "arp -a" on my server. I loo...
2019 Dec 21
0
dovecot rejecting connects
...packet arriving and the response packet was ICMP type 3 code 13. Which make it pretty clear that it has nothing to do with dovecot as such as that's aresponse from the TCP/IP-stack ... > Any ideas? Duckduckgo-ing "icmp 3 13" delivers as the 1st link http://www.networksorcery.com/enp/protocol/icmp/msg3.htm and 13 seem to indicate "Communication Administratively Prohibited." Your turn;-) MfG, Bernd -- Bernd Petrovitsch Email : bernd at petrovitsch.priv.at LUGA : http://www.luga.at
2019 Dec 21
2
dovecot rejecting connects
...sponse packet was ICMP type 3 code 13. > Which make it pretty clear that it has nothing to do with > dovecot as such as that's aresponse from the TCP/IP-stack ... > >> Any ideas? > Duckduckgo-ing "icmp 3 13" delivers as the 1st link > http://www.networksorcery.com/enp/protocol/icmp/msg3.htm and > 13 seem to indicate "Communication Administratively Prohibited." > > Your turn;-) > > MfG, > Bernd CentOS 8 use nftables instead of iptables so first of all try firewall-cmd --list-services
2010 Nov 10
1
standardized/studentized residuals with loess
Hi all, I'm trying to apply loess regression to my data and then use the fitted model to get the *standardized/studentized residuals. I understood that for linear regression (lm) there are functions to do that:* * * fit1 = lm(y~x) stdres.fit1 = rstandard(fit1) studres.fit1 = rstudent(fit1) I was wondering if there is an equally simple way to get the standardized/studentized residuals for a
2012 Jan 11
2
2D filter in R?
Hi all, I am looking for a command for doing 2D filtering (rectangular or Gaussian) in R... I have looked at ksmooth, filter and convolve but they seem to be 1D... Any thoughts? Thanks a lot! [[alternative HTML version deleted]]
2015 Nov 01
2
OT Strange IP address on home network
...> in the relevant config file, probably something like >> /etc/sysconfig/networking/devices/ifcfg-eth? >> then restart your network. > I don't have a directory /etc/sysconfig/networking/ on my CentOS-7 server, > but I have IPV6INIT=no in /etc/sysconfig/network-scripts/ifcfg-enp{23}s0 . > > Incidentally, I haven't yet worked out how to get any useful information > from nmap, as suggested by Johnny Hughes - I only get information > about open ports, which is interesting but not relevant to my query > about the 169.254.* address appearing in "arp -a&q...