Displaying 20 results from an estimated 3000 matches similar to: "Asterisk CLI Banner"
2017 Feb 03
3
Clang 5.0 support for armv8 64 bit with neon and auto vectorization
One more thing, setting up clang 5,0 on windows, I have issues compiling libcxx project.
Is it supported to be built with Visual studio or MinGW make files?
Mit freundlichen Grüßen / Best regards
Zeeshan Haider
CC/ESM1
Tel. +49(711)811-47379
-----Original Message-----
From: Tim Northover [mailto:t.p.northover at gmail.com]
Sent: Freitag, 3. Februar 2017 18:05
To: Haider Zeeshan
2017 Feb 05
2
Clang 5.0 support for armv8 64 bit with neon and auto vectorization
On Fri, Feb 3, 2017 at 12:03 PM, Renato Golin <renato.golin at linaro.org>
wrote:
> Adding some people that know about libcxx and/or windows on arm.
>
Note that if you are trying to use Windows on ARM port, I've not tested C++
support with MS ABI, onlly the itanium ABI has been tested (there are known
limitations for the C++ MS ABI on Windows ARM). Furthermore, we do not
2017 Feb 03
2
Clang 5.0 support for armv8 64 bit with neon and auto vectorization
Thanks Peter and Tim.
Being that said, can I be sure that for 64 bit arm architectures (e.g. arm cortex A57) the neon feature and auto-vectorization is supported as default by clang 5.0?
Because for us these two features are deal breaking for compiler evaluation.
Mit freundlichen Grüßen / Best regards
Zeeshan Haider
Chassis Systems Control, Engineering Software Coordination, Software
2017 Feb 03
3
Clang 5.0 support for armv8 64 bit with neon and auto vectorization
Hi there,
I am Software product developer at Robert Bosch, Germany.
We are using armv8 64bit targets for our development. We have the need to do the cross compiling for our target on windows. I have compiled clang 5.0 from the vcs git. I have tried compiling the code with following options set:
clang.exe -target armv8 -fslp-vectorize-aggressive -mfpu=neon -mfloat-abi=hard -c test.cpp
As you
2010 Sep 02
2
Fw: [asterisk-biz] To compete with Avaya - What are their current cost?
I am not interested in open source solutions. I want to know how much the
propriety systems cost in terms of licensing. Specially Avaya now a days per
extension. Exclusive or Inclusive of the hardware for 10 agents as noted.
Thanks
On Thu, Sep 2, 2010 at 8:18 AM, Muhammad Shomail Haider
<msh0786 at gmail.com>wrote:
> Hi Bruce,
>
> It all depends what exactly you are in need of. A
2004 Aug 06
1
streaming live mp3?
Hello,
Is there a chance that either ices0 will get support for live-streaming
from line-in or ices2 for streaming mp3?
I tried darkice, but this didn't work out with a decent sampling rate on
my box (see [1])...
Also tried liveice, but this does not seem to work at all with icecast2
(when changing the port to 8001 I got this simple UI but icecast2 didn't
notice any new mount).
I looked
2018 Jun 09
3
getting real sip status after dial
Hi,
Is there any way I can get exact sip status from pjsip after a dial ?
or all we can
get is asterisk hangup causes ?
Thanks in advance.
KKh
2018 Jun 09
2
getting real sip status after dial
I think HANGUPCAUSE is channel agnostic.
See: core show function HANGUPCAUSE
Some thing like this IIRC:
Set(my_cause=${HANGUPCAUSE(${CHANNEL(name)},tech)})
Remember the incoming leg of the call and the outgoing leg of the call
are different channels. Make sure you are giving HANGUPCAUSE the
correct channel.
On 06/09/2018 02:01 PM, Khalil Khamlichi wrote:
> It seems very weird to me
2017 Dec 19
2
asterisk queues in off-hook mode ?
Hi,
I am looking to configure asterisk queues in off-hook mode, that is,
the agent calls into the system and stays connected to this call, when
new customer calls, he is redirected to the queue which should
distribute to connected agents. is this possible on teh actual
app_queue or we would need to implement it using ARI.
Thanks in advance.
2014 Oct 13
3
samaba 4 vs active directory
Hello Sir ;
I am very interested for samba 4 news and want to run it in production environment to replace active directory
But first I appreciate if you could help me to get comparison between active directory feature and samba feature that working correctly
I mean if I go to samba which feature may I lose or still have bugs
Thanks in advance
Kind regards,
Ahmed Hassanean Khalil
Customer Service
2018 May 08
3
Bilateral matrix
or in base R : ?xtabs ??
as in:
xtabs(~previous_location + current_location,data=x)
(You can convert the 0s to NA's if you like)
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along and
sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Tue, May 8, 2018 at 9:21 AM, Huzefa
2017 Jun 15
4
is.null(mylist[1]) and is.null(mylist$a) returns different values
Hi
I have a list :
mylist <- list( a = NULL, b = 1, c = 2 )
> mylist[1]
$a
NULL
> is.null(mylist[1])
[1] FALSE
> is.null(mylist$a)
[1] TRUE
why? I need to use mylist[1]
2017 Jun 15
1
is.null(mylist[1]) and is.null(mylist$a) returns different values
I find that the str function is more helpful for understanding the difference between a null list and a list containing a null list than the implicit print function call that the interpreter invokes when you enter an expression at the console.
str( mylist[1] )
--
Sent from my phone. Please excuse my brevity.
On June 15, 2017 8:39:47 AM PDT, Huzefa Khalil <huzefa.khalil at umich.edu>
2017 Jun 15
0
is.null(mylist[1]) and is.null(mylist$a) returns different values
Hi,
Try
> is.null(mylist[[1]])
[1] TRUE
Notice the double square brackets.
From: ?`[`
"The most important distinction between [, [[ and $ is that the [ can
select more than one element whereas the other two select a single
element."
On Thu, Jun 15, 2017 at 11:33 AM, ce <zadig_1 at excite.com> wrote:
> Hi
>
> I have a list :
>
> mylist <- list( a = NULL, b
2018 May 04
0
Converting a list to a data frame
It looks like you made a copy/paste error below. Your ata.frame should
be data.frame.
Kevin
On 05/04/2018 08:18 AM, Bill Poling wrote:
> Good morning.
>
> Novice usR. Here.
>
> I am following this string, among many, learning as I go.
>
> Quick question please?
>
> I thought that perhaps ata.frame was part of the zoo pkg, b/c when I
> searched it came up in
2018 May 04
2
Converting a list to a data frame
Good morning.
Novice usR. Here.
I am following this string, among many, learning as I go.
Quick question please?
I thought that perhaps ata.frame was part of the zoo pkg, b/c when I searched it came up in help?
However, evidently not or I am not using it properly.
Please advise, thank you.
x <- list(A=data.frame(x=1:2, y=3:4),B=data.frame(x=5:6,y=7:8))
x2 <- do.call(rbind,
2018 May 16
0
Bilateral matrix
Dear Bert and Huzefa,
Apologies for the late reply, my account got hacked and I have just managed
to recover it.
Thank you very much for your replies and the solutions. Both work well.
I was wondering if there was any way to ensure (force) that all possible
combinations show up in the output. The full dataset has 25 cities but of
course people have not moved from Boston to all the other 24
2018 May 08
2
multi step auth?
I *am* doing that, as I assumed it would be required just for the 911
mapping we have provided, but that doesn't change the SIP header.
Cheers,
j
On 05/08/2018 02:41 PM, Khalil Khamlichi wrote:
> try setting the callerid with
>
> same => n,Set(CALLERID(all)=17864089672 <17864089672>)
>
> ofcourse for each customer you will need to provide his own did.
>
>
>
2002 Jul 19
0
[Bug 361] New: PRNGD not yet seeded & SSH banner stills show previous banner
http://bugzilla.mindrot.org/show_bug.cgi?id=361
Summary: PRNGD not yet seeded & SSH banner stills show previous
banner
Product: Portable OpenSSH
Version: -current
Platform: Sparc
OS/Version: Solaris
Status: NEW
Severity: normal
Priority: P3
Component: ssh
AssignedTo:
2016 Apr 12
0
ggplot2
Hi James,
If you want to specify the y-values, you need to use stat="identity" as below:
ggplot(probability, aes(x=Fertilizer, y=prob)) +
geom_bar(stat="identity", aes(fill=Treatment))
best,
huzefa
On Tue, Apr 12, 2016 at 1:02 PM, James Henson <jfhenson1 at gmail.com> wrote:
> Dear R Community,
>
> Below is a problem with a simple ggplot2 graph. The code