Displaying 10 results from an estimated 10 matches for "arquitectures".
Did you mean:
arquitecture
2007 Jan 17
2
One way choppy sound
Hi Guys
I'm conecting 2 astersk servers using this arquitecture
(Ext softphone)<==sip==>(asterisk 1)<====iax2 trunk====>(asterisk 2)
<===alaw==>(pstn)
If i call from the Ext to the asterisk 2 the sound is perfect, but
if i call from Ext to the pstn, i can hear perfect but they tell me
that sound really choppy, i tried using several codecs (same problem)
but i
2019 May 29
2
Converting non-32-bit integers from python to R to use bit64: reticulate
Dear R Developers,
There is an interesting issue related to "reticulate" R package which
discusses how to convert Python's non-32 bit integers to R, which has had
quite an exhaustive discussion:
https://github.com/rstudio/reticulate/issues/323
Python seems to handle integers differently from R, and is dependant on the
system arquitecture: On 32 bit systems uses 32-bit integers,
2009 Jan 20
1
Ntlm_auth authentication problem issue
Hi, I have an arquitecture, of squid-Active Directory with NTLM
authentication, I have users registered in Active Directory with
character '?' in this username, with ldap authentication work well, but
with ntlm the user is not found, and can't be authenticated.
Is a problem of charset?, my linux use utf-8. Maybe change it to latin-1
could resolve? with the variables unix charset,
2008 Jun 23
1
ggplot2-barplot
Hi all:
I have been using ggplot2 graphics for quite some time now and I really like it. However, I haven't used barplots enough to understand the arquitecture behind it. Can someone show me how to make this simple barplot graph with ggplot2? I want "PondName" along the x axis and "avgWt" along the Y axis which represents the avgWt by each Pond.
PondName avgWt
Pond01 21.5
2019 May 30
2
Converting non-32-bit integers from python to R to use bit64: reticulate
Thank you Gabriel for valuable insights on the 64-bit integers topic.
In addition, my statement was wrong, as Python3 seems to have unlimited
(and variable) size integers. Here is related CPython Code:
https://github.com/python/cpython/blob/master/Objects/longobject.c
Division between Int-32 and Int-64 seems to only happen in Python2.
Best,
Juan
El mi?rcoles, 29 de mayo de 2019, Gabriel
2019 May 29
0
Converting non-32-bit integers from python to R to use bit64: reticulate
Hi Juan,
Comments inline.
On Wed, May 29, 2019 at 12:48 PM Juan Telleria Ruiz de Aguirre <
jtelleria.rproject at gmail.com> wrote:
> Dear R Developers,
>
> There is an interesting issue related to "reticulate" R package which
> discusses how to convert Python's non-32 bit integers to R, which has had
> quite an exhaustive discussion:
>
>
2008 Dec 15
1
Performance issue about maildir path.
Hi, all.
Normally, i use 'domain.ltd/username/Maildir' as users' maildir path, if
i change them to hash style, e.g. 'A0/B0/domain.ltd/C0/D0/username/Maildir',
will it speed up the index operation for MDA? If we have 10000 users,
which maildir path style will improve performance?
Thanks very much. :)
--
Best regards.
Zhang Huangbin
- Open Source Mail Server Solution for
2007 Jan 05
3
Dag repository...
A bit of a new guy around these parts...
I've done a bit of looking, and haven't found any newbie-friendly
instructions on how to add the Dag repository to my CentOS4 box. Could
somebody help me out and point me in the right direction? Thanks...
--
--- David Woyciesjes
2019 Jun 01
0
Converting non-32-bit integers from python to R to use bit64: reticulate
>>>>> Juan Telleria Ruiz de Aguirre
>>>>> on Thu, 30 May 2019 18:46:29 +0200 writes:
>Thank you Gabriel for valuable insights on the 64-bit integers topic.
>In addition, my statement was wrong, as Python3 seems to have unlimited
>(and variable) size integers.
....
If you are interested in using unlimited size integers, you
could use the
2010 Jul 19
2
newbie, reciving a hash from the view
...ruby, i have to do the next
Send a hash (key are strings and values are booleans) to the view, show
it like check box in the view, using string like nome and the value like
check or not checked, and recover this hash modified to the controller
for work with it
so i wrote this
in the view
<%@arquitectures.each do |key, value| %>
<%=key.to_s%> <%=check_box(key, value, {}, true, false) %>
<%end%></p>
in the controller
before_filter loadArchitectures #here load @architectures
def create
if request.post?
begin
@architectures.each do |key, value|...