search for: hood

Displaying 20 results from an estimated 720 matches for "hood".

Did you mean: good
2012 Jun 02
2
clancy hood wants to chat
----------------------------------------------------------------------- clancy hood wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-b6c37882b3-6070e5aff0-4zTTbp_k9mfRD2EYpxg7ObjBTtw You'll need to click this link to be able to chat with clancy hood. To get Gmail ? a...
2012 Sep 26
1
Write table with data in other .csv template
....Yoon = c(0L, 0L, 0L, 0L, 0L, 0L), Eugene.Koontz = c(0L, 0L, 0L, 0L, 0L, 0L), Jakob.Homan = c(0L, 0L, 0L, 0L, 0L, 0L), Kelvin.Kakugawa = c(0L, 0L, 0L, 0L, 0L, 0L), Kirk.True = c(0L, 0L, 0L, 0L, 0L, 0L ), Lars.George = c(0L, 0L, 1L, 0L, 0L, 0L), Soren.Macbeth = c(0L, 0L, 1L, 0L, 0L, 0L), Stu.Hood = c(0L, 0L, 0L, 0L, 0L, 0L), Tibor.Kiss = c(0L, 0L, 0L, 0L, 0L, 0L), Tom.White = c(0L, 0L, 1L, 0L, 0L, 0L), Unassigned = c(0L, 0L, 0L, 0L, 0L, 0L )), .Names = c("Adrian.Cole", "Alison.Wong", "Andrei.Savu", "Bruno.Dumon", "Edward.J..Yoon", &q...
2017 Aug 09
0
gluster under the hood
...Task Status of Volume volume1 ------------------------------------------------------------------------------ There are no active volume tasks In the documentation, they say to mount the glusterFS using the command: mount -t glusterfs serverNode:share /local/directory What is going on under the hood when calling this function ? what NFS is being used ? NFS Kernel ? Ganesha NFS ? The option: "Volume1.options.nfs.disable: on" Indicates if gluster exported via kernel-NFS or ganesha NFS ? When Volume1.options.nfs.disable: off - I *can* use showmount -e Node1 from the client machine, Whe...
2005 Dec 29
3
importing shapefiles into spatstat
...l) into R and use it to create the window for the spatstat analysis. I do not simply want to use a rectangle because the study areas spread out over 40000 ha. Any suggestions would be greatly appreciated. Thanks, Charlotte Reemts Charlotte Reemts Vegetation Ecologist The Nature Conservancy--Fort Hood (TX) Project P.O. Box 5190 Fort Hood, TX 76544-0190 254-286-6745 fax: 254-288-5039 CReemts@tnc.org [[alternative HTML version deleted]]
2004 Sep 06
9
Zaptel 'Under the Hood' Project
...elf with device driver programming and the interesting hardware on the wildcards. I've always thought Asterisk and Zaptel were two of the coolest FOSS projects around and now that I've spelunked through the code a little bit I'm curious: Has anyone ever wrote a zaptel "under the hood" type of document, discussing how the pseudo tdm bus works, the zaptel hardware, etc? If so, please point me there. If not, I'd like to take a stab at compiling a paper or article about zaptel for a general audience, technically inclined but not hard core technical, i.e. people like m...
2004 Apr 02
4
avaya and linux
Does anyone know if avaya voip product is running linux under the hood? Thanks, /glen -- Glen Ford gford@idiom.com
2018 Dec 28
2
LLVM Coverage Viewer
Hi All, I created a CLI tool that converts llvm coverage report JSON to a single HTML file that can be viewed locally. The tool is distributed from npm here https://www.npmjs.com/package/llvm-coverage-viewer . The code is hosted on github here https://github.com/hooddanielc/llvm-coverage-viewer. For any questions or concerns, please let me know or make an issue on github page. Hope this helps, Danny Hood -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20181227/d75d260a/at...
1999 Sep 22
0
Date: Mon, 20 Sep 1999 18:25:09 -0700 From: Brian Cohen <brian@greeninfo.org> To: samba@samba.org Subject: Seemingly basic Samba / WinNT question Message-ID: <199909210134.SAA15674@hood.greeninfo.org> Mime-Version: 1.0 Content-Type: text/plain;
Howdy, I'm trying to see my Samba shares from my Linux box on my WinNT machine. I can see the Linux box in the Network Neighborhod, but clicking on it just gets the old "remote computer not available". I've got RedHat 6.0 on the Linux box. I can ping the Linux box, I can FTP/Telnet to it, and it's my email server and I have no probl Content-Type: multipart/alternative;
2010 Oct 29
0
[LLVMdev] strict aliasing and LLVM
...enable-tbaa flag, so the optimizers never look at it. Oops. * clang -fstrict-aliasing -O0 does *not* generate the TBAA info in the resulting .bc file. This is probably intended to speed up -O0 builds even if -fstrict-aliasing is set, but is annoying for debugging what's going on under the hood. * If clang -O2 worked by running 'opt' and 'llc' under the hood, we could tell it to pass a flag along to them, but it doesn't. As it stands, you can't turn -enable-tbaa on when running clang. So, putting that together, one way to do it is: clang -O2 -fstrict-alias...
2004 Dec 28
1
Update: Slow browsing/reading from WinXP SP2
...ate the folder 'New Folder'. Access is denied" It obviously looks like a permissions issue, but what? I did not have to make any changes to my other laptop (upgraded from XP standard to SP2), and it can create directories on the 'samba' share just fine. Thanks, Jim --- Jim Hood <jimdhood@yahoo.com> wrote: > Date: Mon, 27 Dec 2004 14:46:17 -0800 (PST) > From: Jim Hood <jimdhood@yahoo.com> > Subject: Slow browsing/reading from WinXP SP2 > To: samba@lists.samba.org > > Hi, > > I have a Samba 3.0.9 server on Linux 2.6.9 (Fedora Core 3) t...
2010 Oct 29
5
[LLVMdev] strict aliasing and LLVM
As simple as void foo (int n, double *p, int *q) { for (int i = 0; i < n; i++) *p += *q; } clang -O2 -fstrict-aliasing -emit-llvm -o foo.bc -c foo.c llc -enable-tbaa -O2 -filetype=asm -o foo.s foo.bc Memory accesses remain in the loop. The following works fine: void foo(int n, double *restrict p, int * restrict *q) { ... } By the way, Is there a performance category in the llvm
2010 Oct 29
2
[LLVMdev] strict aliasing and LLVM
...-enable-tbaa flag, so the optimizers never look at it. Oops. > * clang -fstrict-aliasing -O0 does *not* generate the TBAA info in the resulting .bc file. This is probably intended to speed up -O0 builds even if -fstrict-aliasing is set, but is annoying for debugging what's going on under the hood. > * If clang -O2 worked by running 'opt' and 'llc' under the hood, we could tell it to pass a flag along to them, but it doesn't. As it stands, you can't turn -enable-tbaa on when running clang. In case there is any confusion, the -enable-tbaa option is temporary. TBAA...
2009 Mar 11
6
[LLVMdev] Wiki?
...y are not at all comprehensive. I'd like to propose that a wiki be made available so that people who work out how to do stuff can document their findings. I'd like to see sections devoted to frontend, backend and misc. pass implementation, with both explanations of how LLVM works under the hood, and 'recipes' for common tasks/issues. For example, I would be more than happy to write up a set of howtos for the various questions and tasks I've encountered during my backend development, ranging from a 'What's the bare minimum?' to more complex issues like 'Impleme...
2015 Feb 13
1
Re: libvirt live migration, qcow2 image, nbd server
...>> is indeed qcow2. I do not know how to let nbd know this image format. > > Hmm, I wonder if `virsh --migrate` should have a --format (or -F) option > that one can specify the format. Let's see what Eric Blake and others say. No. The format used by the NBD connection under the hood is not user-visible (for that matter, there may be more than one disk being migrated, and a single 'migrate --format' would NOT be sufficient to cover the case where multiple disks for the guest have different formats on the host). I think that it is merely a case where libvirt itself need...
2012 Mar 29
3
RAID-10 vs Nested (RAID-0 on 2x RAID-1s)
...sync /dev/sda3 1 8 19 1 active sync /dev/sdb3 2 8 35 2 active sync /dev/sdc3 3 8 51 3 active sync /dev/sdd3 Am I overthinking this? Does the kernel handle the mirror/stripe configuration under the hood, simply presenting me with a magical RAID10 array? Or, is this something different and I really should be performing the RAID creation manually as noted in option #1? Help me CentOS-Kenobi, you're my only hope. --Tim
2009 Dec 01
5
Is write(2) made durable atomically?
Will a write(2) to a ZFS file be made durable atomically? Under the hood in ZFS, writes are committed using either shadow paging or logging, as I understand it. So I believe that I mean to ask whether a write(2), pushed to ZPL, and pushed on down the stack, can be split into multiple transactions? Or, instead, is it guaranteed to be committed in a single transaction, an...
2020 Feb 25
3
RIOT 2020
...n and Tooling [1]. It will take place co-located with, and during, useR! 2020 in St. Louis on July 8th. RIOT is an excellent venue for deep technical discussions about R implementations, tools, optimizations and R extension, and will be very interesting for anyone interested in what?s under the hood of R. Regards, Stepan Sindelar, Lukas Stadler (Oracle Labs), Jan Vitek (Northeastern), Alexander Bertram (BeDataDriven) [1] http://riotworkshop.github.io/
2007 May 21
2
logger anybody?
Hello, When trying to use logger into any RSpec I get: logger anyboundefined local variable or method `logger'' for #<#<Class:0x278bee0>:0x253cdec> Not sure if this is the spected behaviour (haven''t checked under the hood) It was just annoying not having a logger instance available as in Rails out of the tests. -- An?bal Rojas http://www.rubycorner.com http://www.hasmanydevelopers.com http://www.to2blogs.com http://anibal.rojas.com.ve -------------- next part -------------- An HTML attachment was scrubbed... URL:...
1998 Dec 29
0
mapped drives do not appear
When the world was young, Scott Gasch carved some runes like this: > I am having trouble with samba (version 2.0beta4) and I thought > someone might have seen this before. From client PCs (win98 > and winnt 4.0) I am able to see my samba server in net hood. I > am able to browse the shared filesystems. I am able to map > drives. However, when a network drive is mapped to a local > drive on a PC, it does not appear in the drive list in > explorer. In a shell you can change to N: and see files. > In apps you can save to/read from N:...
2020 Aug 18
2
Where can CentOS7 yum-cron logs be found?
Le 18/08/2020 ? 03:00, Gunnar Niels a ?crit?: > I'm asking where the results of the yum-cron job are actually written to so > I can see what it did. Well, that's your answer. Here's the content of an email sent by Yum-Cron. So you everything that happened under the hood: The following updates will be applied on nestor.microlinux.lan: =============================================================================== Package Arch Version Repository Size ==========================================================================...