search for: funtcion

Displaying 6 results from an estimated 6 matches for "funtcion".

Did you mean: function
2006 Aug 14
1
Testing CRUD/Rest Controllers
I have a few simple controllers doing plain, simple crud in a standard way. now it''s not very DRY to write a funtcional test for each controller, since they are all doing the same (apart from a few variable names, but that could be easily inflected or so). is there a way to do this? e.g. does inheritance work with tests, so i define a base test first, inherit my other tests and add a few controller-specific (if th...
2012 Mar 15
1
Get Details About Clusters
...ot;, "height", "order", "labels", "method", "call", "dist.method"), class = "hclust") I just need the every item with its correponding cluster in a more or less organizated way. Of course, there is not problem in using different funtcions or librarys (till now I have not found anything sweeting to my needs). Advices or orientations are welcome and appreciated! Thanks in advance. AJ [[alternative HTML version deleted]]
2006 Jan 12
0
[Fwd: Re: -- SOLVED -- "valid users" + ldap on Solaris 10 problems]
...you compile samba with solaris support, samba uses "getgrnam" function because of the "BROKEN_GETRNAM=1" in Makefile. This function is what's making samba going wrong. The soluction was to undefine "BROKEN_GETRNAM" in order to make samba use " getgrent()" funtcion instead. Thanks for all your help guys! bye! > On Thu, 12 Jan 2006, Miki Monguilod wrote: > >> Hi Gerald, >> >> We have Solaris 10 completely updated up today. >> About samba and libraries, we have compiled Samba againt OpenLdap libraries >> (usr/local/li...
2013 Mar 06
2
2GB limit patch
Brian Willoughby wrote: > I do not see the need to jump to 64-bit merely to get beyond the 2 GB > limit. There are modern API that handle 32-bit unsigned file lengths > - i.e., up to 4 GB - without going to 64-bit. When we are talking about offset_t we are talking about the flac C and C++ API. Currently if we have a flac file with more than 2Gig samples it is not possible to seek
2005 Jan 30
5
agent logoff
I am using AgentCallbacklogin to logon agents. I am trying to avoid agents being logged in more than once in different extensions (is this a bug?) by passing the callerid to the AgentCallbacklogin funtcion as an option. The problem is that by doing this, agents are not asked for an extension and they cannot logoff (by pressing the #). Any ideas how can agents logoff? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/atta...
2012 Mar 28
0
[LLVMdev] GSoC 2012 Proposal: Python bindings for LLVM
...? It is defined in _core.c: *#define _method( func ) { # func , _w ## func , METH_VARARGS },* In the above macro, func is the name used in python, and _w ## func is the corresponding name of the wrapper function. ie, When we call a function func in python, it intrinsically calls the wrapper C funtcion _w ## func. So when we use LLVMAddFunction methoed in python, it actually calls _wLLVMAddFunction. Then how is _wLLVMAddFunction defined? Also in *_core.c* file, there is such a statement that is related to LLVMAddFunction: *_wrap_objstrobj2obj(LLVMAddFunction, LLVMModuleRef, LLVMTypeRef, LLVMVal...