search for: routin

Displaying 20 results from an estimated 8713 matches for "routin".

Did you mean: routine
2004 Aug 23
1
Problem with mysql and with asterisk
...error messge like ./mkdep -fPIC -I../asterisk -D_GNU_SOURCE `ls *.c` cdr_addon_mysql.c:33:19: mysql.h: No such file or directory cdr_addon_mysql.c:34:20: errmsg.h: No such file or directory for x in ; do install -m 755 $x /usr/lib/asterisk/modules ; done The I have used "to use mysql-vm-routines, set USE_MYSQL_VM_INTERFACE to 1 in asterisk/apps/Makefile , then put this file into asterisk/apps/ and (re)build asterisk." Then use make from the /usr/src/asterisk/ Then system have give me this type of error message: make[1]: Entering directory `/usr/src/asterisk/apps' gcc -pipe -...
2013 Jan 17
1
Fwd: Re: Inconsisten declaration of ssh_aes_ctr_iv()
...lack of GCM support. > > Please try this diff: > I applied the diff you supplied, along with the previous diff. The regression tests got further along, but now fail in integrity.sh: run test integrity.sh ... test integrity: hmac-sha1 @2300 RSA_public_decrypt failed: error:0407006A:rsa routines:RSA_padding_check_PKCS1_type_1:block type is not 01. key_verify failed for server_host_key. unexpected error mac hmac-sha1 at 2300 test integrity: hmac-sha1 @2301 RSA_public_decrypt failed: error:0407006A:rsa routines:RSA_padding_check_PKCS1_type_1:block type is not 01. key_verify failed for serv...
2004 Apr 12
1
Voicemail config from database
...ly appreciated. When re-compiling * to include voicemail access from a MySQL database, I recieve the follwing error. Anybody know how I can fix this? Am I missing packages somewhere? app_voicemail.c:44:25: mysql/mysql.h: No such file or directory In file included from app_voicemail.c:247: mysql-vm-routines.h:7: parse error before '*' token mysql-vm-routines.h:7: warning: type defaults to `int' in declaration of `dbhandler' mysql-vm-routines.h:7: warning: data definition has no type or storage class mysql-vm-routines.h: In function `mysql_login': mysql-vm-routines.h:18: warning:...
2013 Feb 22
1
Registering native routines
I'm working on registering all the routines in the survival package, per a request from R-core. Two questions: 1. In the coxph routine I have this type of structure: if (survival has 2 columns) routines <- c("coxfit5_a", "coxfit5_b", "coxfit5_c") else routines <- c(&...
2016 Apr 15
2
Randomly SSL Errors since upgrade to 2.2.23-1 (Enterprise Edition)
...y I updated one of our 2 IMAP/POP3 proxies from version 2.2.15.17-1 to 2.2.23.1-1 (both are enterprise editions). After the update I now see randomly the following errors in the log file on my first proxy: ... Apr 15 10:28:54 imap1 dovecot: pop3-login: Error: SSL: Stacked error: error:1408F119:SSL routines:SSL3_GET_RECORD:decryption failed or bad record mac Apr 15 10:34:24 imap1 dovecot: pop3-login: Error: SSL: Stacked error: error:1408F119:SSL routines:SSL3_GET_RECORD:decryption failed or bad record mac Apr 15 10:37:11 imap1 dovecot: imap-login: Error: SSL: Stacked error: error:140D00CF:SSL routin...
2011 Apr 11
2
[LLVMdev] RFC: GSoC Project
...ill be emitted correctly. Otherwise, if the unwinding is done by following BP, it should still be possible to have BP de-reference correctly (ref. "Frame Pointers" section in the implementation plan). SP will not always have a correct value - I don't know if this is problem. About co-routines: Here is a sketch of how I think co-routines can be implemented (I'll merge this with the main implementation plan after I get some feedback): Have a new instruction, called "yield" to return a value from a co-routine, preserving the state. Thus, we immediately know which function...
2011 Feb 07
2
fast optimization routines in R
Dear R help archive group, I am looking for a maximization routine that I can use to maximize a large variety of relatively complex likelihoods. I undertand (from previous posts) that coding the objective function more efficiently can help. However, the optimization routine employed seems important too. So far, I have tried the optimization routines optim, maxlik...
2005 Aug 28
2
xerbla called from BLAS routine (PR#8100)
Full_Name: G?ran Brostr?m Version: R-2.1.1, 2.2.0 OS: Debian unstable Submission from: (NULL) (213.65.9.59) Some BLAS routines call xerbla for error messages, which results in a message like "LAPACK routine DGER gave error code -9". Suggested solution: In void F77_NAME(xerbla)(char *srname, int *info) { /* srname is not null-terminated. It should be 6 characters. */ char buf[7]; strncpy(buf, srna...
2011 Apr 11
0
[LLVMdev] RFC: GSoC Project
.... Otherwise, if the unwinding is done by following BP, it > should still be possible to have BP de-reference correctly (ref. "Frame > Pointers" section in the implementation plan). SP will not always have a > correct value - I don't know if this is problem. > > About co-routines: > > Here is a sketch of how I think co-routines can be implemented (I'll > merge this with the main implementation plan after I get some feedback): > > Have a new instruction, called "yield" to return a value from a > co-routine, preserving the state. Thus, we imm...
2005 Oct 10
1
passing char to Fortran routine
Hello all, I am using an existing Fortran routine that takes a single character string as argument. The routine echoes the argument that I provide. When working on OS X 3.9 there seems to be no problem, ie the Fortran routine nicely echoes my argument. However, I compiled the same package on a PC (using all the tools provided in the R for windows...
2006 Jan 20
1
stack level too deep from has_many / belongs_to relationship
I have the following 3 models (2 models joined by an intermediate): 1. class Exercise < ActiveRecord::Base 2. has_many :routines, :class_name=>''RoutineExercise'' 3. end 1. class Routine < ActiveRecord::Base 2. has_many :exercises, 3. :class_name=>''RoutineExercise'', 4. :order=>''position'' 5. end 1. class RoutineExercise < ActiveReco...
2017 Feb 14
6
Registration of native routines
Registration of 'native routines' (entry points in compiled code loaded into R) has been available for over 14 years, but few packages make use of it (less than 10% of those on CRAN with compiled code). Registration has similar benefits to name spaces in R code: - it ensures that the routines used by .C, .Call etc are th...
2011 Apr 11
2
[LLVMdev] RFC: GSoC Project
...unwinding is done by following BP, it >> should still be possible to have BP de-reference correctly (ref. "Frame >> Pointers" section in the implementation plan). SP will not always have a >> correct value - I don't know if this is problem. >> >> About co-routines: >> >> Here is a sketch of how I think co-routines can be implemented (I'll >> merge this with the main implementation plan after I get some feedback): >> >> Have a new instruction, called "yield" to return a value from a >> co-routine, preserving...
2006 Apr 21
4
programming advice?
Dear R-helpers: I am doing some exploratory programming and am considering a routine that has several other routines defined within it, so that I can avoid a large and messy global re-programming to avoid naming conflicts. My question is this: Because it is interpreted, does R have to re-build these internal routines every time the new routine is called? I'm not overly wo...
2005 Dec 07
0
organizing plot drawing routines; creating complex expressions
Hi, My general goal is to find a coding strategy to efficiently store and retrieve drawing routines for different plots. This is my approach so far. In a single text file I store multiple drawing routines where each routine draws a different plot. A drawing routine may look like this: panel.mean <- function(means,...){ dots <- list(...)...
2007 Oct 02
4
R routines vs. MATLAB/SPSS Routines
...ded to try to teach some of its basics (reading in data, manipulation and classical stats analyses) to my fellow grad students at the University of Toronto. I sent out a mass email and have already received some positive responses. One student, however, wanted to know what differentiates the routines that R uses, from those that MATLAB and SPSS use. In other words, in what respects do R routines work faster/more efficiently/more accurately than those of MATLAB/SPSS. I thank you in advance for any answer you can give me (or rather, the inquiring student). Cheers, Matthew Dubins
2004 Sep 14
3
memory allocation questions
Dear R-devel This one seems a bit arcane for R-help. I very often use R to call routines written in Delphi (son of Pascal), doing "persistent" memory allocation within Delphi. That is, I start R and load the Delphi DLL; then I use .C to call a Delphi routine which allocates a piece of memory X and returns to R a pointer to X; then I do some more stuff in R; then I call anot...
2015 Aug 04
13
[PATCH] efi: leaving long mode in kernel_jump routine
Syslinux 6.03 (efi64) fails to boot a 32-bit kernel. The way Syslinux leaves long mode in kernel_jump assembly routine does not follow AMD64 specifications. More precisely: 1. After setting a new GADT, `cs` has to be refresh by doing a long jump, but it is not 2. Other segments have to be updated, but they are not 3. Disabling paging has to be done before disabling long mode, but the implementation does the opposi...
2018 Nov 05
2
errors in mail.err related with ssl
Hi. I have in mail.err file lines like below: Nov 5 08:40:00 s1 dovecot: imap-login: Error: SSL: Stacked error: error:1407609C:SSL routines:SSL23_GET_CLIENT_HELLO:http request Nov 5 08:40:00 s1 dovecot: imap-login: Error: SSL: Stacked error: error:1408A10B:SSL routines:ssl3_get_client_hello:wrong version number Nov 5 08:40:05 s1 dovecot: pop3-login: Error: SSL: Stacked error: error:140760FC:SSL routines:SSL23_GET_CLIENT_HELLO:unk...
2009 Feb 15
2
Passing environments: why doesn't this work???
...n.env)) return(use.internal.env(in.env)) } #The inner function use.internal.env <- function(env) { print(ls(envir=env)) return(eval(x^2, envir=env)) } ########################## Now if I type run.internal.env(2), my output looks like [1] 4 [This is the evaluation in the outer routine] [1] "x" [This is the "ls" from the outer routine] [1] "x" [This is the "ls" from the inner routine] Error in eval(x^2, envir=env): object "x" not found [??? It was listed, so why can't it be evaluated???] If there's anything c...