search for: emap

Displaying 15 results from an estimated 15 matches for "emap".

Did you mean: remap
2012 Oct 31
3
grep txt file names from html
Sorry, I know I should read a little 1st about this, but I am actually just helping somebody really quick and need help too. I want to grep all of the names of the .txt files mentioned on this html web page: http://www.epa.gov/emap/remap/html/three/data/index.html Thanks ahead of time. -- View this message in context: http://r.789695.n4.nabble.com/grep-txt-file-names-from-html-tp4648037.html Sent from the R help mailing list archive at Nabble.com.
2012 Oct 31
5
extracting information from txt file
Hello, Here is a link to some data: http://www.epa.gov/emap/html/data/surfwatr/data/mastreams/9396/wchem/chmval.txt I am trying to read this in, and want to use: chmval <- read.table("http://www.epa.gov/emap/html/data/surfwatr/data/mastreams/9396/wchem/chmval.txt", sep=",", skip= 84, header=T) the # 84, for 84 lines skipped needs t...
2013 Nov 04
2
[LLVMdev] compile error when using overloaded = operator of DenseMap
Hi, I am trying to implement Available Expressions data flow analysis. I created the following class (I am giving here code snippet.): namespace { typedef DenseMap<Expression, uint32_t> DMTy; //Expression is a class I defined. struct DataFlowValue { DMTy ExprMap; llvm::BitVector* DFV; // Functions operating on the data // bool operator==(const DataFlowValue V) const; void top(); /* set all elements */ void bot(); /* reset all...
2013 Nov 04
0
[LLVMdev] compile error when using overloaded = operator of DenseMap
On Mon, Nov 4, 2013 at 10:35 AM, Rekha R <rekharamapai at nitc.ac.in> wrote: > Hi, > > I am trying to implement Available Expressions data flow analysis. I created > the following class (I am giving here code snippet.): > > namespace { > typedef DenseMap<Expression, uint32_t> DMTy; //Expression is a class I > defined. > struct DataFlowValue { > DMTy ExprMap; > llvm::BitVector* DFV; > > // Functions operating on the data // > bool operator==(const DataFlowValue V) const; > void top(); /* set all el...
2014 Feb 15
1
kerberos/samba errors?
...dc in realm "${REALM}" while getting initial credentials samba-tool dns zonelist catnip yadda yadda, etc. failed to connect to host 127.0.1.1 on port 135 NT_STATUS_REFUSED krb5 is as provided in /usr/local/samba/share/setup/krb5.conf /etc/services shows port 135 as: loc-srv 135-tcp emap loc_srv 137-udp emap What we need is a 'hitch hiker's guide to linux', which will at least have "DON'T PANIC" in large friendly letters on the cover. -jimc
2001 Dec 12
1
file permissions - the best way?
...sync -rt ..." then chmod as a cron job to set the correct permissions "775". Any ideas on how to eliminate the cron/chmod job would be very welcome, thanks for your time. dan _____________________________ Dan Gardner Producer MCN online http://www.motorcyclenews.com ** For great Emap magazine subscription & gift offers visit http://www.emapmagazines.co.uk ** -------------------------------------------------------------------------------- The information in this email is intended only for the addressee(s) named above. Access to this email by anyone else is unauthorised. If...
2002 Apr 09
0
summer R job in Oregon
...on of survey designs to natural resources. Graduate level statistician/programmer competent in the development of algorithms using the statistical software SPlus or R to work as a summer hire as part of the U.S. Environmental Protection Agency's Environmental Monitoring and Assessment Program (EMAP) Design Team, located in Corvallis, Oregon. EMAP develops survey designs for aquatic resources using unequal probability sampling based on a hierarchical grid randomization process. The person filling the position will write SPlus/R functions to implement this process. Research level functions cu...
2012 Oct 17
1
Adding an MT9234ZBA-USB modem to CentOS6.3
How, exactly, does CentOS-6.3 with udev recognize an USB modem when it is plugged in. How is it indicated? What other configuration is required? I can find the modem in /sys/class/tty and I can get the attributes using udevadm but I do not see anything in ps that refers to the modem device. -- *** E-Mail is NOT a SECURE channel *** James B. Byrne
2001 Oct 31
1
Rsync time syncing problem
Hi All, I hope someone can help me. We use Rsync to transfer files to and from our Australian and US server and we are experiencing files being overwritten and a few files disappearing (their contents disappear). I have setup ntp on each machine pointing to the same ntp server and set the hwclock to utc. We have found that the files on the US server are x:xx:01 secs and the AU server is
2012 Apr 25
0
[PATCH] xen: Fix memory hotplug epfn upper limit test for updating the compat M2P table
...TART) >> 2)) ) return 0; - if (epfn > (RDWR_COMPAT_MPT_VIRT_END - RDWR_COMPAT_MPT_VIRT_START)) + if ( epfn > ((RDWR_COMPAT_MPT_VIRT_END - RDWR_COMPAT_MPT_VIRT_START) >> 2) ) epfn = (RDWR_COMPAT_MPT_VIRT_END - RDWR_COMPAT_MPT_VIRT_START) >> 2; emap = ( (epfn + ((1UL << (L2_PAGETABLE_SHIFT - 2)) - 1 )) &
2013 Jan 16
6
[PATCH V2] mm/slab: add a leak decoder callback
...extent_buffer_cache, + extent_buffer_leak_decoder); } void extent_io_tree_init(struct extent_io_tree *tree, diff --git a/fs/btrfs/extent_map.c b/fs/btrfs/extent_map.c index f359e4c..bccba3d 100644 --- a/fs/btrfs/extent_map.c +++ b/fs/btrfs/extent_map.c @@ -16,6 +16,16 @@ static LIST_HEAD(emaps); static DEFINE_SPINLOCK(map_leak_lock); #endif +static void extent_map_leak_decoder(void *object) +{ + struct extent_map *em = object; + + printk(KERN_ERR "btrfs ext map leak: start %llu len %llu block %llu " + "flags %lu refs %d in tree %d compress %d\n", +...
2013 Jan 14
5
[PATCH] mm/slab: add a leak decoder callback
...o free_state_cache; + + extent_buffer_cache->decoder = extent_buffer_leak_decoder; return 0; free_state_cache: diff --git a/fs/btrfs/extent_map.c b/fs/btrfs/extent_map.c index 80370d6..d598a8d 100644 --- a/fs/btrfs/extent_map.c +++ b/fs/btrfs/extent_map.c @@ -16,6 +16,16 @@ static LIST_HEAD(emaps); static DEFINE_SPINLOCK(map_leak_lock); #endif +static void extent_map_leak_decoder(void *object) +{ + struct extent_map *em = object; + + printk(KERN_ERR "btrfs ext map leak: start %llu len %llu block %llu " + "flags %lu refs %d in tree %d compress %d\n", +...
2013 May 13
5
Serial Passthrough broken in Debian Wheezy?
Hello, I just discovered a strange bug with serial passthrough in xen 4.1 on Debian Wheezy. The Dom0 has a GSM modem connected to serial port. The serial port is passed through to a DomU with options 'irq = [ 4 ]' and 'ioports = [ '3f8-3ff ]'. This worked as expected on Debian Squeeze with Xen 4.0 and Linux kernel 2.6.32 (both for Dom0 and DomU). On Debian Wheezy with Xen
2013 May 13
5
Serial Passthrough broken in Debian Wheezy?
Hello, I just discovered a strange bug with serial passthrough in xen 4.1 on Debian Wheezy. The Dom0 has a GSM modem connected to serial port. The serial port is passed through to a DomU with options 'irq = [ 4 ]' and 'ioports = [ '3f8-3ff ]'. This worked as expected on Debian Squeeze with Xen 4.0 and Linux kernel 2.6.32 (both for Dom0 and DomU). On Debian Wheezy with Xen
2012 Jun 24
0
nouveau _BIOS method
...ID2 DID3 D 0400: 49 44 34 20 44 49 44 35 20 4b 53 56 30 20 4b 53 ID4 DID5 KSV0 KS 0410: 56 31 08 00 38 42 4c 43 53 08 42 52 54 4c 08 41 V1..8BLCS.BRTL.A 0420: 4c 53 45 08 41 4c 41 46 08 4c 4c 4f 57 08 4c 48 LSE.ALAF.LLOW.LH 0430: 49 48 08 00 08 45 4d 41 45 08 45 4d 41 50 10 45 IH...EMAE.EMAP.E 0440: 4d 41 4c 10 00 08 4d 45 46 45 08 44 53 54 53 08 MAL...MEFE.DSTS. 0450: 00 10 54 50 4d 50 08 54 50 4d 45 08 4d 4f 52 44 ..TPMP.TPME.MORD 0460: 08 54 43 47 50 08 50 50 52 50 20 50 50 52 51 08 .TCGP.PPRP PPRQ. 0470: 4c 50 50 52 08 47 54 46 30 38 47 54 46 32 38 49 LPPR.GTF08GTF28I...