search for: doextend

Displaying 3 results from an estimated 3 matches for "doextend".

Did you mean: do_extend
2004 Jun 18
0
Problem with setValidity() or resetClass() or ... ?
...3") # as I expected Class3Def <- getClassDef("Class3", where = topenv(parent.frame())) ## the following is called in setValidity() via resetClass() ## (further explanations, see below) completeClassDefinition("Class3", Class3Def, where = topenv(parent.frame()), doExtends = TRUE) ## 'Extends' includs only "Class2" ## ## would give the right result *in this case* completeClassDefinition("Class3", Class3Def, where = topenv(parent.frame()), doExtends = FALSE) ## (no call to completeExtends(), as doExtends = FALSE) ## probably no goo...
2009 Apr 19
3
asterisk-1.6.0.9-x86_64: voicemail: Segmentation fault (core dumped)
...29] [New process 23717] [New process 23721] [New process 23728] [New process 23718] [New process 23723] [New process 23719] [New process 23722] [New process 23720] [New process 23726] [New process 23727] #0 0x00000000004d8bb3 in tzload (name=0x536b26 "posixrules", sp=0x7f7f84076ba0, doextend=0) at stdtime/localtime.c:292 292 if ((strlen(p) + strlen(name) + 1) >= sizeof fullname) (gdb) bt #0 0x00000000004d8bb3 in tzload (name=0x536b26 "posixrules", sp=0x7f7f84076ba0, doextend=0) at stdtime/localtime.c:292 #1 0x00000000004d94bf in tzparse (...
2011 May 30
1
Query super- and subclasses of a class: is there a better way than to use 'completeClassDefinition()'
..., I re-read the respective section on the help page and wondered if I should be more careful about using this function for this purpose as the page says: "|completeClassDefinition: |Completes the definition of |Class|, relative to the class definitions visible from environment |where|. If |doExtends| is |TRUE|, complete the super- and sub-class information. This function is called when a class is defined or re-defined." So here are my questions: 1) Is it safe to call 'completeClassDef()' explicitly or can anything be "overwritten" by this? 2) Is there a better way to...