search for: erez

Displaying 20 results from an estimated 77 matches for "erez".

Did you mean: perez
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)
...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 i'll be happy. Thanks Erez [[alternative HTML version deleted]]
2010 Jun 08
2
Conditions for using Speex
Hello Speex. We are a small Canadian company currently researching the possibility of using Speex for an iPhone application. We wonder if Speex can be used to develop paid applications and if you require any fees or other payments if it used commercially Thank you. -- Erez T Yanuv Barzilay Digital Media | Interactive Design Graduate Student Center for Digital Media 577 Great Northern Way Vancouver, British Columbia This email and any attachments are intended solely for use by the addresses named above. If you are not the intended recipient, you are hereby notified t...
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
2003 Sep 22
3
journal buffer_credits problem
...IW, we're managed to narrow down the problem to the area in our code that uses the sendfile functionality. We use sendfile inside our file system to make a copy of a file before it'd be modified, for versioning purposes. We'll keep digging and let this list know what we find. Thanks, Erez.
2009 Feb 08
2
Graphic boot ...
...sages or menu. The problem I have now is that before loading the kernel the graphic menu returns to text mode (blank dark screen). How can I tell the vesamenu sub-system not to return to the text mode? Any help will be appreciated, If anyone want the changes I made, I'll post them. Thanks, Erez
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.
2009 Sep 23
1
virt-install error - failed to connect
...None:raise libvirtError(''virConnectOpen() failed'') libvirtError: virConnectOpen() failed the command-line i used was : virt-install --name fedora9 --ram 512 --file=/sda8/test1.img --file-size=3 -l /sda8/rhel-server-5.3-x86_64-dvd.iso -v Any help would be appreciated, thanks! Erez _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
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.
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
2018 Jun 05
2
[PATCH] v2v: -o rhv-upload: Set inactivity timeout (RHBZ#1586198).
...r 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’. Thanks: Nir Soffer, Daniel Erez. --- v2v/rhv-upload-plugin.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py index c3de7d555..44972de21 100644 --- a/v2v/rhv-upload-plugin.py +++ b/v2v/rhv-upload-plugin.py @@ -123,9 +123,8 @@ def open(readonly): #...
2010 Apr 22
2
pci-attach - HOWTO
...oved 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 need to do something in the domU (the hotplug feature? do I need to enter it manually? if yes How?) Thanks in advanced, Erez _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
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
2018 Mar 26
1
Re: [PATCH v7 6/6] v2v: Add -o rhv-upload output mode (RHBZ#1557273).
On Mon, Mar 26, 2018 at 09:27:25AM +0000, Daniel Erez wrote: > You can get it from '.storage.type' on the StorageDomain object. > E.g. > sd = connection.system_service().storage_domains_service().list()[0] > sd.storage.type -> nfs/iscsi/etc Is there a defined set of what can be returned, and/or a way to find out if the storage...
2018 Aug 07
1
[PATCH] v2v: -o rhv-upload: Properly replace SD_UUID in OVF (RHBZ#1612653).
The @SD_UUID@ pattern was not being replaced correctly. Thanks: Daniel Erez. --- v2v/rhv-upload-createvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2v/rhv-upload-createvm.py b/v2v/rhv-upload-createvm.py index a34627ec8..1d0e8c95d 100644 --- a/v2v/rhv-upload-createvm.py +++ b/v2v/rhv-upload-createvm.py @@ -70,7 +70,7 @@ sds_service = system_ser...
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 Jul 24
1
Re: [PATCH] v2v: rhv plugin - fix DC search string
On Tue, Jul 24, 2018 at 7:27 PM Richard W.M. Jones <rjones@redhat.com> wrote: > On Tue, Jul 24, 2018 at 07:16:10PM +0300, Daniel Erez wrote: > > 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...
2003 Aug 18
2
another seriously corrupt ext3 -- pesky journal
...find a way to force fsck to ignore the journal no matter what. Is there such a tool or option to some tool? Is there a way I could simply scan the disk and truncate the journal file, or turn off the has_journal bit w/o touching the rest of the f/s? Any suggestions are welcome. Thanks, Erez.
2018 Mar 28
1
Re: Change in ovirt-imageio[master]: Document the random I/O APIs
...errit-MessageType: comment > Gerrit-Change-Id: I98fbc20e1c05ab9fe627d33034034a47e1740da8 > Gerrit-Change-Number: 89022 > Gerrit-PatchSet: 7 > Gerrit-Owner: Nir Soffer <nsoffer@redhat.com> > Gerrit-Reviewer: Allon Mureinik <amureini@redhat.com> > Gerrit-Reviewer: Daniel Erez <derez@redhat.com> > Gerrit-Reviewer: Jenkins CI > Gerrit-Reviewer: Nir Soffer <nsoffer@redhat.com> > Gerrit-Reviewer: Roy Golan <rgolan@redhat.com> > Gerrit-Reviewer: Tomas Golembiovsky <tgolembi@redhat.com> > Gerrit-Reviewer: Yaniv Kaul <ykaul@redhat.com&...
2019 Sep 09
1
Re: [PATCH] v2v: rhv-upload-plugin - improve wait logic after finalize (RHBZ#1680361)
On Mon, Sep 9, 2019 at 7:02 PM Richard W.M. Jones <rjones@redhat.com> wrote: > From: Daniel Erez <derez@redhat.com> > > After invoking transfer_service.finalize, check operation status by > examining DiskStatus. This is done instead of failing after a > predefined timeout regardless the status. > > Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1680361 > Signe...