Displaying 5 results from an estimated 5 matches for "undefini".
Did you mean:
undefine
2009 Aug 12
1
app_voicemail.so: undefinied symbol: global_app_buf
Hello,
I recently completed a fresh install of Asterisk
SVN-group-srtp-r183146M-/trunk , and I'm running into an issue getting the
voicemail application module to load. Output from debug shows:
-------------------------------
[Aug 11 22:00:01] NOTICE[20173]: loader.c:875 load_modules: 1 modules will
be loaded.
[Aug 11 22:00:01] WARNING[20173]: loader.c:376 load_dynamic_module: Error
loading
2000 Dec 25
2
Modification requests / question
Hello!
1.
You should modify the 'vorbis_ftoi(f)' for the undefinied OS/compiler
in the 'os.h' on this way:
old:
static int vorbis_ftoi(double f){
return (int)(f+.5);
}
new:
#define vorbis_ftoi(f) ((int)(f+.5f))
Because in some cases we don't use this function, and the compiler writes
many error messages.
2. Could you write a frequency and bitra...
2004 Oct 28
1
Converting an LDAP server to use Samba 3
...X machines. To get it to serve to OS X machines, I copied
over the 'apple.schema' from an OS X box. Itr seems this schema file
depends on things defined in the Samba 2.x schema file (samba.schema)
because when it's present, it starts fine but when it doesn't, it
complains about undefinied symbols in the apple.schema file.
Now we'd love to create a Samba 3 ADS on a Linux box which pulls account
information from the same LDAP database. According to documentation,
this requires we use a different samba.schema file in our OpenLDAP
server. The new one has different definitions a...
2006 Mar 12
0
Validate a model with a session parameter
...tableless model for a contact form with this instruction:
validates_format_of :captcha,
:with =>
ActionController::SessionManagement::session[:captcha],
:message => "Security code is wrong. Please enter it again"
Unfortunately it raises an undefinied method error; is the session
call incorrect or is it just impossible to validate such a thing ? I
don''t know how to do it directly inside the controller since
Contact.errors.add_to_base initiate to zero the errors array.
Thanks for your help
2010 Feb 15
1
error message error
Hi r-users,
I hope somebody can help me to understand the error message. Here is my code;
## Newton iteration
newton_gam <- function(z)
{ n <- length(z)
r <- runif(n)
tol <- 1E-6
cdf <- vector(length=n, mode="numeric")
fprime <- vector(length=n, mode="numeric")
f <- vector(length=n, mode="numeric")
for (i in 1:1000)
{