Displaying 20 results from an estimated 1000 matches similar to: "Conditions for using Speex"
2010 Jun 09
0
Conditions for using Speex
On 10-06-08 08:02 AM, Erez Barzilay wrote:
> We wonder if Speex can be used to develop paid applications and if you
> require any fees or other payments if it used commercially
There are no fees for using Speex -- commercially or not. All you need
is to follow the few conditions detailed in the COPYING file.
Cheers,
Jean-Marc
2012 Apr 06
1
Feature request config entry for `-T'
Hi,
AFAICT, there is no .ssh/config option for disabling pseudo-tty
allocation. It would be nice to have one.
Context: we're using gitolite in our project, and it sets things up
to run a command with "no-pty". Every once in a while, users will try
to ssh to the machine to see that things are working, and when they
see the "PTY allocation request failed on channel 0"
2010 Feb 07
3
Solidworks on Samba
Dear friend,
I saw your post
http://lists.samba.org/archive/samba/2008-November/144686.html about running
Solidworks with SAMBA as a file server.
I'm getting the same issue with the ~files....
Did you solved this issue? Can you explain me how?
Thanks,
Miki Barzilay
2006 Apr 24
4
R help
Hello,
I'm trying to create a large matrix and it's extends the limit boundaries.
The matrix is 100,000x2874 and R is throwing me out, what shall i do?
Thanks
Erez
2005 Nov 01
3
(no subject)
Hi
I need an advise if any one can help me.
i have mass of data in 2 array A and B:
A = 0 1 0 0 1 1 0 0
B = 0 0 0 1 0 1 1 1
and i have 3 rules to merge them into 3rd array C:
if A[i] + B[i] == 0 then C[i]=0
if A[i] + B[i] == 1 then C[i]=1
if A[i] + B[i] == 2 then C[i]=2
it looks easy but with the regular way (loop) with large data it takes days (i test it).
If any one can advise me what to do
2006 Mar 14
9
firewall problem
snat not working
my local ip is aaa.aaa.aaa.aaa
asterisk sitting on the internet at ip bbb.bbb.bbb.bbb
my firewall''s internal ip is 192.168.0.254
i did snat:
iptables -t nat -A POSTROUTING -o ppp0 -j SNAT --to aaa.aaa.aaa
iptables -t nat -L -v gives:
Chain POSTROUTING (policy ACCEPT 23663 packets, 2182K bytes)
pkts bytes target prot opt in out source
destination
33056
2024 Jul 30
1
C API - no NULL pointer guarantee?
Erez,
I think the API is very explicit about this, NULL is not an accepted input for any function taking SEXP by design. The special case of try*Eval() return values can be taken as a case where the resulting object is not actually SEXP but rather a special type which can be NULL (=failure) or SEXP. It may be even perhaps useful to declare it as a separate type to make this clearer, but I
2024 Jul 30
1
C API - no NULL pointer guarantee?
Thank you Ivan,
At this point, without it being documented explicitly, I tend to lean on the safe side.
If the non-null assumption is ever incorrect, on debug and safe builds unwrapping is an assert that will guarantee to crash R.
While the source code has plenty of NULL checks, also for some SEXP, it's hard to tell just from grepping if any are related to the public API or not.
Secondly
2003 Sep 22
3
journal buffer_credits problem
Hi, we're working on a stackable versioning file system for 2.4.x.
Versioning can easily create lots of files for a file that gets modified
frequently, and our current design puts all versions of a file in the same
directory as the main file. We are therefore evaluating how stable and
efficient different combinations of file systems would be in this scenario.
We've run our versionfs on
2006 May 09
4
Route by destination port?
Hello all,
We have two ADSL lines configured on a single box, hence interfaces ppp0 & ppp1.
Is there a way to route packets to ppp0, say based on destination port
80 & other traffic like voice through ppp1?
Thanks.
2009 Feb 08
2
Graphic boot ...
Hi Peter and Group,
First, thanks for great boot system.
My goal is to create a boot process that is clean from any text
message and shows simple graphics at startup.
That graphic image will last until the X server is starting (with the
same background, might be with different resolution).
My reason is, that many end users prefer graphics on simple cryptic
text messages.
Messages will be
2019 Sep 09
3
[PATCH] v2v: rhv-upload-plugin - improve wait logic after finalize
This is a patch which Daniel Erez wrote originally. I have modified
it only to fix a small bug in the debug() statement, and Ilanit kindly
tested it here:
https://bugzilla.redhat.com/show_bug.cgi?id=1680361#c38
Rich.
2018 Jul 24
3
[PATCH] v2v: rhv plugin - fix DC search string
Search for DC by 'storage.name=' to make it explicit.
I.e. "storage=" uses regex, so similar names can be
found in the search query. For example, searching for
a domain named FCSD, will find FCSD1 as well.
---
v2v/rhv-upload-plugin.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py
index c72f5e181..c6ba1962f
2009 Sep 23
1
virt-install error - failed to connect
Hi all,
I installed Xen 3.4.0 on RH5.3 from the source, It is working fine (Dom0),
but when i tried to create new guest (hvm) by the virt-install i got the
next message:
Wed, 23 Sep 2009 12:02:15 ERROR virConnectOpen() failed
Traceback (most recent call last):
File "/usr/sbin/virt-install", line 560, in ?
main()
File "/usr/sbin/virt-install", line 348, in main
2024 Jul 29
1
C API - no NULL pointer guarantee?
? Sat, 27 Jul 2024 14:36:20 +0300
"Erez Shomron" <r-mails at erezsh.org> ?????:
> I'm working on bindings for the API (for zig), and was wondering if
> the R's C API guarantees it won't return null pointers? The only
> reference I found in the "Writing R Extensions" manual where this not
> the case is `R_tryEval` and `R_tryEvalSilent`.
Based on
2018 Jul 05
4
[PATCH] v2v: rhv plugin - find suitable host
From: root <root@localhost.localdomain>
For direct upload, a suitable host must be in status 'Up'
and belong to the same datacenter as the created disk.
Added these criteria to the host search query.
---
v2v/rhv-upload-plugin.py | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py
index
2006 Mar 14
2
Maximum likelihood
Hello all,
I'm trying to calculate the Maximum likelihood of individuals to get the
ancestry.
I mixd 3 populations 15 generations in proportion of 20% 20% 60% when each
population
sorce have diferent genome (0 1 and 2) with frequencies for each one.
So now i have individuals looks like 0 0 2 1 1 2 0 ..... and i don't now how
to calculate the
mle although i try to figure out from the
2018 Jun 05
2
[PATCH] v2v: -o rhv-upload: Set inactivity timeout (RHBZ#1586198).
This increases the inactivity timeout for transfers from the default
(60 seconds) to 1 hour, so that we should never hit it for ordinary
transfers.
Note this requires oVirt >= 4.3.0 although the same change was
backported to the 4.2 branch in later releases. The corresponding
oVirt fix was in https://bugzilla.redhat.com/1563278
I also replaced the deprecated ‘image’ parameter with ‘disk’.
2024 Jul 05
1
Bug? plot.formula does need support plot.first / plot.last param in plot.default
That definitely looks like a bug, but not one that anyone will be eager
to fix. It's very old code that tried to be clever, and that's the
hardest kind of code to fix.
Remember Kernighan's Law: "Everyone knows that debugging is twice as
hard as writing a program in the first place. So if you?re as clever as
you can be when you write it, how will you ever debug it?"
2010 Apr 22
2
pci-attach - HOWTO
Hi,
I tried to attach passrough io device to domU, the command (ended successfully in dom0), but when I entered the domU and typed the "lspci" command I didn''t see the new device, although the dom0 removed it from the "pci-list-assignable-devices".
When I tried to detach it from the domU, the detach command returned with timeout error.
What did I miss? perhaps I