search for: oblivi

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

Did you mean: olivi
2007 Jul 05
3
LVM recovery questions
...port/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 address my particular need i was oblivious to LVM until now, so i did not save anything from the /etc dir on the hda disk can someone help me get a clue? thanks much, -- mike --------------------------------- Choose the right car based on your needs. Check out Yahoo! Autos new Car Finder tool. -------------- next part -------...
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
...ally work without it). I've searched the relevant help files for creating packages but haven't been able find anything about how to do this. As an example, library(Zelig) does what I'm trying to achieve. Thanks for your help! And sorry if there's an obvious answer to this that I am oblivious to. -Thomas -- Thomas J. Leeper PhD Candidate, ABD Department of Political Science Northwestern University leeper@u.northwestern.edu http://www.thomasleeper.com [[alternative HTML version deleted]]
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/...
2012 Nov 25
2
[LLVMdev] MCJIT and Lazy Function Creators
...ovided 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 outdoors and seems oblivious of the existence of MyLazyFunctionCreator. Is this a bug? Is there a workaround, other than subclassing JITMemoryManager and implementing my own getPointerToNamedFunction? (which would make the existence of ExecutionEngine::InstallLazyFunctionCreator pointless.)
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...
2018 Jan 04
8
Linker Option support for ELF
...opped by the linker so we can be certain that the options will not end up in the final binary even if the extension is not supported. The payload would be a 4-byte version identifier (to allow future enhancements) and a null-terminated string of options. This allows for the backend to be entirely oblivious to the data as the other backends and allows for extensions in the future without having to teach the backend anything about the new functionality (again, something which both of the other file formats support). As an example of how this can be useful, it would help with Swift support on Linux...
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
...minimum level of security I set up. A perimeter firewall alone does not protect you from an attacker who is able to compromise one machine and install a scanner which then scan all the systems on your internal network looking for exploitable weaknesses. All the while the perimeter firewall is oblivious to the attack going on internally and utterly incapable of mitigating it even if it were aware. Dem
2009 Jan 08
2
EADM & Warhammer Online
...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 & asks permission to load a page in my web-browser. Doesn't actually do that. The web-browser is oblivious of what this program is trying to do. The DL files for Warhammer Online are located in /media/disk2/EADM. Gosh, do I have to buy a physical copy of the game on disc to install or can I use EADM?
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 <- a...
1998 Jun 18
1
Windows app, MKS Source Integrity, Samba, and Unix
...its caching. What I would like to be able to do is use Windows to check out my files from the Windows NT box onto the unix box. Go to the unix box and do the compile-link-run-edit thing for awhile, then go back to the windows box and check in my changes. However, the windows box is completely oblivious to changes made on the unix side unless I disconnect the unix share prior to making any changes on the unix side, then reconnect it for windows access. In other words, it's completely unsafe it would seem to use Unix and windows to access the same files during a samba session. Is there som...
2012 Nov 27
0
[LLVMdev] MCJIT and Lazy Function Creators
...mechanism, > it does > > MyExecutionEngine->DisableSymbolSearching(); > MyExecutionEngine->InstallLazyFunctionCreator(&MyLazyFunctionCreator); > > which works fine with the JIT. However, MCJIT insists on resolving > unknown symbols by searching them outdoors and seems oblivious of the > existence of MyLazyFunctionCreator. > > Is this a bug? > > Is there a workaround, other than subclassing JITMemoryManager and > implementing my own getPointerToNamedFunction? (which would make the > existence of ExecutionEngine::InstallLazyFunctionCreator pointless....
2005 Mar 14
1
SWAT features
...http://www.devurandom.org/ Auburn University Libraries http://www.lib.auburn.edu/ Samba Team http://www.samba.org/ Have you ever stood and stared at it? Marveled at its beauty? Its genius? Billions of people just living out their lives, oblivious. - --from _The Matrix_(1999) -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFCNbYw4glRK0DaE8gRAkkPAJoDNIf/nqXuQ6pL4n/YlBPLVT8YXgCgmST8 EVMqHnAfQOpQZhEqkmoyP+k= =BMK7 -----END PGP SIGNATURE-----
2018 Jan 04
0
Linker Option support for ELF
...at the options will not end up in the final binary even if the > extension is not supported. So far LGTM. > The payload would be a 4-byte version > identifier (to allow future enhancements) and a null-terminated string of > options. > > This allows for the backend to be entirely oblivious to the data as the > other backends and allows for extensions in the future without having to > teach the backend anything about the new functionality (again, something > which both of the other file formats support). That is the part I have issues with. A linker has a lot of command...
2004 Mar 22
2
problem with local logon using roaming profiles
...e telling me I can\'t use the servers profile but the error message I receive is: \"The system cannot log you on now because the domain xxx is not available.\" I\'ve tried the same procedure on several workstations and get the same result on all but one (which btw seems perfectly oblivious to the other workstations problem with the task). I\'ve also checked the local policy settings in Windows to make sure the cached logons setting is > 0, and indeed it\'s set to the default 10. I\'ve checked around for anyone having the same problem but can\'t seem to find it...
2010 Dec 22
4
Asterisk hangs up call after 20s
...P/unused-008008e4' ================== I'm no SIP expert, but based on the debug session, before deciding to hang up, Asterisk tries 6 times to send an OK message to the remote XLite, and doesn't seem to get an answer. FWIW, after Asterisk has hung up, the remote XLite remains off-hook, oblivious to this error and keeps displaying "Call established": www.pastebin.com/x6MgnrpG There's also this oddity on line 50: "Scheduling destruction of SIP dialog". FWIW, in sip.conf, for the remote XLite user, I tried "nat=no" and "nat=yes", with no diffe...
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 damage the "bundling". One could think of cases, where certain instruction sequences should always stay together (idioms using larx/st...