search for: piecem

Displaying 20 results from an estimated 155 matches for "piecem".

Did you mean: pieces
2017 Sep 05
0
Is it possible to transfer a large, dynamic file in a piecemeal fashion? Yes it is.
Subject: Re: Is it possible to transfer a large, dynamic file in a piecemeal fashion? Yes it is. Don Kuenz via rsync <rsync at lists.samba.org> wrote: > Greetings, > > Is it possible to use rsync to transmit a large, dynamic 2TB file in a > piecemeal fashion during daylight hours over the course of a dozen days? > On a good day, about 200GB of data...
2017 Sep 05
0
Is it possible to transfer a large, dynamic file in a piecemeal fashion? Yes it is.
...al. The upside of --partial is that the existing file isn't replaced until there is a complete file to replace it with. The downside is building up that entire new file. On 09/05/2017 12:01 AM, Don Kuenz via rsync wrote: > Subject: Re: Is it possible to transfer a large, dynamic file in a piecemeal fashion? Yes it is. > > Don Kuenz via rsync <rsync at lists.samba.org> wrote: >> Greetings, >> >> Is it possible to use rsync to transmit a large, dynamic 2TB file in a >> piecemeal fashion during daylight hours over the course of a dozen days? >> On a...
2017 Sep 04
0
Is it possible to transfer a large, dynamic file in a piecemeal fashion?
Greetings, Is it possible to use rsync to transmit a large, dynamic 2TB file in a piecemeal fashion during daylight hours over the course of a dozen days? On a good day, about 200GB of data can be transferred before rsync times out to enable a nightly local backup to complete. The local backup changes a few 512 byte blocks in the 2TB file. That's why the 2TB file is dynamic. As an...
2017 Sep 05
0
Is it possible to transfer a large, dynamic file in a piecemeal fashion?
On Mon, Sep 04, 2017 at 10:45:26PM +0000, Don Kuenz via rsync wrote: > Greetings, > > Is it possible to use rsync to transmit a large, dynamic 2TB file in a > piecemeal fashion during daylight hours over the course of a dozen days? > On a good day, about 200GB of data can be transferred before rsync times > out to enable a nightly local backup to complete. The local backup > changes a few 512 byte blocks in the 2TB file. That's why the 2TB file &gt...
2005 Jul 17
1
Re: Fix passwd/shadow/group files? -- network architecture is always piecemeal
From: Feizhou > I know what a Kerberos authentication system is. > You mean a core component in Samba 3.0's functionality as an ADS client. You're still artificially limiting your understanding. Kerberos (with the MS extensions in the case of 200x/XP) is how objects authenticate each other and grant tickets for access in a Kerberos realm. Samba can use Kerberos how it sees fit.
2005 Jul 17
1
Re: Fix passwd/shadow/group files? -- network architecture is always piecemeal
From: Dag Wieers > Bryan, and you're still belittling people in discussions and get into long > arguments as a result. Pretty please stop doing that. I apologize for any belittling. It is not my intent, but I do see a repeat theme. People thing in single products/projects, not breaking down things into their multiple technologies. That's all I meant by "artificially
2007 Sep 21
3
Q: appending to non-existent vector?
This is a real newbie question. What makes it worse is that I know I've seen the answer somewhere, but I can no longer find it. If I have a loop that is supposed to generate a vector piecemeal, adding an element each time through the loop, what do I do to stop it failing the first time around the loop, when the vector doesn't yet exist (so I can't use the append() function)?
2009 Nov 06
3
screwed up dependencies
Subsequent to trying to "yum update"-- it failed--, I tried to resolve the dependencies piecemeal: # yum update faad2 .... --> Processing Dependency: libfaad.so.0 for package: ffmpeg ---> Package faad2.i386 0:2.7-1.el5.rf set to be updated --> Finished Dependency Resolution ffmpeg-0.5-2.el5.rf.i386 from installed has depsolving problems --> Missing Dependency: libfaad.so.0 is...
2014 Feb 11
11
[LLVMdev] Proposal: split tools/opt/opt.cpp to OptTool and a smaller main()
...the code from tools/opt, leaving tools/opt/opt.cpp out. A more ambitious step would be to move the functionality to a library (lib/Tools?) - enabling code reuse between different LLVM tools as well as easier use within custom tools. Any opinions / suggestions welcome. I'll be happy to send out piecemeal patches that implement this refactoring. Eli -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140211/27619331/attachment.html>
2016 May 05
4
Before we go cleaning up LLVM+Clang of all Static Analyzer Warnings...
...nity discussion about how how to go about any of these things across the codebase. Maybe using nonnull attributes would be a better approach to the parameter issue, for example - but it'll still be a lot of code churn that there should probably be general consensus on rather than approaching it piecemeal with reviewers in different parts of the codebase. Thanks, - Dave -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160505/e3b717dd/attachment.html>
2004 Apr 13
4
[LLVMdev] An LLVM 1.3 Request
...worked. I would then check in the branch, merge mainline into it again and re-test. Once I was synched with mainline and everything checked out, I'd commit again. The branch would be verified independently by someone else before being merged back to mainline. Trying to do a global change in a piecemeal fashion will just create pain for more people. For example, how would I supply a patch to autoconf/configure.ac that removes support for, say --enable-spec2000 and that still lets you configure for testing? Attempting to do this piecemeal (or "incrementally" as you put it :) will just...
2017 Apr 11
2
OT: systemd Poll
Interesting that you should cite Stallman because freedom is an issue here, we've been reduced to Microsoft when it comes to init. We've lost most of our flexibility with no option to choose piecemeal what we want and don't want. ----- Original Message ----- From: "Andrew Holway" <andrew.holway at gmail.com> To: "centos" <centos at centos.org> Sent: Tuesday, April 11, 2017 9:50:02 AM Subject: Re: [CentOS] OT: systemd Poll > > I'd much rather ha...
2018 Jan 25
1
[nbdkit PATCH] errors: Use lighter-weight locking
...nbdkit - * Copyright (C) 2013-2017 Red Hat Inc. + * Copyright (C) 2013-2018 Red Hat Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -44,21 +44,16 @@ #include "nbdkit-plugin.h" #include "internal.h" -/* Used to group piecemeal message construction into atomic output. */ -static pthread_mutex_t errors_lock = PTHREAD_MUTEX_INITIALIZER; - static void lock (void) { - int r = pthread_mutex_lock (&errors_lock); - assert (!r); + flockfile (stderr); } static void unlock (void) { - int r = pthread_mutex_unlock...
2011 Mar 19
6
Wrong size on a domU partition
Hi. I need more space on my domU server, so i create a file image to attach it to the domU. But when i load that image in the domU, show a size very different to the create. I create the file with this command dd if=/dev/zero of=/xen/domains/SRV03/opt-disk.img bs=1024k seek=30720 count=30720 (The idea is create an image disk with 30GB, but when i check the disk on the domU show 64GB.)
2015 Apr 27
2
Find installed yum groups?
On Mon, Apr 27, 2015 at 4:34 PM, Matthew Miller <mattdm at mattdm.org> wrote: > On Mon, Apr 27, 2015 at 04:04:41PM -0500, Les Mikesell wrote: >> Interesting, but it seems to _only_ show groups that weren't included >> in the anaconda install. For example where the saved anaconda-ks-cfg >> shows @gnome-desktop and @development, 'yum grouplist' only shows
2010 Oct 05
2
Using as.polynomial() over a matrix
..._p[1:5,] dM_I dM_a.c dM_a.c.sq [1,] -0.00593058 -0.000688 3.65e-05 [2,] -0.01913294 0.000103 1.41e-04 [3,] -0.01317958 -0.001190 1.49e-04 [4,] -0.02651112 -0.001550 2.37e-04 [5,] -0.01680289 -0.003520 2.86e-04 So - looks like the coercion hasn't worked. BUT, if I do things piecemeal - it looks ok.. > m_p1<-as.polynomial(m[1,]) > m_p1 -0.00593058 - 0.000688*x + 3.65e-05*x^2 -------------------------------- ------------------------------- 2. This made me think I was making some wrong assumptions using apply(). So I wrote a function "test()", to take each...
2015 Dec 09
3
Include all the things
Rather than including llvm header files piecemeal on an ongoing basis, I'm looking for a way to include all such header files once and for all. To that end, I wrote a Python script to generate include directives for all .h files in llvm/include and its subdirectories. This almost works, but getting two error messages: In file included from...
2016 Mar 16
2
match and unique
...rves involves the concept of unique death times. I've had reported cases in the past where survfit failed, and it was due to the fact that two "differ by machine precision" values would sometimes match and sometimes not, depending on how I compared them. I've dealt with those piecemeal in the past, but am going to do a code review and make sure that I do things consistently throughout the survival package. The basic plan will be to change time to an integer, do all the work, then restore labels at the end. The above line is one candidate for the first step. An alternativ...
2004 Apr 13
0
[LLVMdev] An LLVM 1.3 Request
...> the branch, merge mainline into it again and re-test. Once I was synched > with mainline and everything checked out, I'd commit again. The branch > would be verified independently by someone else before being merged back > to mainline. > > Trying to do a global change in a piecemeal fashion will just create > pain for more people. For example, how would I supply a patch to > autoconf/configure.ac that removes support for, say --enable-spec2000 > and that still lets you configure for testing? Attempting to do this > piecemeal (or "incrementally" as you...
2003 Oct 09
1
nlme & lme for complex mixed ANOVAs
...wed. So, surprisingly to me, Stata/SE, which I bought for large data sets, is too small! Not that I don't like Stata, but I am annoyed that I must find another tool to use. I understand that SAS Proc Mixed will compute the problem, because it may handle the covariance matrix in some kind of piecemeal fashion (perhaps by animal but I've no confirmation of this, except that it zips through a comparable data set on someone else's computer). However, I am running Apple OS X and don't have SAS on my machine. I don't really understand what's going on underneath these progra...