search for: has_error

Displaying 10 results from an estimated 10 matches for "has_error".

2011 Aug 15
2
respond_with with templates and http status when creating an object
Hi. When you use respond_with in a controller #create method and want to render XML the response gets the http status 201 (Created). But if you use a view to render this XML response_with uses the status 200 (Ok), for example when you use the gem rabl. I cannot determine if this matter is related to Rails or rabl. If it''s from Rails, is there a particular reason for this behavior?
2015 Sep 16
0
[ANNOUNCE] libdrm 2.4.65
...serialize drmPrimeFDToHandle Emil Velikov (20): drm: add interface to get drm devices on the system v3 Move -lm link flag to LIBADD vbltest: fix variable shadowing warning modetest: fix shadowing warnings intel: resolve shadowing warnings intel: error out on has_error in exec2 intel: introduce to_bo_gem() helper configure: enable -Wshadow when available amdgpu: remove unneeded -Wno-switch-enum flag modetest: annotate const data as such for good measure libkms: use static const for good measure radeon: cleanup bo/cs func tables...
2010 Nov 11
0
Rserve Installing error on AIX5.3..
...-o md5.o gcc -std=gnu99 -o Rserve -L/usr/local/lib/R/lib -lR -ldl ld: 0711-317 ERROR: Undefined symbol: .main ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. collect2: ld returned 8 exit status make: The error code from the last command is 1. Stop. + has_error=true + cd .. + true + error compilation failed for package 'Rserve' ERROR: compilation failed for package 'Rserve' + do_exit_on_error ** Removing '/usr/local/lib/R/library/Rserve' --------------------------- -- View this message in context: http://r.789695.n4.nabble...
2018 Mar 26
0
Interest in integrating a linux perf JITEventListener?
...F_JIT_VERSION; > + Header.TotalSize = sizeof(Header); > + Header.Pid = Pid; > + Header.Timestamp = perf_get_timestamp(); > + > + Dumpstream->write((char *) &Header, sizeof(Header)); > + > + // Everything initialized, can do profiling now. > + if (!Dumpstream->has_error()) > + SuccessfullyInitialized = true; > +} > + > +void PerfJITEventListener::NotifyObjectEmitted( > + const ObjectFile &Obj, > + const RuntimeDyld::LoadedObjectInfo &L) { > + > + if (!SuccessfullyInitialized) > + return; > + > + OwningBinary&l...
2016 Dec 29
1
Interest in integrating a linux perf JITEventListener?
Having something like this available in tree would definitely be useful. For simplicity, why don't we start with support for the second style? This is the long term useful one and would be a good starting point for getting the code in tree. Can you give a pointer to the patch so that I can assess the rough complexity? If it's simple enough, I'd be happy to help get it reviewed
2017 Feb 02
0
Interest in integrating a linux perf JITEventListener?
Hi, On 2016-12-29 13:17:50 -0800, Philip Reames wrote: > Having something like this available in tree would definitely be > useful. Cool. > For simplicity, why don't we start with support for the second style? This > is the long term useful one and would be a good starting point for getting > the code in tree. Works for me. > Can you give a pointer to the patch so that
2019 Aug 09
117
[RFC PATCH v6 00/92] VM introspection
The KVM introspection subsystem provides a facility for applications running on the host or in a separate VM, to control the execution of other VM-s (pause, resume, shutdown), query the state of the vCPUs (GPRs, MSRs etc.), alter the page access bits in the shadow page tables (only for the hardware backed ones, eg. Intel's EPT) and receive notifications when events of interest have taken place
2019 Aug 09
117
[RFC PATCH v6 00/92] VM introspection
The KVM introspection subsystem provides a facility for applications running on the host or in a separate VM, to control the execution of other VM-s (pause, resume, shutdown), query the state of the vCPUs (GPRs, MSRs etc.), alter the page access bits in the shadow page tables (only for the hardware backed ones, eg. Intel's EPT) and receive notifications when events of interest have taken place
2013 Jul 12
14
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...tool_output_file objFile(Filename.c_str(), FD); + PostIPOCompile PostIPOStage(_IPOPartMgr, _IPOFileMgr, true/*merge objects*/); + if (!_IPOFileMgr.CreateWorkDir(errMsg)) + return true; - bool genResult = generateObjectFile(objFile.os(), errMsg); - objFile.os().close(); - if (objFile.os().has_error()) { - objFile.os().clear_error(); - sys::fs::remove(Twine(Filename)); + performIPO(errMsg, true); + + if (!PostIPOStage.Compile(errMsg)) return true; - } - objFile.keep(); - if (genResult) { - sys::fs::remove(Twine(Filename)); + *name = PostIPOStage.getMergedObjFile()->get...
2020 Jul 21
87
[PATCH v9 00/84] VM introspection
The KVM introspection subsystem provides a facility for applications running on the host or in a separate VM, to control the execution of other VMs (pause, resume, shutdown), query the state of the vCPUs (GPRs, MSRs etc.), alter the page access bits in the shadow page tables (only for the hardware backed ones, eg. Intel's EPT) and receive notifications when events of interest have taken place