search for: unhand

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

Did you mean: unhandy
2015 Dec 10
6
CentOS 7, NetworkMangler, and ipv6
We've started having a problem with a CentOS 7 server. It looses its IPv6 address, if I understand this issue correctly. We can get in, if we do ssh -4, though. In the logs, I'm seeing this about twice an hour: <warn> (pid 98466) unhandled DHCP event for interface ens3f0 Now, in googling, I get very few hits putting quotes around "unhanded dhcp exception" - in fact, the only one I found that seemed to talk about it was from someone's slackware box, where there was some sort of configuration, perhaps similar to ifcfg...
2001 Dec 03
1
GetCurrentThreadId()
Does anyone have any ideas as to why my application always crashes on calls to "kernel32.GetCurrentThreadId()"? Every time I call GCTID I get: - a call to UnhandledExceptionFilter() - producing an "Unhanded privileged instruction at address 0x40112584" message box (which I've never seen popup, I only know it happens because I'm reading the --debugmsg +relay output.) Any ideas? Quentin.
2015 Dec 10
0
CentOS 7, NetworkMangler, and ipv6
...at 5-cent.us> wrote: > We've started having a problem with a CentOS 7 server. It looses its IPv6 > address, if I understand this issue correctly. We can get in, if we do ssh > -4, though. > > In the logs, I'm seeing this about twice an hour: > <warn> (pid 98466) unhandled DHCP event for interface ens3f0 > > Now, in googling, I get very few hits putting quotes around "unhanded dhcp > exception" - in fact, the only one I found that seemed to talk about it > was from someone's slackware box, where there was some sort of > configuration,...
2015 Dec 10
0
Re: CentOS 7, NetworkMangler, and ipv6
...0, m.roth at ... wrote: > We've started having a problem with a CentOS 7 server. It looses its IPv6 > address, if I understand this issue correctly. We can get in, if we do ssh > -4, though. > > In the logs, I'm seeing this about twice an hour: > <warn> (pid 98466) unhandled DHCP event for interface ens3f0 > > Now, in googling, I get very few hits putting quotes around "unhanded dhcp > exception" - in fact, the only one I found that seemed to talk about it > was from someone's slackware box, where there was some sort of > configuration,...
2015 Dec 10
1
CentOS 7, NetworkMangler, and ipv6
...>> We've started having a problem with a CentOS 7 server. It looses its >> IPv6 address, if I understand this issue correctly. We can get in, >> if we do ssh -4, though. >> >> In the logs, I'm seeing this about twice an hour: >> <warn> (pid 98466) unhandled DHCP event for interface ens3f0 >> >> Now, in googling, I get very few hits putting quotes around "unhanded >> dhcp exception" - in fact, the only one I found that seemed to talk >> about it was from someone's slackware box, where there was some sort of >...
2007 Apr 18
0
Cusor not synced up ... and installs crashing
...so I can not get a new virtual machine installed. I get the machine created and the install is running. When I get to the software selection screen I select the software to be installed and click "Next" and then the process hangs. After a few minutes I get a Python error. "An unhanded exception has occurred. This is most likely a bug" etc. I have saved a copy of the system state to a remote host and will post a bug as requested. I had checked the install extra package from Centos.. Based on the line "RepoError: Cannot find a valid baseurl for repo: Packagesfr...
2015 Dec 10
1
CentOS 7, NetworkMangler, and ipv6
...>> We've started having a problem with a CentOS 7 server. It looses its >> IPv6 address, if I understand this issue correctly. We can get in, >> if we do ssh -4, though. >> >> In the logs, I'm seeing this about twice an hour: >> <warn> (pid 98466) unhandled DHCP event for interface ens3f0 >> >> Now, in googling, I get very few hits putting quotes around "unhanded >> dhcp >> exception" - in fact, the only one I found that seemed to talk about it >> was from someone's slackware box, where there was some sor...
2010 Oct 04
13
HTML problem with Downloader from Battlenet
i SCOURED the web for a FLACKING fix for this LAME ass problem WHY blizzard has to do lame shit like this and not use a NORMAL ass text document for there LAME ass agreement is beyond me FEATHER MORE why they make me scroll to the FLACKING botem of it frustrates me to no end... I could have just BYPASSED the POS problem otherwise but noooooo i have to go to the extremes JUST to play a LDFKJSDF
2005 Dec 28
9
Idiom question - assertions which aren''t in tests
All, Although I''ve been keeping an eye on Ruby for several years now, I don''t have a huge amount of experience with it. So please forgive me if I''m missing something obvious. I''m in the process of writing my first really "serious" Rails app and would appreciate your advice. I am wondering if there is a standard idiom for including assertions in
2014 Apr 04
0
Wine release 1.7.16
...s with incorrect TLS usage crash on startup (TLS slot index allocation must start at non-zero indexes (Brothers in Arms: Hell's Highway, ProShow Gold 5/6) 21576 Touch screen loses calibration when in full screen mode - specifically AtomixMP3.exe 21956 Empire Earth 1.00 and 1.04 crash with unhanded page fault 22016 R.U.S.E. Public Beta in-game rendering is washed out 23601 Windows Movie Maker 2.6 reports 'A new collections file cannot be created' (needs 'Microsoft' folder in CSIDL_LOCAL_APPDATA) 24702 Pro Evolution Soccer 2010 DEMO: shows black screen with stars and...
2016 Feb 03
2
[RFC] Error handling in LLVM libraries.
...> return E2; > > // Proceed with 'bar' if 'Err' is handled. > } > > A key observation is that catchTypedErrors itself returns an error. It has > to, because you may not have provided it with an exhaustive list of > handlers, and it needs a way to return unhanded errors. So: If no handler > gets invoked, catchTypedErrors will just return 'Err' again. If 'Err' was > an error, then E2 will also be an error, and you'll immediately return from > 'bar', passing responsibility for the error up the stack. So far so good. >...
2016 Feb 03
6
[RFC] Error handling in LLVM libraries.
...return TypedError(); })) return E2; // Proceed with 'bar' if 'Err' is handled. } A key observation is that catchTypedErrors itself returns an error. It has to, because you may not have provided it with an exhaustive list of handlers, and it needs a way to return unhanded errors. So: If no handler gets invoked, catchTypedErrors will just return 'Err' again. If 'Err' was an error, then E2 will also be an error, and you'll immediately return from 'bar', passing responsibility for the error up the stack. So far so good. Now consider what w...
2016 Feb 03
2
[RFC] Error handling in LLVM libraries.
...>> // Proceed with 'bar' if 'Err' is handled. >> } >> >> A key observation is that catchTypedErrors itself returns an error. It >> has to, because you may not have provided it with an exhaustive list of >> handlers, and it needs a way to return unhanded errors. So: If no handler >> gets invoked, catchTypedErrors will just return 'Err' again. If 'Err' was >> an error, then E2 will also be an error, and you'll immediately return from >> 'bar', passing responsibility for the error up the stack. So far s...
2016 Feb 03
2
[RFC] Error handling in LLVM libraries.
Hi Mehdi, > I’m not sure to understand this claim? You are supposed to be able to extend and subclass the type of diagnostics? (I remember doing it for an out-of-tree LLVM-based project). You can subclass diagnostics, but subclassing (on its own) only lets you change the behaviour of the diagnostic/error itself. What we need, and what this patch supplies, is a way to choose a particular
2016 Feb 03
13
[RFC] Error handling in LLVM libraries.
Hi All, I've been thinking lately about how to improve LLVM's error model and error reporting. A lack of good error reporting in Orc and MCJIT has forced me to spend a lot of time investigating hard-to-debug errors that could easily have been identified if we provided richer error information to the client, rather than just aborting. Kevin Enderby has made similar observations about the