Displaying 20 results from an estimated 162 matches for "ommited".
Did you mean:
commited
2003 Oct 19
2
Tinc doesn't respond in Windows XP.
...----------------------------------------
C:\Program Files\tinc\vpn>type tinc.conf
AddressFamily = ipv4
Name = home
ConnectTo = office
Interface = VPN
C:\Program Files\tinc\vpn>type rsa_key.priv
-----BEGIN RSA PRIVATE KEY-----
MIICXgIBAAKBgQDSedLmhH6lK3wJv6Q6QUEFNg6xAvBQY9ISRq3ivGdbqrX8o0iu
(ommited)
gvT9fxMDhfu94PoSG08s+fEzAEKLmSoYzYBusUNuEh1dqg==
-----END RSA PRIVATE KEY-----
C:\Program Files\tinc\vpn>cd hosts
C:\Program Files\tinc\vpn\hosts>type office
Address = 143.106.50.70
Port = 8500
Subnet = 10.20.40.0
-----BEGIN RSA PUBLIC KEY-----
MIGJAoGBAMbiInaYkS+4z9D7X3GOtuNwmIdqEx8D69dY0...
2004 Aug 31
1
scp does a local copy when ommiting :
Hi,
I run into this quiet often:
If you forget to add the : after the hostname you want to copy a file
to, then scp does a simple local copy. This is quiet confusing if you
dont notice it:
"scp foo.txt server.bar.com:" (copies the file to remote homedir)
"scp foo.txt server.bar.com" (creates the new file server.bar.com)
I don't know if this behaviour is intended or even
2015 Oct 16
2
Problems with TDBs on CTDB-managed Samba instance
Hi All,
My site has two separate clustered Samba instances (managed by two independent CTDB instances) running over GPFS. In the last couple of weeks, we have seen a recurring issue that causes the `smbd` process in *one* of these instances to become unresponsive (as seen by CTDB), which results in flapping of CTDB and multiple IP takeover runs.
The symptoms that we observe are:
1) Samba
2009 Feb 19
4
type III effect from glm()
Hi all,
This could be naivety/stupidity on my part rather than a problem with model output, but here goes....
I have fitted a fairly simple model
m1<-glm(count~siteall+yrs+yrs:district,family=quasipoisson,weights=weight,data=m[x[[i]],])
I want to know if yrs (a continuous variable) has a significant unique effect in the model, so I fit a simplified model with the main effect ommitted...
2012 May 06
2
Saving a variable
Hi all,
I´m trying to use write function to save the output of a program (my
constructed "H" matrix)
randz<-matrix(rnorm(1000000),500,2000)
H<-matrix(0,500,2000)
H[1,]<-randz[1,]
for (j in 1:2000){
for (i in 2:500){
if(i<251)
H[i,j]<-0.6*H[i-1,j]+randz[i,j]
else H[i,j]<-H[i-1,j]+randz[i,j]
}}
write(H, file = "datad.txt",2000)
If I ommit the 2000 on
2012 Apr 17
2
[LLVMdev] Dragonegg + IR + llc = Dragonegg directly
Hi all,
I tried using dragonegg to compile some numerical software of ours. I
tried out two different approaches expecting both would yield the same
results:
1. gfortran-4.6 -fplugin=dragonegg-3.0 -o test.o test.f (I ommitted a
bunch of additional arguments for brevity)
2. gfortran-4.6 -fplugin=dragonegg-3.0 -fplugin-arg-dragonegg-emit-ir -S
-o test.ll test.f
llc -O0 -o test.s test.ll
as
2019 Apr 30
2
mccollect with NULL in R 3.6
Dear All,
I'm running into issues with calling mccollect on a list containing NULL
using R 3.6 (this used to work in 3.5.3):
jobs <- lapply(
list(NULL, 'foobar'),
function(x) mcparallel(identity(x)))
mccollect(jobs, wait = FALSE, timeout = 0)
#> Error in names(res) <- pnames[match(s, pids)] :
#> 'names' attribute [2] must be the same length as the vector
2004 Oct 17
2
Plotcorr: colour the ellipses to emphasize the differences
Hello R users!
I began with R and I must say that it is really nice. I have data with a lot of variables
and have a problem to extract the pattern from correlation matrix. So I tried with plotcorr
and it went fine. While I was reading the help page of this function, I found that ellipse
display can be even better with use of different colors (the code is bellow). However I have
a problem to
2009 Jul 27
2
pairs plot
Hi all,
I want to plot trough pairs() plot a matrix with 4 columns. I want to make a
trhee plot in a graph. Plotting pairs colum 2,3,4 on y axis and 1 on X axis.
You mean (a plot with three graphs) ommitting the first pair with itself.
And only the pairs with colum 1 with the other not all pairs.
I. e. this matrix
4177 289390 8740 17220
3907 301510 8530 17550
3975 316970 8640 17650
3651 364220
2008 Aug 31
1
[LLVMdev] Correct way of JITing multiple modules?
Hi,
I'm trying to work out the correct way of JITing multiple modules.
My original approach was to create a new ExecutionEngine for each
Module, however this generates an assert failure. If I create a new
ModuleProvider for each new Module and then add this to a single
ExecutionEngine then I have a problem with static constructors not
being run. With a single module, I can call
2015 Oct 16
0
Problems with TDBs on CTDB-managed Samba instance
On Fri, Oct 16, 2015 at 02:44:36PM +0000, Howard, Stewart Jameson wrote:
> Hi All,
>
>
> My site has two separate clustered Samba instances (managed by two independent CTDB instances) running over GPFS. In the last couple of weeks, we have seen a recurring issue that causes the `smbd` process in *one* of these instances to become unresponsive (as seen by CTDB), which results in
2007 Jan 16
1
number of Nodes in Random Forest
I'm calculating nodes using Random Forest in R but i only get nodes for a
fraction of the compounds i want to calculate, the rest is ommited and is not
printed in the output file, (i'm working with 3012 compounds). What can i do to
have nodes printed for all the compounds. Thanks
Gon?alo
2006 Jul 28
1
maximum likelihood
hi,
using articial data, i'm supposed to estimate model
y(t) = beta(1) + beta(2)*x(t) + u(t), u(t) = gamma*u(t-1) + v(t), t =
1,...,100
which is correctly specified in two ways: ML ommiting the first observation,
and ML using all 100 observation.
since i'm still learning how to use R, i would like to know how MLE works.
there is neither information about the distribution of v(t) nor
2005 May 15
1
Host verification problem
Hi,
I have a problem with the host verification of ssh in several
networks of the same structure:
In all cases there is a router or a firewall with an official
IP address, making the ssh-ports of several hosts with
RFC1918-addresses available through NAT or TCP forwarding.
Thus, different hosts appear on the same IP address, just with
different ports.
Since SSH uses the IP address but not
2000 May 29
1
Banner
Hi,
We have samba printing, but we can't ommit the banner page.
Any ideas appreciated
Andre
2002 Jul 24
1
Unable to join W2K Active Directory Domain
Hello all ...
I'm trying to join a W2K domain and I'm getting the following error message:
sun220:root# smbpasswd -j hern
cli_net_req_chal: Error NT_STATUS_INVALID_COMPUTER_NAME
cli_nt_setup_creds: request challenge failed
modify_trust_password: unable to setup the PDC credentials to
machine xxx.xxx.xxx.xxx(IP ommitted). Error was : NT_STATUS_UNSUCCESSFUL.
2002/07/24 09:44:18 :
2012 Jun 09
1
Inf and NA
Hi all,
I have a csv matrix "KT.csv" and it has Inf and NA
I want to calculate the mean of each row so I use
rowMeans(KT,na.rm = TRUE) but with this Inf cannot be omminted.
I?m trying to use before running rowMeans(KT,na.rm = TRUE)
KT<-range(KT,finite=TRUE)
but it doesn?t works...
Do you know a simple way to ommit Inf en the calculations?
Many thanks.
I have tried also to
2009 Mar 18
2
Updating wine with GIT
Hi. Ive used git for some time to download an update wine sources. However, Ive notices a couple of things i dont understand quite much.
My general procedure to download sources and compile is this:
git clone git://source.winehq.org/git/wine.git ~/wine-git
cd ~/wine-git
./configure --prefix=/usr
make
sudo checkinstall --fstrans=no --pkgversion=1.1.12
Here I've noticed that I have to
2001 Sep 07
2
@ERROR
@ERROR: failed to open lock file /var/run/rsyncd.lock : No such file or
directory
solaris 2.6 (server)
rsync 2.3.1
this has never been a problem before.
This is a customer's error when trying to upload to our server.
They claim it is not their end. I disagree.
Anyway, I don't have their version info or OS.
Matt
2005 Jul 19
1
S4 Dispatching
Is it possible for S4 to (continue) dispatch to a class
created during dispatching? The code below doesn't work;
is this not possible or have I ommitted something?
Concept was to create a SEXP with R_AllocatePtr, give it
a class attribute, and continue dispatch. Example code
below omits multiple parameters that can be different types.
Essentially, any parameter would be converted to an