Displaying 19 results from an estimated 19 matches for "linkedlist".
Did you mean:
linked_list
2011 Feb 12
0
Fw: Re: Linked List in R
...nt
> > insert time is an environment. Environments map keys
> to
> > values, with
> > keys being character scalars. So (untested)
> >
> > setClass("Node",representation(next="character",
> > value="ANY"))
> > setClass("LinkedList",
> > ? ? representation(store="environment",
> > head="character")))
> >
> > environments are tricky because of their
> pass-by-reference
> > semantic, and
> > to initialize the LinkedList class you'll want to
> write an
>...
2011 Feb 12
2
Linked List in R
Hi,
I am trying to create a linked list in R by defining a class Node which has a instance variable Node.
setClass("Node", representation(rate="numeric", nextNode="ANY"))
The above works. But the following gives me a warning message.
setClass("Node", representation(rate="numeric", nextNode="Node"))
>
>
2005 Jul 05
3
Asterisk addons install problem
...k/logger.h: No such file or directory
app_addon_sql_mysql.c:17:30: asterisk/channel.h: No such file or directory
app_addon_sql_mysql.c:18:26: asterisk/pbx.h: No such file or directory
app_addon_sql_mysql.c:19:29: asterisk/module.h: No such file or directory
app_addon_sql_mysql.c:20:34: asterisk/linkedlists.h: No such file or directory
app_addon_sql_mysql.c:21:31: asterisk/chanvars.h: No such file or directory
app_addon_sql_mysql.c:22:27: asterisk/lock.h: No such file or directory
cdr_addon_mysql.c:17:29: asterisk/config.h: No such file or directory
cdr_addon_mysql.c:18:30: asterisk/options.h: No...
2017 Jul 09
2
rsyslog stops logging on service reload?
I have multiple servers running stock CentOS 7 rsyslog 7.4.7-16.el7,
which are configured to log locally and over TCP to a remote logserver,
also running stock CentOS 7 rsyslog. The remote server uses imptcp to
receive, and pretty basic rules to parse and commit to disk.
I have several systems that log prolifically, but periodically, they
stop soon after the remote log server HUPs (daily
2017 Jul 13
0
rsyslog stops logging on service reload?
...all those nodes ? I had
also an issue over "unreliable" network with buffer/queue and also when
the receiver had his main msg queue size too small.
Some parameters that can help (?) :
# sender size
$WorkDirectory /var/lib/rsyslog # default location for work (spool) files
$ActionQueueType LinkedList # use asynchronous processing
$ActionQueueFileName forwardqueue # set file name, also enables disk mode
$ActionResumeRetryCount -1 # infinite retries on insert failure
$ActionQueueSaveOnShutdown on # save in-memory data if rsyslog shuts down
# receiver side
$MainMsgQueueSize 100000
--
Fabian Ar...
2006 Jan 08
0
problems with app_odbcexec
...risk 1.2.1 and I've downloaded and
installed unixODBC. But when I try to run "make" after editing Makefile
and copying the app_odbcexec.c to my asterisk/apps location, this is the
output I get:
cc -fPIC -c -o app_odbcexec.o app_odbcexec.c
In file included from /usr/include/asterisk/linkedlists.h:23,
from /usr/include/asterisk/chanvars.h:26,
from /usr/include/asterisk/channel.h:111,
from /usr/include/asterisk/file.h:30,
from app_odbcexec.c:22:
/usr/include/asterisk/lock.h: In function `ast_mutex_init':
/usr/include/a...
2006 Jan 11
0
problems with installing app_odbcexec into dialplan
...isk 1.2.1 and I've downloaded and
installed unixODBC. But when I try to run "make" after editing Makefile
and copying the app_odbcexec.c to my asterisk/apps location, this is
the
output I get:
cc -fPIC -c -o app_odbcexec.o app_odbcexec.c
In file included from /usr/include/asterisk/linkedlists.h:23,
from /usr/include/asterisk/chanvars.h:26,
from /usr/include/asterisk/channel.h:111,
from /usr/include/asterisk/file.h:30,
from app_odbcexec.c:22:
/usr/include/asterisk/lock.h: In function `ast_mutex_init':
/usr/include/aster...
2009 Sep 11
0
asterisk addons don't compile using non standart prefix
...or directory
app_addon_sql_mysql.c:33:30: error: asterisk/channel.h: No such file
or directory
app_addon_sql_mysql.c:34:26: error: asterisk/pbx.h: No such file or directory
app_addon_sql_mysql.c:35:29: error: asterisk/module.h: No such file or directory
app_addon_sql_mysql.c:36:34: error: asterisk/linkedlists.h: No such
file or directory
app_addon_sql_mysql.c:37:31: error: asterisk/chanvars.h: No such file
or directory
app_addon_sql_mysql.c:38:27: error: asterisk/lock.h: No such file or directory
app_addon_sql_mysql.c:39:30: error: asterisk/options.h: No such file
or directory
app_addon_sql_mysql.c:40:...
2010 Oct 26
0
[PATCH node] add logging.py
.../var/log/spooler
+
+# Save boot messages also to boot.log
+local7.* /var/log/boot.log
+
+\$WorkDirectory /var/spool/rsyslog
+\$ActionQueueFileName ovirtNode
+\$ActionQueueMaxDiskSpace 10m
+\$ActionQueueSaveOnShutdown on
+\$ActionQueueType LinkedList
+\$ActionResumeRetryCount -1
+*.* %(delim)s%(server)s:s(port)s
+"""
+
+
+def ovirt_rsyslog(server, port, protocol):
+ if protocol == "tcp":
+ DELIM="@@"
+ else:
+ DELIM="@"
+
+ rsyslog_dict = {
+ "delim" : DELIM,
+...
2013 Feb 19
1
remote logging with rsyslog
...ng down system logger:?????????????????????????????? [? OK? ]
??? Starting system logger:??????????????????????????????????? [? OK? ]
?
On the client, I added to /etc/rsyslog.conf:
??? $ModLoad?????????????????? omrelp
??? $WorkDirectory???????????? /var/spool/rsyslog
??? $ActionQueueType?????????? LinkedList
??? $ActionQueueFileName?????? syslogfwd
??? $ActionQueueMaxDiskSpace?? 10g
??? $ActionResumeRetryCount??? -1
??? $ActionQueueSaveOnShutdown on
??? *.*??????????????????????? :omrelp:xxx.xxx.xxx.xxx:20514
?
And restarted the daemon:
??? sudo service rsyslog restart
??? Shutting down system logger:?...
2004 Nov 27
0
problems setting up cdr_addon_mysql
...erisk/logger.h: No such file or directory
app_addon_sql_mysql.c:17:30: asterisk/channel.h: No such file or directory
app_addon_sql_mysql.c:18:26: asterisk/pbx.h: No such file or directory
app_addon_sql_mysql.c:19:29: asterisk/module.h: No such file or directory
app_addon_sql_mysql.c:20:34: asterisk/linkedlists.h: No such file or directory
app_addon_sql_mysql.c:21:31: asterisk/chanvars.h: No such file or directory
app_addon_sql_mysql.c:22:27: asterisk/lock.h: No such file or directory
app_saycountpl.c:10:27: asterisk/file.h: No such file or directory
app_saycountpl.c:11:29: asterisk/logger.h: No such fil...
2004 May 28
3
Asterisk addons
Hi to all!!
Is there another method to download asterisk addons???
Thanks....
F
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20040528/8f1f7764/attachment.htm
2010 Jul 10
3
a very particular plot
Hi all,
Thanks for the really great help I've received on this board in the past.
I have a very particular graph that I'm trying to plot, and I'm not really
sure how to do it. I think I should be able to use ggplot for this, but I'm
not really sure how.
I have a data.frame which contains fifty sub frames containing one hundred
data points each.
I can do a histogram of each of
2009 Aug 11
1
[PATCH node] Added support for remote logging with rsyslog-gssapi to node. NOTE: Needs selinux to be set to permissive (setenforce 0) to work.
...ult timestamp format
+\$ActionFileDefaultTemplate RSYSLOG_TraditionalForwardFormat
+
+#### RULES ####
+
+# Forward all messages to ovirt controller
+\$WorkDirectory /var/rsyslog
+\$ActionQueueFileName ovirt-server-fwd
+\$ActionQueueMaxDiskSpace 1g
+\$ActionQueueSaveOnShutdown off
+\$ActionQueueType LinkedList # run asynchronously
+\$ActionResumeRetryCount -1 # infinite retries if host is down
+*.* :omgssapi:$SRV_HOST:$SRV_PORT
+# End forwarding Rule
+
+# Log anything (except mail) of level info or higher.
+# Don't log private authentication messages!
+*.info;mail.none;authpriv.none;cron.none...
2006 Oct 31
2
compilation problem with asterisk-addons
...erisk/logger.h: No such file or directory
app_addon_sql_mysql.c:27:30: asterisk/channel.h: No such file or directory
app_addon_sql_mysql.c:28:26: asterisk/pbx.h: No such file or directory
app_addon_sql_mysql.c:29:29: asterisk/module.h: No such file or directory
app_addon_sql_mysql.c:30:34: asterisk/linkedlists.h: No such file or directory
app_addon_sql_mysql.c:31:31: asterisk/chanvars.h: No such file or directory
app_addon_sql_mysql.c:32:27: asterisk/lock.h: No such file or directory
app_saycountpl.c:11:27: asterisk/file.h: No such file or directory
app_saycountpl.c:12:29: asterisk/logger.h: No such fil...
2006 Nov 29
1
Getting app_cepstral to work with Asterisk 1.4.0-beta3
...s/voip/installing_app_cepstral.txt
This is a Dell PowerEdge 1950 running Whitbox 4 and Asterisk 1.4.0-beta3
I get the following errors on make install
Any help would be GREAT!
Thanks
[CC] app_cepstral.c -> app_cepstral.o
In file included from
/usr/src/asterisk/include/asterisk/linkedlists.h:23,
from /usr/src/asterisk/include/asterisk/frame.h:37,
from /usr/src/asterisk/include/asterisk/channel.h:110,
from app_cepstral.c:33:
/usr/src/asterisk/include/asterisk/lock.h: In function `ast_mutex_init':
/usr/src/asterisk/include/asteris...
2011 Apr 04
0
[LLVMdev] GSOC Adaptive Compilation Framework for LLVM JIT Compiler
...the GLSL language to ARB language which
> then can be executed on GPU. Wrote the scanner and parser using Lex and Yacc
> and a code generator in a OOP fashion
>
>
>
> *Malloc Library Implementation** (Oct.-Nov. 2008) : *Leveraged solid
> understanding of best fit algorithm and linkedlist data structure to design
> a malloc library to perform dynamic memory allocation. Implemented the
> library with C programming language to ensure robust and clear coding for
> 1000 line codes. Optimized library on the code level to obtain a 6%
> increase of allocation throughput. Harnes...
2011 Mar 29
5
[LLVMdev] GSOC Adaptive Compilation Framework for LLVM JIT Compiler
...mpiler that compiles a subset of the GLSL language to ARB language which
then can be executed on GPU. Wrote the scanner and parser using Lex and Yacc
and a code generator in a OOP fashion
*Malloc Library Implementation** (Oct.-Nov. 2008) : *Leveraged solid
understanding of best fit algorithm and linkedlist data structure to design
a malloc library to perform dynamic memory allocation. Implemented the
library with C programming language to ensure robust and clear coding for
1000 line codes. Optimized library on the code level to obtain a 6% increase
of allocation throughput. Harnessed knowledge of tra...
2011 Apr 04
1
[LLVMdev] LLVMdev Digest, Vol 82, Issue 7
...> > then can be executed on GPU. Wrote the scanner and parser using Lex and
> Yacc
> > and a code generator in a OOP fashion
> >
> >
> >
> > *Malloc Library Implementation** (Oct.-Nov. 2008) : *Leveraged solid
> > understanding of best fit algorithm and linkedlist data structure to
> design
> > a malloc library to perform dynamic memory allocation. Implemented the
> > library with C programming language to ensure robust and clear coding for
> > 1000 line codes. Optimized library on the code level to obtain a 6%
> > increase of allo...