search for: impl

Displaying 20 results from an estimated 737 matches for "impl".

Did you mean: cmpl
2003 Nov 27
1
Winword keeps on running Configuration Setup
...t (see below). Can anyone help me stop the configuration setup from running? And how about the error messages, should I just ignore them? Thanks. ---------------------- $ wine "c/Program Files/Microsoft Office/Office/WINWORD.EXE" fixme:x11drv:X11DRV_GetDeviceCaps (0x74): CAPS1 is unimplemented, will return 0 fixme:advapi:SetThreadToken ((nil), (nil)): stub (NT impl. only) fixme:ntdll:NtQueryInformationToken (0xdc,1,0x4073e6b8,80,0x4073e70c): stub fixme:advapi:SetThreadToken ((nil), 0xd8): stub (NT impl. only) fixme:ntdll:NtQueryInformationToken (0xec,8,0x41426690,4,0x41426694): st...
2001 Nov 27
0
running office 2000 under wine without windows
...ck FIXME:pthread_rwlock_unlock FIXME:pthread_rwlock_rdlock FIXME:pthread_rwlock_unlock fixme:ntdll:NtOpenThreadToken (0xfffffffe,0x0000000f,0x00000001,0x3f11ec00): stub fixme:ntdll:NtOpenThreadToken (0xfffffffe,0x00000004,0x00000001,0x405b57a0): stub fixme:advapi:SetThreadToken ((nil), 0): stub (NT impl. only) fixme:ntdll:NtOpenProcessToken (0xffffffff,0x00000008,0x405b57a4): stub fixme:ntdll:NtQueryInformationToken (0000cafe,1,0x405b55e8,80,0x405b563c): stub fixme:advapi:SetThreadToken ((nil), cafe): stub (NT impl. only) fixme:ntdll:NtOpenThreadToken (0xfffffffe,0x00000008,0x00000001,0x40db65ac):...
2003 May 24
0
Error 2352 while installing MSOffice
...'CABINET.DLL' may be missing. The weird part is that on the MSOffice folder there are allready uncompressed files ... After responding OK to the error message, it started to rollback the install and finally I got the following output: fixme:advapi:SetThreadToken ((nil), (nil)): stub (NT impl. only) fixme:advapi:SetThreadToken ((nil), 0xcafe): stub (NT impl. only) fixme:advapi:SetThreadToken ((nil), (nil)): stub (NT impl. only) fixme:advapi:SetThreadToken ((nil), 0xcafe): stub (NT impl. only) fixme:cabinet:FDICreate (pfnalloc == ^0x3f0e62b0, pfnfree == ^0x3f0e62be, pfnope n == ^0x3f0e62...
2004 May 03
0
wine-users digest, Vol 1 #1756 - 15 msgs
...ight? > > mmtime pid=1790 tid=1790 > > pid must be 'Process id', and tid 'Thread id'. Maybe some benchmarking thing > ? I think it's just information, not ht esign of any trouble. > > > --and more problems with the sound > > fixme:dsound:IDirectSoundImpl_SetCooperativeLevel (0x403b6ce0,00010021,2):stub > > fixme:dsound:IDirectSoundImpl_SetCooperativeLevel (0x403b6ce0,00010021,2):stub > > stubs are - if I understood correctly - ways of going around a problem; > maybe because the whole implementing of sound isn't done yet. You can...
2006 Feb 20
0
Ajax and tables
...the contents of the ajax update show up above the table. Does anyone have a good suggestion of how to do this? Code snippets below Thanks, Gareth Here row, done for each feature. <tr> <td><%=h feature.description %></td> <% if @session[:vendor] %> <% impl = feature.implementation( @session[:vendor].id ) %> <div id=''<%= feature.id %>''> <td bgcolor =<%= impl.supports( FeatureImplementation::YES ) ? ''green'' : ''white'' %>> <%= link_to_remote "click",...
2015 Feb 24
2
[LLVMdev] Removing contention in PassRegistry accesses to speed up compiles
...1.17% caching_compile caching_compiler_test [.] llvm::SelectionDAGISel::SelectCodeCommon(llvm::SDNode*, unsigned char const*, unsigned int) + 1.10% caching_compile caching_compiler_test [.] operator new(unsigned long) + 1.07% caching_compile caching_compiler_test [.] llvm::SmallPtrSetImpl::insert_imp(void const*) + 1.00% caching_compile caching_compiler_test [.] llvm::PMDataManager::removeNotPreservedAnalysis(llvm::Pass*) + 0.99% caching_compile caching_compiler_test [.] operator delete(void*) + 0.69% caching_compile caching_compiler_test [.] llvm::sys::MemoryFence()...
2020 Sep 13
2
libva-utils test siuite is crashing in nouveau sriver
...essage_ = {ptr_ = 0xebe6e1ca084a2300}} #3 0x000055b48d29ed34 in VAAPI::VAAPICreateContextToFail_CreateContextWithNoConfig_Test::TestBody (this=0x55b48e39c430) at test_utils.h:36 No locals. #4 0x000055b48d296e23 in testing::Test::Run (this=0x55b48e39c430) at ../test/gtest/src/gtest.cc:2474 impl = 0x55b48d91af60 impl = <optimized out> #5 testing::Test::Run (this=0x55b48e39c430) at ../test/gtest/src/gtest.cc:2465 impl = <optimized out> impl = <optimized out> #6 testing::TestInfo::Run (this=0x55b48d91fe00) at ../test/gtest/src/gtest.cc:2656...
2019 Jun 27
0
Re: [PATCH 08/11] Rust bindings: Fix memory management and format the file
...ot; { @@ -79,6 +81,11 @@ extern \"C\" { fn guestfs_last_errno(g: *mut guestfs_h) -> c_int; } +extern \"C\" { + fn free(buf: *const c_void); +} + + const GUESTFS_CREATE_NO_ENVIRONMENT: i64 = 1; const GUESTFS_CREATE_NO_CLOSE_ON_EXIT: i64 = 2; @@ -136,77 +143,136 @@ impl CreateFlags { } struct NullTerminatedIter<T: Copy + Clone> { - p: *const T + p: *const *const T, } impl<T: Copy + Clone> NullTerminatedIter<T> { - fn new(p: *const T) -> NullTerminatedIter<T> { - NullTerminatedIter{ p } + fn new(p: *const *const T...
2019 Jun 27
0
[PATCH 7/9] Rust bindings: Complete actions
...fn guestfs_create_flags(flags: i64) -> *mut guestfs_h; fn guestfs_close(g: *mut guestfs_h); + fn guestfs_last_error(g: *mut guestfs_h) -> *const c_char; + fn guestfs_last_errno(g: *mut guestfs_h) -> c_int; } const GUESTFS_CREATE_NO_ENVIRONMENT: i64 = 1; @@ -132,6 +135,29 @@ impl CreateFlags { } } +struct NullTerminatedIter<T: Copy + Clone> { + p: *const T +} + +impl<T: Copy + Clone> NullTerminatedIter<T> { + fn new(p: *const T) -> NullTerminatedIter<T> { + NullTerminatedIter{ p } + } +} + +impl<T: Copy + Clone> Itera...
2005 Jul 18
1
FastAgi ...fastagi-mapping missing error
salam .... if anyone uses fastagi then plz help me... The AGISERVER starts successfully: Jul 18, 2005 2:54:50 AM net.sf.asterisk.util.impl.JavaLoggingLog info INFO: Thread pool started. Jul 18, 2005 2:54:51 AM net.sf.asterisk.util.impl.JavaLoggingLog info INFO: Listening on *:4573. but I m getting this error when i call extension Jul 18, 2005 2:55:13 AM net.sf.asterisk.util.impl.JavaLoggingLog info INFO: Received connection. Jul...
2019 Aug 05
0
[PATCH 1/2] Rust bindings: Add Event structs, Clarify Handle lifetime
...b/generator/rust.ml @@ -72,6 +72,42 @@ extern \"C\" { } "; + (* event enum *) + pr "\n"; + pr "pub enum Event {\n"; + List.iter ( + fun (name, _) -> + pr " %s,\n" (snake2caml name) + ) events; + pr "}\n\n"; + + pr "impl Event {\n"; + pr " pub fn to_u64(&self) -> u64 {\n"; + pr " match self {\n"; + List.iter ( + fun (name, i) -> + pr " Event::%s => %d,\n" (snake2caml name) i + ) events; + pr " }\n"; + pr " }\...
2020 Aug 05
2
Debugging a potential bug when generating wasm32
.... I'm currently trying to debug a bug in a LLVM-generated Wasm code. The bug could be in the code that generates LLVM (rustc) or in the LLVM, I'm not sure yet. LLVM IR and Wasm can be seen in [1]. The problem is this line: (import "GOT.func" "_ZN4core3fmt3num3imp52_$LT$impl$u20$core..fmt..Display$u20$for$u20$i32$GT$3fmt17h9ba9fea9cadf7bd5E" (global (;3;) (mut i32))) The same symbol is already imported from "env" in the same module: (import "env" "_ZN5core3fmt3num3imp52_$LT$impl$u20$core..fmt..Display$u20$for$u20$i32$GT$3fmt17h9ba9fe...
2019 Jun 27
16
[PATCH 1/9] Rust bindings: Add Rust bindings
...* it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Frankl...
2006 Mar 16
0
Re: Can dtrace agent of JDK be used in IBM Websphere?
...d address (0x0) in action #1 at DIF offset 64 dtrace: error on enabled probe ID 2 (ID 5639: dvm2514:libdvmpi.so:cbMethodExit:m ethod-return): invalid address (0x0) in action #3 at DIF offset 28 ................. Long time passed, press ctrl-c: com.ibm.websphere.models.config.loggingservice.http.impl.HttpPackageImpl <cli nit> 30583 com.ibm.websphere.models.config.topology.cell.impl.CellPackageImpl <clinit> 30833 com.ibm.websphere.models.config.variables.impl.VariablesPackage...
2009 Jul 23
0
[PATCH server] Add network QMF apis.
...gt; --- src/ovirt-agent/lib/ovirt.rb | 3 + .../ovirt/controllers/hardwarepool_controller.rb | 2 +- .../lib/ovirt/controllers/network_controller.rb | 30 +++++++++++++++ .../lib/ovirt/controllers/ovirt_controller.rb | 25 ++++++++++++ .../physical_network_impl_controller.rb | 13 ++++++ .../lib/ovirt/controllers/vlan_impl_controller.rb | 13 ++++++ .../lib/ovirt/controllers/vmdef_controller.rb | 5 ++ src/ovirt-agent/ovirt-agent.rb | 4 +- src/ovirt-agent/ovirt-test.rb | 40 +++++++++++...
2008 May 09
1
SSOAP: arguments passed as
Hi, I have a SOAP service, provided by BioMoby which I'd like to call via SSOAP. My service breaks during genSOAPClientInterface() genSOAPClientInterface(def=service, verbose = TRUE) Operation MassBank_Simple_2 Error: Cannot resolve SOAP type in empty context Problem seems to be that there are no <types> defined in the WSDL, and that the service passes input/output as a single XML BLOB in the body (full WSDL below): <wsdl:input name="MassBank_Simple_2Request"> <w...
2019 Jun 27
4
Re: [PATCH 9/9] Rust bindings: Complete bindings
Patch 9 is a kind of dumping ground of all kinds of stuff. It may be better to spend some time with git rebase -i trying to work this into more coherent patches. Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-p2v converts physical machines to virtual machines. Boot with a live
2003 Aug 18
1
The specified domain either doesn't exist or couldn't be contacte d.
...some suggestions from Microsoft Knowledge base like removing the DNS first, trying to join the domain, and then add the DNS. Any comments will be appreciated. Below is a copy of my smb.conf: **************************************************************************** ********************* [root@impl-ldap samba]# more smb.conf [global] workgroup = MYDOMAIN server string = Samba Server PDC running %v printcap name = /etc/printcap load printers = yes ; guest account = pcguest log file = /var/log/samba/log.%m max log size = 50 security = user encrypt passwords = yes soc...
2020 Feb 20
1
[PATCH] lib: Move guestfs_device_index impl from daemon to library.
Although the commit message ties this to https://bugzilla.redhat.com/1804207, in fact I believe this commit could be applied independently. It's a simple optimization. Rich.
2008 Apr 15
6
[LLVMdev] PATCH: Use size reduction -- wave2
...lready performed a test merge and it also passes all tests (deja, clang, test-suite). Cheers, Gabor --------------------- STATS ------------------ ggreif$ ls -l wave2* -rw-r--r-- 1 ggreif ggreif 79367 Apr 16 00:20 wave2-essentials.diff -rw-r--r-- 1 ggreif ggreif 51795 Apr 16 00:24 wave2-impl.diff -rw-r--r-- 1 ggreif ggreif 25300 Apr 16 00:25 wave2-nittygritty.diff ggreif$ wc wave2* 2189 9005 79367 wave2-essentials.diff 1408 4793 51795 wave2-impl.diff 521 1995 25300 wave2-nittygritty.diff 4118 15793 156462 total -------------- next part -----...