search for: obliviously

Displaying 20 results from an estimated 123 matches for "obliviously".

2007 Jul 05
3
LVM recovery questions
Hi, I have a centos 4 box i use for a file server (nfs and samba). It has two hdd: hda is for the standard install; hdb is for /export/samba/netdisk0 hda is lost - it just clicks now i think hdb is still good i can't figure out how i can remount the hdb disk in a new machine and retrieve the info from it; i've scanned the LVM howto and googled some LVM topics, but nothing seems to
2007 Aug 22
2
New server is not discovering USB drive attachment
Just built a Centos 5 system last night that will be a NAS server. I have a bunch of notebook drives with information I want to populate the NAS with. I am logged in as root. I plug in the USB notebook drive device and nothing. My notebook has no trouble with this device. Obliviously I missed something in the install. autofs is reported as running, so not that.
2012 Apr 07
4
Display instruction text on package load
I'm currently working on a new package for R that interfaces with an API. Most of the package's functionality requires users to supply an access key that allows the package to work with the API. I want to display text immediately upon loading the package that instructs/reminds users to enter their access key before attempting to do anything (as the package won't really work without
2009 Dec 09
3
Cannot read mdir inbox.
Problem: Dovecot is totally and merrily oblivious to maildir INBOX installed in the usual /var/spool/mail/%u Software/system: Dovecot 1.2.8 running under Fedora 12 with 1.9 gig RAM + AMD Athlon LE-1640 CPU on a ASUS M3A78-EM motherboard (uname -a = Linux 2.6.31.6-162.fc12.x86_64 #1 SMP Fri Dec 4 00:06:26 EST 2009 x86_64 x86_64 x86_64 GNU/Linux ) Dovecot has been installed from the Fedora
2012 Nov 25
2
[LLVMdev] MCJIT and Lazy Function Creators
Out of curiosity, I'm replacing the JIT with MCJIT on my compiler. As all "external" functions are provided by the language's FFI mechanism, it does MyExecutionEngine->DisableSymbolSearching(); MyExecutionEngine->InstallLazyFunctionCreator(&MyLazyFunctionCreator); which works fine with the JIT. However, MCJIT insists on resolving unknown symbols by searching them
2018 Jun 07
2
[lld] ObjFile::createRegular is oblivious of PendingComdat
I encountered a segfault when using lld to cross-compile for Windows (+MinGW) from Linux. The problem happens with objects built by gcc. The problem is that ObjFile::CreateRegular considers a PendingComdat to be valid (and later causes an illegal pointer dereference). The following patch fixes the crash: diff --git a/COFF/InputFiles.cpp b/COFF/InputFiles.cpp index 9e2345b0a..f47d612df 100644
2004 Jun 14
2
CVnn2 + nnet question
...rlying data is time-series in nature. I found the MASS and nnet package extremely useful (many thanks to the contributors). However I am getting an error while using the CVnn2 function...it says Fold 1 Size = 0, decay = 0, inner fold 1 Error in nnet.default(x,y,w,....): No weights to fit. Obliviously I am doing something wrong but am not able to figure it out. Do I have pass any weights? I am bit confused since the documentation of nnet suggests says "Wts: initial parameter vector. If missing chosen at Random". Has anybody faced the same error? I am using the latest R version on Linu...
2018 Jan 04
8
Linker Option support for ELF
Hello all, There was some interest from a number of a few people about adding support for embedded linker options to ELF. This would be an extension that requires linker support to actually work, but has significant prior art with PE/COFF as well as MachO both having support for this. The desire here is to actually add support to LLVM to pass along the necessary information into the object
2018 Jun 07
2
[lld] ObjFile::createRegular is oblivious of PendingComdat
Can you upload a reproducer? You can create it using the /linkrepro flag. Peter On Thu, Jun 7, 2018 at 2:50 PM, Reid Kleckner via llvm-dev < llvm-dev at lists.llvm.org> wrote: > GCC does comdats completely differently from the spec. Since you contacted > me about this off of the mailing list, I started investigating what they > do, and it is completely different. It's
2015 Mar 04
1
IP drop list
On 3/4/2015 12:45 PM, Dave McGuire wrote: > There is. But I already have a firewall, running on bulletproof > hardware that doesn't depend on spinning disks. I don't want to add > ANOTHER firewall when I already have a perfectly good one. Besides, my > mail server is built for...serving mail. Not being a firewall. You can implement whatever type of security you are
2009 Jan 08
2
EADM & Warhammer Online
Under Winecfg, I set my "E:" (secondary hard drive designation from Windows) to be readable as "H:" by Wine. I already have EADM installed in /media/disk/Program Files/Electronic Arts/EADM (hard disik one). When trying to load from terminal via "Wine" command it just calls up a screen when I tell it to execute "EADM/Core.exe" that complains it needs flash
2005 Sep 16
1
Add lines to density plot
Dear List, I am using R to learn bootstrapping concepts. Not to be oblivious to the contributed packages of boot and bootstrap, I have opted to do the following as a way to hone my R skills. One example I am trying to work through is the following: x <- 1:20 Observed <- sample(x,20) Resamples <- replicate(1000,sample(Observed,replace=TRUE)) Boot.Means <- apply(Resamples,2,mean)
1998 Jun 18
1
Windows app, MKS Source Integrity, Samba, and Unix
Novice question: I'm trying to use MKS Source Integrity, which is a (mostly) windows based source code control system to access a bunch of code stored in an MKS repository on an NT box and deposit the checked out files on a Unix box via a Samba share. (It's come to this, I'm porting Windows code to Unix, how depressing.) Anyway, the problem I'm having is that the Windows box
2012 Nov 27
0
[LLVMdev] MCJIT and Lazy Function Creators
Óscar Fuentes <ofv at wanadoo.es> writes: > Out of curiosity, I'm replacing the JIT with MCJIT on my compiler. As > all "external" functions are provided by the language's FFI mechanism, > it does > > MyExecutionEngine->DisableSymbolSearching(); > MyExecutionEngine->InstallLazyFunctionCreator(&MyLazyFunctionCreator); > > which works fine
2005 Mar 14
1
SWAT features
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, all. I've been working on SWAT in trunk for the last few weeks. My work started as nothing more than a cosmetic redesign, trying to modernize SWAT and offer a clean, sophisticated interface. As I've gotten deeper into this, it seems to me that SWAT could use some improvements to its overall design -- not just aesthetically, but
2018 Jan 04
0
Linker Option support for ELF
Saleem Abdulrasool via llvm-dev <llvm-dev at lists.llvm.org> writes: > Hello all, > > There was some interest from a number of a few people about adding support > for embedded linker options to ELF. This would be an extension that > requires linker support to actually work, but has significant prior art > with PE/COFF as well as MachO both having support for this. >
2004 Mar 22
2
problem with local logon using roaming profiles
I\'ve set up a samba 3 PDC which seems to be running perfectly fine. All workstations can log in properly and roaming profiles also works as expected. One of the workstations, a laptop, is on the road from time to time and therefor I naturally disconnected it from the network and did a routine logon to the domain i had setup before releasing it into the wild again. The logon failed... I had
2010 Dec 22
4
Asterisk hangs up call after 20s
Hello I have an Asterisk 1.4 server and two XLite softphones, where Asterisk and the local XLite phone are located in a LAN behind a NAT router, and the remote XLite phone is located elsewhere on the Net behind its own NAT router: http://img252.imageshack.us/img252/3749/asterisknat.png I'm having the following issue: When the _local_ XLite calls out the remote XLite, everything works fine;
2015 Aug 25
3
[RFC] design doc for straight-line scalar optimizations
Hi Escha, We certainly would love to generalize them as long as the performance doesn't suffer in general. If you have specific use cases that are regressed due to these optimizations, I am more than happy to take a look. On Mon, Aug 24, 2015 at 6:43 PM, escha <escha at apple.com> wrote: > > On Aug 24, 2015, at 11:10 AM, Jingyue Wu via llvm-dev < > llvm-dev at
2011 Dec 06
4
[LLVMdev] Comments on the bundle proposal
I just signed up to this mailing list so I don't have the original email with the proposal to reply to. I got the text forwarded to me though, and here are my thoughts on it: - The requirement that it should be easy for a pass to be oblivious to bundles isn't well defined. If this means that a pass should be able to run as if the bundles weren't present, then such a pass can easily