search for: ommit

Displaying 20 results from an estimated 161 matches for "ommit".

Did you mean: commit
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+4z9D7X3GOtuNwmIdqEx8D69d...
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
...ably), CTDB is able to recover and start serving again We have noticed that the following messages have started appearing in syslog, as well as in the winbind log on the afflicted cluster: """ [2015/10/16 10:25:30.892468, 0] ../source3/lib/util_tdb.c:313(tdb_log) tdb(<PATH OMMITTED>/gencache_notrans.tdb): tdb_rec_read bad magic 0xd9fee666 at offset=517632 [2015/10/16 10:25:37.827964, 0] ../source3/lib/util_tdb.c:313(tdb_log) tdb(<PATH OMMITTED>/gencache_notrans.tdb): tdb_expand overflow detected current map_size[4294967295] size[124]! """ Th...
2009 Feb 19
4
type III effect from glm()
...utput, 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... m2<-glm(count~siteall+yrs:district,family=quasipoisson,weights=weight,data=m[x[[i]],]) then compare models using anova() anova(m1,m1b,test="F") Analysis of Deviance Table Model 1: count ~ siteall + yrs + yrs:district Model 2: count ~ siteall + yrs:district Resid. Df Resid....
2012 May 06
2
Saving a variable
...structed "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 write function it only puts 5 columns. The problem is that if I use this it seems it is not saving the same data I have simulated....or this seems to me. You see if I type H[,1] it is not the same that includen on the firs column on datad.txt? I feel very slow witted.... Many thanks...
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 -o test.o test.s When comparing the results of our software compiled with gfortran-4.6 without LLVM with approach 1, I get t...
2019 Apr 30
2
mccollect with NULL in R 3.6
...t; 'names' attribute [2] must be the same length as the vector [1] Note, setting a "name" for the jobs does not help, but the above works with "wait=TRUE", and also if I change the order of NULL and "foobar", although in that case, the second value (NULL) is ommitted. It also works with mclapply fine. Any ideas/suggestion on how to get mccollect work with the above example? Thanks, Gergely [[alternative HTML version deleted]]
2004 Oct 17
2
Plotcorr: colour the ellipses to emphasize the differences
...I found that ellipse display can be even better with use of different colors (the code is bellow). However I have a problem to understand the process of generating the colors. The function cm.colors() with argument 11 produces scale of colors with 11 points. What is the meaning of [5*xc + 6])? If I ommit this part from the code, I see that ellipses bellow diagonal do not have the same color as above the diagonal. In given example numbers 5 and 6 are given (I think so) since there are 11 variables in dataset mtcars. How can one use this setup for other datasets? For example I have a dataset with 1...
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 9360 21420 3031 387390 9960 23410 2912 430180 11040 25820 3018 499930 12240 27620 2685 595010 13800 3167...
2008 Aug 31
1
[LLVMdev] Correct way of JITing multiple modules?
...enerates 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 runStaticConstructorsDestructors(). With the second one, neither ommitting this nor calling it a second time appears to work (I don't think either of these is exactly correct, since I don't want to run the static constructors on pre-existing modules twice, I just want static ctors to run in the new module). Can anyone advise? David
2015 Oct 16
0
Problems with TDBs on CTDB-managed Samba instance
...ing again > > > We have noticed that the following messages have started appearing in syslog, as well as in the winbind log on the afflicted cluster: > > > """ > > [2015/10/16 10:25:30.892468, 0] ../source3/lib/util_tdb.c:313(tdb_log) > tdb(<PATH OMMITTED>/gencache_notrans.tdb): tdb_rec_read bad magic 0xd9fee666 at offset=517632 > > > [2015/10/16 10:25:37.827964, 0] ../source3/lib/util_tdb.c:313(tdb_log) > tdb(<PATH OMMITTED>/gencache_notrans.tdb): tdb_expand overflow detected current map_size[4294967295] size[124]! tdb...
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 if u(t) follows a stationary process. suppose that v(t) is normaly distributed - so we want t...
2005 May 15
1
Host verification problem
..., different hosts appear on the same IP address, just with different ports. Since SSH uses the IP address but not the port to verify the peer host, ssh always blocks/warns when connecting to a different port since it detects a changed host key. This means to edit the host key file every time or to ommit host key validation. Please store the host keys based on hostname/IP and port number. regards Hadmut
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
...ng 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 : change_trust_account_password: Failed to change password for domain HERN. Unable to join domain HERN. I'm talking to the Windows admin ... and he assures me that the machine was created with the same name as in my smb.conf, he...
2012 Jun 09
1
Inf and NA
...quot;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 replace Inf by NA bt also I dind?n t get it.... I feel....like a mule...
2009 Mar 18
2
Updating wine with GIT
...9;ve noticed that I have to manually specify the package version on checkinstall, or else, the installation fails (is there a way to avoid this??)... On the other hand, to update sources, I use: cd ~/wine-git git reset --hard origin git fetch git rebase origin However, I've noticed that if I ommit the last command (git rebase origin) Compilation goes much faster...Is it neccesary to do that?? What does git rebase origin does?? I read this procedure once on appDB, and been following it blindly for some time, but I am annoyed because recompiling the whole sources each time is very time consum...
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 internal type "class" and the final dispatch woul...