search for: function_call

Displaying 7 results from an estimated 7 matches for "function_call".

2011 Jan 22
1
Truly Global Variables
Hello everybody, I have a problem that is bothering me for quite a while now and I don't know the answer... I want to create global variables (out of a function) which I can access from all other functions... But somehow that does not work too well. Attached some code for an example: function_called <- function (){ result = globalvariable*globalvariable print(result) } function_calls <- function(){ assign("globalvariable",10,pos=-1,envir=as.environment(pos)) function_called() } function_calls() I would have assumed that I will get "100" printed on my scre...
2015 Sep 08
2
Testing "normal" cross-compilers versus GPU backends
> > Mehdi - Could you list a couple of the features that show up in generic > tests which your target doesn't support by design? After reading through > the discussion to this point, I don't really have a feel for that. > Additionally, do you have any sense for how common that set is across GPU > targets? > > This is what I was referring to in my last email: >
2017 Feb 26
2
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
...ntials at remote 0xc23620>, flags=0, options=None, msg=<function at remote 0x7fffdd98e848>) retval = 0x0 fastlocals = 0xd31828 freevars = 0xd31878 tstate = 0x6020a0 x = <optimized out> u = <optimized out> #10 0x00007ffff7a8288d in function_call (func=<function at remote 0x7ffff7ee1938>, arg=(<Ldb at remote 0xacf2d0>, 'ldaps://ldap.motec.com.au'), kw={'credentials': <credentials.Credentials at remote 0xc23620>}) at /usr/src/debug/Python-2.7.5/Objects/funcobject.c:526 result = <optimized out&...
2017 Feb 16
2
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
On Fri, 2017-02-17 at 07:48 +1100, Tom Robinson via samba wrote: > Anyone? Can you please post a gdb backtrace --full? -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 862 bytes Desc: This is a digitally signed message part URL:
2006 Oct 12
3
multithreading calling from the rpy Python package
...yEval_EvalFrameEx + 26072 28 Python2.5 0x024aaef8 PyEval_EvalCodeEx + 3512 29 Python2.5 0x024a7ce0 PyEval_EvalFrameEx + 21952 30 Python2.5 0x024a8cf8 PyEval_EvalFrameEx + 26072 31 Python2.5 0x024aaef8 PyEval_EvalCodeEx + 3512 32 Python2.5 0x023fbb88 function_call + 472 33 Python2.5 0x023c6c08 PyObject_Call + 56 34 Python2.5 0x023d3294 instancemethod_call + 388 35 Python2.5 0x023c6c08 PyObject_Call + 56 36 Python2.5 0x024a0cf4 PyEval_CallObjectWithKeywords + 276 37 Python2.5 0x024f244c t_bootstrap + 60 38 li...
2006 Oct 12
3
multithreading calling from the rpy Python package
...yEval_EvalFrameEx + 26072 28 Python2.5 0x024aaef8 PyEval_EvalCodeEx + 3512 29 Python2.5 0x024a7ce0 PyEval_EvalFrameEx + 21952 30 Python2.5 0x024a8cf8 PyEval_EvalFrameEx + 26072 31 Python2.5 0x024aaef8 PyEval_EvalCodeEx + 3512 32 Python2.5 0x023fbb88 function_call + 472 33 Python2.5 0x023c6c08 PyObject_Call + 56 34 Python2.5 0x023d3294 instancemethod_call + 388 35 Python2.5 0x023c6c08 PyObject_Call + 56 36 Python2.5 0x024a0cf4 PyEval_CallObjectWithKeywords + 276 37 Python2.5 0x024f244c t_bootstrap + 60 38 li...
2024 Feb 18
1
Capturing Function Arguments
? Sat, 17 Feb 2024 11:15:43 -0700 "Reed A. Cartwright" <racartwright at gmail.com> ?????: > I'm wrapping a function in R and I want to record all the arguments > passed to it, including default values and missing values. This is hard if not impossible to implement for the general case because the default arguments are evaluated in the environment of the function as it