Displaying 20 results from an estimated 1100 matches similar to: "rsync+ZFS snapshot"
2008 Jun 02
2
unison for windows
Hi All,
I am posting this querry second time.
What i need is--
{Is there any command by which I can get only the updation of file ie only the incremental?.
Suppose I have a text file say ss.txt of 3KB in size and I have taken the
backup of this file. Now I am making the changes in to this file(ss.txt) by
adding 1KB of data. Now I want this 1KB data (in to a new file) when I take the
2006 Apr 09
3
Instant Message?
Hi all,
My client softphone supports IM feature. Does any warmheated expert know if
Asterisk can support IM also at server side? If so, is there any
related documents or weblinks?
--
Thanks & Best Regards!
Steven Li
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060409/f131bc17/attachment.htm
2011 Dec 28
3
[LLVMdev] InstCombine "pessimizes" trunc i8 to i1?
>> Hi!
>>
>> before InstCombine (llvm::createInstructionCombiningPass()) I have
>> a trunc from i8 to i1 and then a select:
>>
>> %45 = load i8* @myGlobal, align 1
>> %tobool = trunc i8 %45 to i1
>> %cond = select i1 %tobool, float 1.000000e+00, float -1.000000e+00
>>
>> after instCombine I have:
>>
>> %29 = load i8*
2011 Dec 29
0
[LLVMdev] InstCombine "pessimizes" trunc i8 to i1?
I think Chris is saying that the and is necessary because with your i1
trunc you're ignoring all of the high bits. The and implements that. If
you don't want this behavior, don't generate the trunc in the first place
and just compare the full width to zero.
Reid
On Wed, Dec 28, 2011 at 6:45 AM, Jochen Wilhelmy <j.wilhelmy at arcor.de>wrote:
>
> >> Hi!
>
2008 May 30
2
rsync on stand alone winXP
Hi,
I want to use rsync in my project that take increment image of files. This is for windowsXP and vista(stand alone) on localhost no need to use on network.
I have following dll and exe::
- rsync.exe
- cygwin1.dll
- cygpopt-0-dll
- rsync-param.reg
Now in services.msc I am seeing "rsync" service. I have started that also
and set in logon tab as "LocalComputer".
Again I
2008 Jun 20
1
problem with rdiff
Hi all.
(I am sending this querry here because it is somehow relating to rsync. If i am wrong please pardon me.)
I am doing following on these windowsXP and Vista.
I am trying to get only incremental backup using "rdiff-backup" (that also uses rsync).
I have installed gcc compiler and by following the steps given in http://katastrophos.net/andre/blog/2005/11/02/rdiff-backup-on-windows/
2018 Nov 06
4
top-down vs. bottom-up list scheduling
Hello List!
I am looking at top-down vs. bottom-up list scheduling for simple(r) in-order
cores. First, for some context, below is a fairly representative pseudo-code
example of the sort of DSP-like codes I am looking at:
uint64_t foo(int *pA, int *pB, unsigned N, unsigned C) {
uint64_t sum = 0;
while (N-- > 0) {
A1 = *pA++;
A2 = *pA++;
B1 = *pB++;
B2 =
2006 Jul 10
3
how to access a model from application.rb
Hi All
How do I access a model from within the application.rb?
What im tying to do is pull some data from a model (news in this case)
that must be displayed on each page within the entire application. I
know I could drop this into each controller, have each view pull it from
the controller, but thats repeating myself...
So whats the best way to do this (as I dont think models are visible
2009 Jul 01
2
Difficulty in calculating MLE through NLM
Hi R-friends,
Attached is the SAS XPORT file that I have imported into R using following code
library(foreign)
mydata<-read.xport("C:\\ctf.xpt")
print(mydata)
I am trying to maximize logL in order to find Maximum Likelihood Estimate (MLE) of 5 parameters (alpha1, beta1, alpha2, beta2, p) using NLM function in R as follows.
# Defining Log likelihood - In the function it is noted as
2008 May 31
1
rsync for incremental
Hi all,
I am able to copy the dir from one drive to another drive on local
machine using windowsXP.
Is there any command by which I can get only the updation of file ie only the incremental?.
Suppose I have a text file say ss.txt of 3KB in size and I have taken the
backup of this file. Now I am making the changes in to this file(ss.txt) by
adding 1KB of data. Now I want this 1KB data (in to a
2009 May 28
3
R connectivity with Oracle DB
Hi Friends,
I am working on R-2.9.0 and i want to connect oracle through R, but i could
not find ROracle (zip file for windows) on CRAN Packages. Can anyone suggest
me how to connect Oracle from R in windows platform? I would be grateful if
u can provide me code aswell.
Thanks & Regards,
Madan
--
View this message in context:
2003 Nov 12
0
Wintab32 - Tablet support - VBtablet & wintab working for Dogwaffle?
I too would be very interested in knowing what's happening with wintab32
under wine - is it usable?
How about in conjunction with VBtablet from www.greenreaper.co.uk ? He has a
small test program there which reports pressure, angle etc.... you might
want to see if that works.
Does somebody on this list have a Wacom, AceCad, Pablo (Disney Magic Artist)
or Aiptek tablet to try Dogwaffle with
2011 Dec 28
0
[LLVMdev] InstCombine "pessimizes" trunc i8 to i1?
On Dec 27, 2011, at 5:09 AM, Jochen Wilhelmy wrote:
> Hi!
>
> before InstCombine (llvm::createInstructionCombiningPass()) I have
> a trunc from i8 to i1 and then a select:
>
> %45 = load i8* @myGlobal, align 1
> %tobool = trunc i8 %45 to i1
> %cond = select i1 %tobool, float 1.000000e+00, float -1.000000e+00
>
> after instCombine I have:
>
> %29 = load i8*
2005 Mar 16
1
Connecting Multiple Asterisk Servers!
Hello,
We 'll setup asterisk servers on several remote locations atleast 6-7
different locations these are connected to each other through
DXX(Digital Cross Connect) ,on larger locations we use PRI/E1 and
small locations we use TDM400 may be one or two but lot of IP
phones(soft/hard phones),basically we are currently in planning phase
to which one is the best for implementing
this setup
2011 Dec 27
2
[LLVMdev] InstCombine "pessimizes" trunc i8 to i1?
Hi!
before InstCombine (llvm::createInstructionCombiningPass()) I have
a trunc from i8 to i1 and then a select:
%45 = load i8* @myGlobal, align 1
%tobool = trunc i8 %45 to i1
%cond = select i1 %tobool, float 1.000000e+00, float -1.000000e+00
after instCombine I have:
%29 = load i8* @myGlobal, align 1
%30 = and i8 %29, 1
%tobool = icmp ne i8 %30, 0
%cond = select i1 %tobool, float 1.000000e+00,
2012 Nov 11
1
[LLVMdev] madandas@soe.ucsc.edu
Hello,
I'm trying to find if the access within a loop body is using the loop
induction variable, and to get the start and end indices of the loop.
for(int i = start; i < end; i++) { A[i] = 0; }
Let's say, I want to replace this with a function call 'zero(A,start,
end)'
How can I get the Value for start and end, and see if the index is same as
loop induction variable?
2008 Jul 09
1
loverays invites you to join Zorpia
Hi speex-dev!
Your friend loverays from , just invited you to his/her online photo albums and journals at Zorpia.com.
So what is Zorpia?
It is an online community that allows you to upload unlimited amount of photos, write journals and make friends. We also have a variety of skins in store for you so that you can customize your homepage freely.
Join now for free! Please click the following
2009 Jun 02
3
montly mean temp plot
Dear all
i got a problem in monthly mean temperature. here i am attaching the data set as well as the plot i got with the following command
plot(month,type='n')
plot(month,X1999)
this command gave the plot where the month names are in alphabetic order, i want the plot in monthly sequence
could you please suggest me how can i solve my problem?
thanking you
regard
madan
2007 Aug 29
6
RSYNC Hang on client match_sums
Hi,
Got a strange problem with rsync ! Here is the story ...
I got a linux rsync server running for 8 months without any problem (rsync
2.6.6 18)
I got about a dozen of rsync clients (linux and windows, generally using a
2.6.5 rsync version) that synchronize their datas without any problem. Some
of them only synchronize a few datas (10 GB) and some others synchronize
large amount of data
2005 Dec 08
1
description of HFSC qdisc module
Hi,
is there a good commandline parameter reference for the sch_hfsc.o
module? i googled half a day with no luck. can someone please be so kind
to send a weblink or post the reference on nopaste or something like this.
regards
uwe