search for: overlooking

Displaying 20 results from an estimated 2330 matches for "overlooking".

2010 Nov 24
1
how to make R overlook string character
I am really new to R and would appreciate some help to sort out a problem with data extraction from a large file. I have entered the following command to filter data from a large data set called "upanddown" such that those records in upanddown corresponding to blockType=3'UTR are transferred to a new file called "new": new<-sqldf("select * from upanddown where
2005 Jul 27
3
how to overlook the zero in the denominator
Dear R users: I have two set of data, as follow: x<-c(0,0,0.28,0.55,1.2,2,1.95,1.85, 1.6,0.86,0.78,0.6,0.21,0.18) y<-c(0,0,0,0.53,1.34,1.79,2.07,1.88, 1.52,0.92,0.71,0.55,0.32,0.19) i<-1:length(x) I want to sum each (x[i]-y[i])^2/x[i] together, like: >Sum <-sum((x[i]-y[i])^2/x[i]) >Sum [1] NaN Because the denominator shoud not be zero. So I want to overlook those
2004 Jul 13
2
Permissions problem...I must be overlooking *something*...
..." writable = yes read only = no Here are the permissions on /var/www: # file: www # owner: root # group: INTERCLEAN+Domain Admins user::rwx group::rwx other::r-x I'm in the Domain Admins group. Why doesn't this work? I'm sure there's something silly I'm overlooking, but I can't see what it is right now. --- David Brodbeck, System Administrator InterClean Equipment, Inc. 3939 Bestech Drive Suite B Ypsilanti, MI 48197 (734) 975-2967 x221 (734) 975-1646 (fax)
2004 Jun 17
0
Overlooked? Windows can't create folders/files with long file names
The message below, from A, Skwar, appeared last summer. Just in case it got overlooked during vacation time, can anyone comment? I have an example as follows: Every profile contains a foldername "My Recent Documents" which gets changed during a copy to samba disk to "Recent"!! Many similar problems. Also: Special Folder Icons on the screen get changed to generic folder
2004 Jul 13
2
Permissions problem...I must be overlooking *somethin g*...
> -----Original Message----- > From: Mark Lidstone [mailto:mlidstone@bmtseatech.co.uk] > You've probably only put them in because of the problem you're having, > but "writeable/writable" and "read only" are actually the same setting > but reversed. E.g. "writeable/writable = yes" is the same as > "read only > = no". Therefore
2011 Dec 01
0
[PATCH] x86-64/mmcfg: remove __initdata annotation overlooked in 23749:e8d1c8f074ba
Signed-off-by: Jan Beulich <jbeulich@suse.com> --- a/xen/arch/x86/x86_64/mmconfig_64.c +++ b/xen/arch/x86/x86_64/mmconfig_64.c @@ -23,7 +23,7 @@ struct mmcfg_virt { char __iomem *virt; }; static struct mmcfg_virt *pci_mmcfg_virt; -static int __initdata mmcfg_pci_segment_shift; +static unsigned int mmcfg_pci_segment_shift; static char __iomem *get_virt(unsigned int seg, unsigned
2009 Jul 09
4
Issues with file.info?
Are there any tricks associated with file.info? I just tried it on a directory folder and it returned NA for all fields for all files. I tried it on a different folder with different files and it still returned NA. I tried it on a specific file and it returned all the proper info correctly. Just wondering if there are any tricks I've overlooked.
2012 Sep 01
3
Alerts when process limits are met
Hi, I've not found the answer to this question anywhere - please forgive me if I overlooked. I'd like to be able to be automatically alerted if process limits are hit (e.g. max POP3 logins). Is there a way that I can configure a script to be run, in the same way that I can with quota warnings? I can of course use logwatch, but this alerts me the next day, and logwatch can be noisy
2008 May 22
4
Sort output of dovecot -n alphabetically?
Is there a way? Postfix does this by default, and it makes it much less likely to miss/overlook a setting... If there is no way, any chance to modify it so that it does? Thanks for dovecot! Really looking forward to 1.1 release! -- Best regards, Charles
2009 Jun 02
3
[LLVMdev] Is there a control dependence graph builder?
Hi, In browsing through the LLVM source, I don't currently see an implementation for a control dependence graph builder. Am I overlooking something? It doesn't look like LLVM currently provides a way to build the post-dominance frontier of the reverse CFG, either. Dominators.h mentions forward dominators, but I believe all this is referring to is dominators as opposed to post-dominators, not dominators on the CFG versus dominato...
2010 Sep 30
3
xen 4 and grub2 on debian squeeze
...e hypervisor and the Dom0 kernel on bootup. It seems the grub2 stanza for xen is being generated by /etc/grub.d/20_linux_xen and that seems to have some provisions for receiving arguments, but I have no idea how to make update-grub pass those arguments. Is there a config file I''m overlooking? --Igor _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2015 Jul 06
3
Prompt for chrooted users
We have a requirement to allow ssh access to a server in order to provide a secure link to one of our legacy systems. I would like to chroot these accounts. I have this working except for one small detail, the user's prompt in the ssh session. Each user has their shell set to /bin/bash in /etc/passwd. However, instead of getting the prompt defined in their .bash_profiles we see this:
2018 Apr 04
4
memory cgroup max_usage_in_bytes question
...413479936 75642777600 48586752 111346384896 185689632768 > Swap: 21474832384 31961088 21442871296 > [] cat /sys/fs/cgroup/memory/memory.max_usage_in_bytes > 273102151680 how can the max be so much higher than total, and this is not even memsw? either we're very tired and are overlooking something obvious, or there's something new to be learned ;) many thanks, stijn
2006 Jul 19
3
Component Question
...oid conflicts, it seems like a valid strategy for customizing your component would be to redefine portions of the model from the component in an entry in your models directory. However, since the Rails $LOAD_PATH results in the models directory entry not being read, this seems impossible. Am I overlooking something/overlooking a better strategy to achieve this functionality? Is there a particular reason for this ordering I''m overlooking? Thanks, Fred -- Posted via http://www.ruby-forum.com/.
2006 Feb 28
5
Getting number of days in a month
.... Right now, I''m using a very ugly line to pull the last day of the month: @number_of_days = (Date.strptime(Date.today.strftime("%Y-%m-01")) >> 1) - 1 Basically, it takes the first day of the current month, adds one month, and then subtracts one day. Am I completely overlooking some obvious and easy way to do this? (I''m assuming so).
1999 Apr 09
3
SWAT: How do I save the settings?
Hi, I might have overlooked something very obvious, but: I am running Samba 2.0.3 on a SuSE 6.0 system. When I connect to SWAT, I can see all the settings in the Globals sections, I can change them, but I can't find any button anywhere to *save* these changes... Can anyone help? :)avid <>< David A. Sj?en -- SWP-irma Software Partner GmbH
2018 Aug 02
6
Louis' Debian install notes
Louis, Prior to your move over to github I had found a text file of your notes about installing your Samba4 packages on Debian. Basically it was notes about install the required programs from Debian repos and add my (Louis') repository and now install latest samba packages. Yes, I see notes floating around about install onto Ubuntu 18.04LTS but, I am looking for those older Debian notes you
2009 Aug 23
7
Using Thunderbird as local mail reader
Hi! I'm trying to figure out how to use Thunderbird as a local mail reader. So far I don't see any way to configure it other than as a POP3 or IMAP mail reader, but I get my mail locally and would like to try using Tbird to read it. What am I overlooking? Thanks in advance! -- ---- Fred Smith -- fredex at fcshome.stoneham.ma.us ------------------------ ---- Do you not know? Have you not heard? The LORD is the everlasting God, the Creator of the ends of the earth. He will not grow tired or weary, and his understanding...
2004 Nov 29
2
Log file with application running in wineconsole
...messages). The problems is that my application generates a lot of output on the screen so the logfile gets really hughe(GB's) over time. I looked in the docs and did a google search, tried some things in the [debug] and [spy] sections of the config file, but I just can't find it yet or keep overlooking it.... Hope anyone can give me some advice! Regards, Hiddo. _________________________________________________________________ MSN Search, for accurate results! http://search.msn.nl
2005 Nov 23
4
x[1,], x[1,,], x[1,,,], ...
Hi, is there a function in R already doing what I try to do below: # Let 'x' be an array with *any* number of dimensions (>=1). x <- array(1:24, dim=c(2,2,3,2)) ... x <- array(1:24, dim=c(4,3,2)) i <- 2:3 ndim <- length(dim(x)) if (ndim == 1) y <- x[i] else if (ndim == 2) y <- x[i,] else if (ndim == 3) y <- x[i,,] else ... and so on. My current