Displaying 20 results from an estimated 400 matches similar to: "Is tz working in voicemail.conf [general] section ?"
2009 Feb 17
1
Pingable and Unreachable at the same time !
Hi,
Has anyone met something like this ?
dialor*CLI> sip show peers
Name/username Host Dyn Nat ACL Port Status
7541/7541 (Unspecified) D 0 UNKNOWN
7540/7540 (Unspecified) D 0 UNKNOWN
7534/7534 (Unspecified) D 0 UNKNOWN
7533/7533 (Unspecified)
2013 Apr 19
3
[LLVMdev] funny llvm bug
I'm going to file this bug but it's kind of a blocker for me so maybe
someone has time
to look at it. Should be nearly trivial to fix.
It's a bug in the way the "section" attribute of functions is processed.
Consider the following code:
void x(int i) __attribute((section(".mySection,\"aw\", at progbits#")));
void x(int i) {
}
If you compile this
2009 Nov 16
3
Error on reading an excel file
Hello everybody, here is the code I use to read an excel file containing two
rows, one of date, the other of prices:
library(RODBC)
z <- odbcConnectExcel("SPX_HistoricalData.xls")
datas <- sqlFetch(z,"Sheet1")
close(z)
It works pretty well but the only thing is that the datas stop at row 7530
and I don?t know why datas is a data frame that contains 7531 rows with the
2013 Apr 19
0
[LLVMdev] funny llvm bug
On 04/19/2013 12:43 PM, Joerg Sonnenberger wrote:
> On Fri, Apr 19, 2013 at 09:47:28AM -0700, reed kotler wrote:
>> The clean solution is probably to add two additional function
>> attributes to cover these additional pieces, namely "ax" and
>> @progbits.
>
> Extend the section attribute to allow additional parameters?
>
> Joerg
>
The idea would be to
2013 Apr 19
3
[LLVMdev] funny llvm bug
This is a feature (or bug) of MCSectionELF::PrintSwitchToSection. For
ELF target this function tries to escape string if it founds
'suspicious' character, see implementation in MCSectionELF.cpp:
StringRef name = getSectionName();
if (name.find_first_not_of("0123456789_."
"abcdefghijklmnopqrstuvwxyz"
2013 Apr 19
1
[LLVMdev] funny llvm bug
> The idea would be to create additional function attributes.
> I have not spent time thinking this through yet.
>
> section_flags("flags")
> section_type("type")
> others....
What would the semantic be of having section_flags but no section name?
> so then
>
> void x(int i) __attributes__((section("mysection"),
2013 Apr 19
1
[LLVMdev] funny llvm bug
On Fri, Apr 19, 2013 at 1:50 PM, Reed Kotler <rkotler at mips.com> wrote:
> On 04/19/2013 12:43 PM, Joerg Sonnenberger wrote:
>>
>> On Fri, Apr 19, 2013 at 09:47:28AM -0700, reed kotler wrote:
>>>
>>> The clean solution is probably to add two additional function
>>> attributes to cover these additional pieces, namely "ax" and
>>>
2013 Apr 19
0
[LLVMdev] funny llvm bug
On Fri, Apr 19, 2013 at 04:38:20PM +0700, Serge Pavlov wrote:
> This is a feature (or bug) of MCSectionELF::PrintSwitchToSection. For
> ELF target this function tries to escape string if it founds
> 'suspicious' character, see implementation in MCSectionELF.cpp:
>
> StringRef name = getSectionName();
> if (name.find_first_not_of("0123456789_."
>
2004 Jul 21
2
Rose Diagrams
Hi,
Is it possible to create Rose Diagrams of wind data (speed & direction) with
R??
Best regards,
Lars Peters
-----
Lars Peters
University of Konstanz
Limnological Institute
D-78457 Konstanz
Germany
phone: +49 (0)7531 88-2930
fax: +49 (0)7531 88-3533
e-mail: Lars.Peters@Uni-Konstanz.de
web: Lars Peters
<http://www.uni-konstanz.de/sfb454/tp_eng/A1/doc/peters/peters.html>
2003 Dec 03
1
Changing Colors
Hello,
I've got a big problem. I'm using R for geostatistical analyses, especially
the field-package.
I try to generate plots after the kriging process with help of
image.plot(..., col=terrain.colors, ...). Everything works fine, but I want
to reverse the color-palettes (heat.colors, topo.colors or gray()) to get
darkest colors at highest data-values instead the other way round.
Could
2005 Dec 02
1
covariance structures in lmer
Hi,
I usually use lme from the nlme library. Now I have read an article about
lmer in Rnews and lmer seemed to me more comfortable to use. Unfortunately,
I didn't find out how to use covariance structures (e. g. corSymm(),
corAR1()). Is there a way to use them similarly as in lme ? Is it
implemented ? If somebody knows, please let me know.
Thank you very much in advance,
Stephan
2004 Jul 09
1
Mixed model ANOVA with a nested design
Dear all,
I've got a big problem. I try to analyse my data using R with a mixed model
ANOVA without useful results and success.
My data are as follows:
3 factors (Treatment, Site, Subsite) with 'Subsite' as random factor and
nested into 'Site'.
I want to analyse the effects of the three main effects (factorial design to
a specified degrees (2)) with the interactions between
2003 Aug 29
1
@ERROR auth failed on module
hi rsync-list,
i have an authentication problem with my rsync-server.
@ERROR auth failed on module XXX
i`ve searched for an solution that fixes this problem
in the mailinglist archives of rsync.
but no one solves my problem.
i`m running rsync version 2.5.6cvs protocol version 26
on debian 3.0 with kernel 2.4.22
my rsyncd.config looks like this:
#######################################
2016 Oct 05
3
Using '__attribute__((section("name")))' for inline assembly injection
Would it be useful for Clang to warn about section names with unusual characters?
-Hal
----- Original Message -----
> From: "Reid Kleckner via llvm-dev" <llvm-dev at lists.llvm.org>
> To: "Martin J. O'Riordan" <martin.oriordan at movidius.com>
> Cc: "LLVM Developers" <llvm-dev at lists.llvm.org>
> Sent: Wednesday, October 5, 2016
2006 Apr 27
1
Plotting Data Frame
Dear R community members,
I think I am asking a very simple question, but I really looked up in
the faqs and manuals and found nothing helpful.
I am trying to plot a data frame with the following structure (this is
just a small extract):
glo conc odor line series X1 X2 X3 X4 X5
X6 X7 X8 X9 X10 X11 X12 X13
1 0 AIR LN1 UP -0.488
2009 Apr 23
1
BLINDTRANSFER and SIP hardphones
Hi,
When a SIP hardphone is transfering a call while ringing (caller and callee
don't speak to each other) using phone's Transfer key, it seems
BLINDTRANSFER remains empty.
Though I can see a 302 MOVED TEMPORARILY message coming in.
Is there a work around or something obvious I'm missing (it's the first time
I'm playing with Dialplan transfert features.
context mylocal {
2010 Dec 16
3
Samba upgrade question
Hi All,
I have a problem with upgrade samba on Solaris 10 (x86). The current version is 3.0.25b (distributed with Solaris 10). I am trying to upgrade version to 3.4.5. I compiled samba from sources, has not any problem with make and installation. Now I have 2 different versions and when I am running "svcadm enable samba" I am receiving old version.
The old version installed under:
2004 Dec 21
3
Budgetone is not registering
Hi again. I cant get my Budgetone registered in Asterisk, and I cant
find what's wrong... uff. This is my config:
This fragment is from my sip.conf:
[12345]
type=user
user=12345
username=12345
secret=12345
authuser=12345
qualify=1000
nat=no
host=dynamic
dtmfmode=rfc2833
reinvite=no
canreinvite=no
disallow=all
allow=g729
allow=ulaw
allow=alaw
context=sip_default
And this is from my
2009 Jun 17
1
Function IMPORT and Local channels
Hi,
At the moment, I can't read Local channels variables using IMPORT function :
${IMPORT(Local/7531 at pcdialer-5dff\;1,CALLERID(num))}
Is it normal behaviour ?
Any idea or suggestion ?
A DumpChan statement show usual variables.
Comparing a Local channel with a SIP channel, the only difference I could
associate meaning to, is that Local channel names include a semi colon with
SIP channels
2006 Jul 31
1
add'l info: x86_64 reproducible server PANIC with latest kernel
I forgot to mention that the problem has nothing to do with the kernel
being tainted (due to VMware server).
I installed VMware server after being faced with the crashes, to give
the Java user a "sandbox" which s/he could crash without taking down the
real server. Only then I discovered that VMware server has a memory
limitation to 3600MB (I guess because it's not a 64bit