search for: reporterror

Displaying 20 results from an estimated 27 matches for "reporterror".

2005 Oct 11
5
show message while loading - ajax
...k you in advance for your help. this is what I came up with but it doesn''t really work: function getHTML() { var url = "./scripts/rfiles.php"; var par = ""; var myAjax = new Ajax.Updater("fm-viewdetails", url, {method: ''get'', onFailure: reportError, onLoading: showLoading, onSuccess: hideLoading}); } function reportError() { alert(''an error has occured''); } function showLoading() { $("fm-viewstatus").style.backgroundImage = "url(images/spinner.gif)"; $("fm-viewstatus").style.backgroundRepe...
2020 Feb 04
3
Reporting source errors from MCCodeEmitter::encodeInstruction() ?
[apologies for this duplicate post: originally sent to lldb-dev by not paying attention to the address auto-completion] We have a backend for a target that at present only detects some assembler errors when emitting instructions (basically because the platform has configurable properties with dependencies between instructions and it was easier to check for their interaction late than try to
2006 Feb 20
1
[Prototype] onSuccess Event and Ajax.Updater bug in IE
...pars = ''item-data='' + item_data.innerHTML + ''&input-text='' + input.value; 4. new Ajax.Updater(''nutrients'',''fooddb/browser/nutrients'', {method : ''get'', parameters : pars, onFailure: reportError, onComplete: reportComplete, onSuccess: reportSuccess}); 5. } 6. function reportError(request) 7. { 8. alert(''Sorry. There was an error.'');...
2007 Jul 26
4
populate select box by ajax query with Prototype and IE7
Trying to populate a select box with a value passed in from another select box works great in Firefox, but using IE nothing happens, no data is getting returned back. I commented everything out and put alerts in there and the alerts work in IE but when ajax is getting used it seems to just die...Is this a bug or what am I doing wrong? --~--~---------~--~----~------------~-------~--~----~ You
2006 Feb 21
1
RE: [Prototype] onSuccess Event and, Ajax.Updater bug in IE
...9; + > item_data.innerHTML + ''&input-text='' > + input.value; > 4. > new > Ajax.Updater(''nutrients'',''fooddb/browser/nutrients'', > {method : ''get'', parameters : pars, onFailure: > reportError, > onComplete: reportComplete, onSuccess: > reportSuccess}); > 5. > } > 6. > function > reportError(request) > 7. > { > 8. > > al...
2012 Feb 21
7
samba 3.5.6 as PDC & LDAP - roaming profile problem
...user guid with 1355. USERENV(320.324) 18:58:34:758 GetUserGuid: Failed to get user guid with 1355. USERENV(320.324) 18:58:34:804 CheckRoamingShareOwnership: owner is S-1-1-0! USERENV(320.324) 18:58:34:804 IsCentralProfileReachable: Ownership check failed with 8007051B USERENV(320.324) 18:58:34:804 ReportError: Impersonating user. USERENV(320.324) 18:58:36:429 GetUserGuid: Failed to get user guid with 1355. USERENV(320.324) 18:58:36:445 ReportError: Impersonating user. USERENV(320.324) 18:58:37:023 RecurseDirectory: =mswin_all32bit;tpc=os_groups;tpc=mswin_2000;tpc=mswin_xp;tpc=modern_oses;tpc=Delphi;tpc=...
2020 Apr 13
2
LLVM 10 ORC2 issue with symbol resolution
...tion "foo" which cannot be resolved, then you have three errors: A failure to resolve "foo", A failure to materialize the symbols in M1, and a failure to materialize the symbols in M2. When such a cascade occurs ORC will usually report the original error(s) via ExecutionSession::reportError (which logs them to stderr by default) and return a derived error (e.g. failure-to-materialize) to callers. I believe you're seeing the logged error, and you will see a failure-to-materialize error if you log the result that reaches cantFail in your example above. -- Lang. On Mon, Apr 13, 20...
2016 Dec 07
2
Offset too large on scattered relocations
...If the offset is too large to fit in a scattered relocation, // we're hosed. It's an unfortunate limitation of the MachO format. if (FixupOffset > 0xffffff) { char Buffer[32]; format("0x%x", FixupOffset).print(Buffer, sizeof(Buffer)); Asm.getContext().reportError(Fixup.getLoc(), Twine("Section too large, can't encode " "r_address (") + Buffer + ") into 24 bits of scattered " "relocation entry."); return...
2017 Nov 13
4
How to objcopy via LLVM toolchain for armv7e-m ELF32LE?
Hi LLVM developers, As PR35281 mentioned: $ llvm-objcopy -O binary llvm-cortex-m7.elf llvm-cortex-m7.bin llvm-objcopy: 'llvm-cortex-m7.elf': The file was not recognized as a valid object file. if (ELFObjectFile<ELF64LE> *o = dyn_cast<ELFObjectFile<ELF64LE>>(&Binary)) https://github.com/llvm-mirror/llvm/blob/master/tools/llvm-objcopy/llvm-objcopy.cpp#L200
2004 Jun 15
0
XP roaming profile problem (access denied)
...ing in the USERENV.LOG file on the client machine: USERENV(208.154) 16:33:37:609 ReconcileFile: Failed to rename file <E:\scowman\Application Data\ICAClient\Cache\prf5049.tmp> to <E:\scowman\Application Data\ICAClient\Cache\2E78E792.DMA> with error = 32 USERENV(208.154) 16:33:37:609 ReportError: Impersonating user. USERENV(208.20c) 16:34:08:687 UnloadUserProfileP: CopyProfileDirectory returned FALSE for primary profile. Error = 32 USERENV(208.20c) 16:34:08:687 ReportError: Impersonating user. On the server side, I see only (log level = 2): scowman opened file scowman/Application Data...
2019 Oct 02
2
fixup_aarch64_movw support for COFF AArch64
Hi Everyone, I'm working Chromium targeting Windows on ARM64 platform. As a part of this work I ran into an issue related to llvm in Swiftshader. Currently fixup_aarch64_movw relocation type is not supported for COFF ARM64 (AArch64WinCOFFObjectWriter). As far as I see, Microsoft hasn't defined indicator for this relocation type. I haven't seen documented anywhere. For AArch32
2019 Oct 02
2
fixup_aarch64_movw support for COFF AArch64
...olved before the object file is > written - from AArch64AsmBackend.cpp, adjustFixupValue: > >   case AArch64::fixup_aarch64_movw: >     [...] >     if (!IsResolved) { >       // FIXME: Figure out when this can actually happen, and verify our >       // behavior. >       Ctx.reportError(Fixup.getLoc(), "unresolved movw fixup not yet " >                                       "implemented"); >       return Value; >     } > > Despite this, it seems like AArch64ELFObjectWriter::getRelocType does > return some ELF/AArch64 specific relocation types...
2016 Dec 07
0
Offset too large on scattered relocations
...ge to fit in a scattered relocation, > // we're hosed. It's an unfortunate limitation of the MachO format. > if (FixupOffset > 0xffffff) { > char Buffer[32]; > format("0x%x", FixupOffset).print(Buffer, sizeof(Buffer)); > Asm.getContext().reportError(Fixup.getLoc(), > Twine("Section too large, can't encode " > "r_address (") + Buffer + > ") into 24 bits of scattered " > "relocation entry.&...
2007 Mar 13
3
showResponse() Callback not being called in Firefox
Hello All --- I am using the AJAX Object to send form data to a PHP page. In IE, I am able to get a call back thru the showResponse(); However, in Firefox, the callback never gets executed. Here is my code: function showResponse() { alert(''Thank You. Your information has been sent''); } function processForm() { var url = "sendEmail.php"; var name =
2016 Dec 13
1
Offset too large on scattered relocations
...ge to fit in a scattered relocation, > // we're hosed. It's an unfortunate limitation of the MachO format. > if (FixupOffset > 0xffffff) { > char Buffer[32]; > format("0x%x", FixupOffset).print(Buffer, sizeof(Buffer)); > Asm.getContext().reportError(Fixup.getLoc(), > Twine("Section too large, can't encode " > "r_address (") + Buffer + > ") into 24 bits of scattered " > "relocation entry.&...
2000 Apr 16
0
Trying to get cmdline going...
...uffer, int bufferfill, int insize) > { > return fread(inbuffer, sizeof(char), insize, infile); > } but, the logic for getting the filenames seems broke: if(optind>=argc) if(strcmp(argv[optind],"-")){ infile=fopen(argv[optind],"rb"); if(infile==NULL) reporterror("Unable to open input file %s: %s\n",argv[optind], strerror(errno)); } if optind >=argc aren't you searching past the end of the arg array? strcmp() is segv'ing here. That's all... Eric P.S. I've been a big fan of cdparanoia for several years now. Aw...
2007 Nov 13
0
Ajax.Updater evalScripts:true
...rHTML="<centrer><img src=''http:// static.mymir.org/wait30trans.gif''></centrer>";}catch(e){} var pars = ''''; var myAjax = new Ajax.Updater( {success: z}, url, { method: ''get'', parameters: pars, onFailure: reportError, evalScripts:true }); return false; } page: ========== <script> MyJavascript </script> HTML CODE ========== Result: ========== HTML CODE ========== Any ideas? Vlad --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscr...
2020 Mar 18
4
[ORC JIT] -Resolving cross references in a multi-process scenario
...arched-for symbols have been assigned an address. So if your process is generating a set of symbols that may need to be transmitted to other sessions then you would write something like: auto Syms = ES.lookup(SearchOrder, SymbolsToTransmit, LookupKind::Static, SymbolState::Resolved); if (!Syms) reportError(Syms.takeError()); sendSymbolsToRemote(*Syms); Out of interest -- Is it necessary for your JIT itself to be split across two or more processes? I had always anticipated having a single ExecutionSession attached to the target process and then running just the compilers on other processes. That give...
2020 Sep 23
2
ORC JIT - Can modules independently managed with one LLJIT instance? + problems with ExecutionSession.lookup
..._t hash = calculateHash(name); printf(">>>%s @ 0x%p\n", name.data(), element.second.getAddress()); this->symbolsOfInterrest[hash].adr = element.second.getAddress(); } } else { ES.reportError(result.takeError()); } this->mtx.unlock(); return (this->undefinedReferences.size() == 0ull); } I also attached a reporter to the ES which will handle “llvm::orc::SymbolsNotFound” by copying SymbolVector to the “undefinedReferences”. If I call this function and have eve...
2020 Oct 01
2
ORC JIT - different behaviour of ExecutionSession.lookup?
...lanschi_test is // just an alias. MR.notifyEmitted(); // And you're done. } else { // If we get here then the "test" symbol couldn't be resolved for some // reason, so we need to report that error and notify everyone that // "Planschi_test" failed too. ES.reportError(TestSym.takeError()); MR.failMaterialization(); } The code above takes care of the case where the Planschi module can be found. The other possibility is that you get to the end of your process that causes modules to "pop up" (whatever this is) and there's still no Planschi module....