search for: resourcemanag

Displaying 20 results from an estimated 23 matches for "resourcemanag".

Did you mean: resourcemanager
2008 Apr 19
3
Trusted storage failed to initialize
What does this mean? Code: Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object. at System.Resources.ResourceManager.GetSatelliteAssembliesFromConfig() at System.Resources.ResourceManager.TryLookingForSatellite(CultureInfo lookForCulture) at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) at System.Resources.ResourceManager.Get...
2008 May 31
3
.Net/regasm error on rc3
...info class 9 not supported yet fixme:thread:NtQueryInformationThread info class 9 not supported yet fixme:thread:NtQueryInformationThread info class 9 not supported yet Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object. at System.Resources.ResourceManager.GetSatelliteAssembliesFromConfig() at System.Resources.ResourceManager.TryLookingForSatellite(CultureInfo lookForCulture) at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents) at System.Resources.ResourceManager.Get...
2011 Jul 03
7
Age of Conan, Wine 1.3.23, Mac OS 10.6.7 ?
...Awesomium.dll seems to need it * I run Age of Conan: "cd ~/.wine/drive_c/Program\ Files/Funcom/Age\ of\ Conan/; wine AgeOfConan.exe" (the patcher runs again and installs another 17MB worth of stuff) I eventually get the following debug statments: Code: [2011-07-02 23:58:06Z #0] [ID:0] [ResourceManager] Resource 1020003:3532063 does not have correct md5 (b3348fb60e3de32723374d18a6717489!=9ee83f072acba547888b33702a06fc77) [2011-07-02 23:58:09Z #0] [ID:0] [HTTPManager] Files:27/114 (4.4/17.9 MB) Speed:453.6 KB/s [2011-07-02 23:58:12Z #0] [ID:0] [RDBManager] Inserted 1 of 1 resources from pack ht...
2020 May 10
2
[llvm-mca] Resource consumption of ProcResGroups
...4-unknown-unknown > -march=x86-64 -mcpu=haswell` > crashes (because fxrstor requests > `HWPort0,HWPort6,HWPort23,HWPort05,HWPort06,HWPort15,HWPort0156`, so > HWPort0156 ends up asserting because 0,1,5, and 6 are all taken), so I > added: > ``` > --- a/llvm/lib/MCA/HardwareUnits/ResourceManager.cpp > +++ b/llvm/lib/MCA/HardwareUnits/ResourceManager.cpp > @@ -292,7 +292,7 @@ void ResourceManager::issueInstruction( > ResourceState &RS = *Resources[Index]; > > - if (!R.second.isReserved()) { > + if (!R.second.isReserved() && RS.isReady()) { > ResourceRef Pi...
2011 Oct 23
2
can't run DirectX applications properly - window garbled
...at peter ~/.wine/drive_c/Program Files/PixPlant2 $ wine PixPlant.exe fixme:gdi:ExtCreatePen Hatches not implemented Creating resource group General Creating resource group Internal Creating resource group Autodetect SceneManagerFactory for type 'DefaultSceneManager' registered. Registering ResourceManager for type Material Registering ResourceManager for type Mesh Registering ResourceManager for type Skeleton MovableObjectFactory for type 'ParticleSystem' registered. OverlayElementFactory for type Panel registered. OverlayElementFactory for type BorderPanel registered. OverlayElementFactor...
2009 May 07
14
WINE Help
Alright I really need some help with this. I have been trying to get Roblox running for my Son and this has proved to be extremely difficult.. (Wine really does make you want to whine.. lol) I try to run Roblox.exe and Robloxapp.exe and I get this terminal output: Code: ons/version-b7d710b83ef74c14/RobloxApp.exe' fixme:advapi:RegisterEventSourceW ((null),L"PDH"): stub
2020 May 10
2
[llvm-mca] Resource consumption of ProcResGroups
> On May 9, 2020, at 5:12 PM, Andrea Di Biagio via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > The llvm scheduling model is quite simple and doesn't allow mca to accurately simulate the execution of individual uOPs. That limitation is sort-of acceptable if you consider how the scheduling model framework was originally designed with a different goal in mind (i.e. machine
2008 Jun 07
34
autocad 2008 and wine rc 4
installation starts but after autocad 2008 doesn't install.. :( :( :( [/code]
2009 Apr 06
1
Need Help with StatET Error/Bug? on Ubuntu 8.10 amd64
....eclipse.jface.resource.URLImageDescriptor.getFilePath(URLImageDescriptor.java:138) at org.eclipse.jface.resource.URLImageDescriptor.createImage(URLImageDescriptor.java:157) at org.eclipse.jface.resource.ImageDescriptor.createResource(ImageDescriptor.java:165) at org.eclipse.jface.resource.DeviceResourceManager.allocate(DeviceResourceManager.java:56) at org.eclipse.jface.resource.AbstractResourceManager.create(AbstractResourceManager.java:88) at org.eclipse.jface.resource.LocalResourceManager.allocate(LocalResourceManager.java:82) at org.eclipse.jface.resource.AbstractResourceManager.create(AbstractR...
2020 Sep 16
4
OrcV1 removal
...an early look the main elements are defined in Core.h: *ResourceTracker* -- Your handle to remove code from a JITDylib. Also allows tracking to be merged onto another tracker (reducing the administrative overhead required for tracking). *ResourceKey* -- An opaque key associated with each tracker. *ResourceManager* -- A listener interface to be notified when resources associated with a given key should be removed. Each JITDylib will have a default tracker (accessible via JITDylib::getDefaultResourceTracker), and allow creation of new trackers (via JITDylib::createResourceTracker). When adding a Materializ...
2018 Mar 02
0
[RFC] llvm-mca: a static performance analysis tool
...essor > schedulers. A Scheduler is responsible for tracking data dependencies, and > dynamically select which processor resources are consumed/used by instructions. > > Internally, the Scheduler class delegates the management of processor resource > units and resource groups to the ResourceManager class. ResourceManager is also > responsible for selecting resource units that are effectively consumed by > instructions. For example, if an instruction consumes 1cy of a resource group, > the ResourceManager object selects one of the available units from the group; by > default, i...
2018 Mar 01
9
[RFC] llvm-mca: a static performance analysis tool
...to emulate multiple processor schedulers. A Scheduler is responsible for tracking data dependencies, and dynamically select which processor resources are consumed/used by instructions. Internally, the Scheduler class delegates the management of processor resource units and resource groups to the ResourceManager class. ResourceManager is also responsible for selecting resource units that are effectively consumed by instructions. For example, if an instruction consumes 1cy of a resource group, the ResourceManager object selects one of the available units from the group; by default, it uses a round-robin...
2018 Mar 02
0
[RFC] llvm-mca: a static performance analysis tool
...lers.  A Scheduler is responsible for tracking data > dependencies, and > dynamically select which processor resources are consumed/used by > instructions. > > Internally, the Scheduler class delegates the management of processor > resource > units and resource groups to the ResourceManager class. > ResourceManager is also > responsible for selecting resource units that are effectively consumed by > instructions.  For example, if an instruction consumes 1cy of a > resource group, > the ResourceManager object selects one of the available units from the > group; b...
2018 Mar 02
0
[RFC] llvm-mca: a static performance analysis tool
...; schedulers. A Scheduler is responsible for tracking data dependencies, and > dynamically select which processor resources are consumed/used by > instructions. > > Internally, the Scheduler class delegates the management of processor > resource > units and resource groups to the ResourceManager class. ResourceManager > is also > responsible for selecting resource units that are effectively consumed by > instructions. For example, if an instruction consumes 1cy of a resource > group, > the ResourceManager object selects one of the available units from the > group; by...
2018 Mar 02
5
[RFC] llvm-mca: a static performance analysis tool
...; schedulers. A Scheduler is responsible for tracking data dependencies, and > dynamically select which processor resources are consumed/used by > instructions. > > Internally, the Scheduler class delegates the management of processor > resource > units and resource groups to the ResourceManager class. ResourceManager > is also > responsible for selecting resource units that are effectively consumed by > instructions. For example, if an instruction consumes 1cy of a resource > group, > the ResourceManager object selects one of the available units from the > group; by...
2020 Sep 24
2
OrcV1 removal
...: >> >> *ResourceTracker* -- Your handle to remove code from a JITDylib. Also >> allows tracking to be merged onto another tracker (reducing the >> administrative overhead required for tracking). >> *ResourceKey* -- An opaque key associated with each tracker. >> *ResourceManager* -- A listener interface to be notified when resources >> associated with a given key should be removed. >> >> Each JITDylib will have a default tracker (accessible via >> JITDylib::getDefaultResourceTracker), and allow creation of new trackers >> (via JITDylib::crea...
2020 Sep 07
2
OrcV1 removal
Hi Andres, Postgres uses removable code support and Orcv1. I does make me quite > worried to see a phase where there'll be no viable way of using both in > llvm. Why isn't the right answer here to at lest develop the > replacement as a set of patches / as a branch that then can be merged as > a whole / shortly after each other, rather than just starting to develop > a
2011 Aug 01
6
AgeOfConan successfully started but without textures ...
[Image: http://clip2net.com/clip/m78332/thumb640/1312198861-clips32590-536kb.png ] (http://clip2net.com/s/15qO7) I have run ConanPatcher.exe with -opengl option.
2001 Oct 30
1
Some questions about networking with WinNT/2K
Hi all, I've had 2.2.1a working well on a small network with Win98 clients for some time now. I'm having a bit of a struggle getting a Win2K client working, though. I think the problem is as much my lack of understanding of NT/2000 as of Samba. Answers to any of the following questions would be of help as I try to get things up and running: 1. What exactly does Win2K mean by a
2007 Dec 31
2
webgen 0.4.7 relased/infos on 0.5.0
...t for some plugins that I want to have in the release like the gallery and sipttra file handlers. I think it will be released in January or February. A short status update on the development (if you want to stay uptodate constantly, consider subscribing to the webgen-commits mailing list): * Core/ResourceManager and Tag/Resource are not implemented and working * a preliminary version of File/BlogHandler implemented which creates a blog like interface for a collection of pages * many tags and all content processors from trunk implemented, some tags are still missing * many small fixes The devel version i...