Displaying 7 results from an estimated 7 matches for "class_type".
2009 Jul 21
1
[PATCH server] Fixed db-omatic so it doesn't segfault because of newer qmf api.
...here..
synchronize do
@@ -289,7 +289,7 @@ class DbOmatic < Qpid::Qmf::Console
values[:broker_bank] = obj.object_id.broker_bank
values[:agent_bank] = obj.object_id.agent_bank
values[:obj_key] = obj.object_id.to_s
- values[:class_type] = obj.klass_key[1]
+ values[:class_type] = type
values[:timed_out] = false
values[:synced] = false
@logger.info "New object type #{type}"
@@ -339,9 +339,9 @@ class DbOmatic < Qpid::Qmf::Console
end
def objec...
2014 Oct 27
2
[LLVMdev] First-class debug info IR: MDLocation
...ikie at gmail.com> wrote:
>
>> Notice that only the links to parents (i.e., `context:`) are explicit
>> here -- backlinks are implied. For example, !7 and !8 point to !6, but
>> not the reverse.
>
> This may be a problem - the difference between nodes in a structure/class_type's member list, and those that are not in the member list but refer to the class/structure as their parent is meaningful. Type units use this distinction to avoid emitting instantiation-specific data into the canonical type unit (nested classes, implicit special members, member template instanti...
2007 Apr 07
1
Web Site Trak errors and Python tracebacks
...ython-support/python2.4/libsvn/core.py", line 2982, in
<lambda>
__setattr__ = lambda self, name, value: _swig_setattr(self,
apr_pool_t, name, value)
File "/var/lib/python-support/python2.4/libsvn/core.py", line 22, in
_swig_setattr
return _swig_setattr_nondynamic(self,class_type,name,value,0)
File "/var/lib/python-support/python2.4/libsvn/core.py", line 17, in
_swig_setattr_nondynamic
self.__dict__[name] = value
RuntimeError: instance.__dict__ not accessible in restricted mode
Rgds
Scott
2007 Apr 11
1
problem with wiki - Trac internal error
...port/python2.4/libsvn/core.py", line
2982, in <lambda>
__setattr__ = lambda self, name, value: _swig_setattr(self,
apr_pool_t, name, value)
File "/var/lib/python-support/python2.4/libsvn/core.py", line 22,
in _swig_setattr
return _swig_setattr_nondynamic(self,class_type,name,value,0)
File "/var/lib/python-support/python2.4/libsvn/core.py", line 17,
in _swig_setattr_nondynamic
self.__dict__[name] = value
RuntimeError: instance.__dict__ not accessible in restricted mode
Jesse Reynolds
Virtual Artists Pty Ltd - http://www.va.com.au/
Ph...
2009 Nov 04
4
[PATCH server] Update daemons to use new QMF.
...e heartbeat for them stops.
- values[:broker_bank] = obj.object_id.broker_bank
- values[:agent_bank] = obj.object_id.agent_bank
+ values[:agent_key] = obj.object_id.agent_key
values[:obj_key] = obj.object_id.to_s
values[:class_type] = type
values[:timed_out] = false
@@ -370,53 +379,48 @@ class DbOmatic < Qpid::Qmf::Console
end
end
- def object_stats(broker, obj)
- target = obj.schema.klass_key.package
- return if target != "com.redhat.libvirt"
- type = obj....
2014 Oct 24
8
[LLVMdev] First-class debug info IR: MDLocation
I've attached a preliminary patch for `MDLocation` as a follow-up to the
RFC [1] last week. It's not commit-ready -- in particular, it squashes
a bunch of commits together and doesn't pass `make check` -- but I think
it's close enough to indicate the direction and work toward consensus.
[1]: http://lists.cs.uiuc.edu/pipermail/llvmdev/2014-October/077715.html
IMO, the files to
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...&";
+ }
+ void print_right(stream& s) const override
+ {
+ if (pointee->has_array() || pointee->has_function())
+ s += ")";
+ pointee->print_right(s);
+ }
+};
+
+class pointer_to_member_type final : public type
+{
+ const node* class_type;
+ const node* member_type;
+
+public:
+ pointer_to_member_type(node* class_type, node* member_type)
+ : class_type(class_type), member_type(member_type) {
+ has_rhs_component(member_type->has_rhs_component());
+ }
+
+ void print_left(stream& s) const override
+...