search for: modifict

Displaying 9 results from an estimated 9 matches for "modifict".

Did you mean: modifica
2024 Mar 18
0
[PATCH] add option to skip files based on age/mtime
...artially transferred files --partial-dir=DIR put a partially transferred file into DIR @@ -2090,6 +2092,22 @@ expand it. Note that rsync versions prior to 3.1.0 did not allow `--min-size=0`. +0. `--max-age=SECONDS` + + This tells rsync to avoid transferring any file that has a modifiction time + greater than the specified number of SECONDS ago. + + This option is a [TRANSFER RULE](#TRANSFER_RULES), so don't expect any + exclude side effects. + +0. `--min-age=SECONDS` + + This tells rsync to avoid transferring any file that has a modifiction time + less than t...
2012 Apr 04
1
Shapiro-Wilk cpoefficients: 2 Qs
...shapiro.test(rnorm(30)) works perfectly, and since the "stats:" namespace is already present, I am wondering why "object 'R_swilk' not found" when it clearly can be found by shapiro.test(). So why is it that in the ".C" call: sw <- .C(R_swilk, ... ) my modifiction of shapiro.test() doesn't find it? (No doubt there is some dumb oversight behind this, but I'd be grateful to be told what it is)! With thanks, Ted. ------------------------------------------------- E-Mail: (Ted Harding) <Ted.Harding at wlandres.net> Date: 04-Apr-2012 Time: 23:...
2002 Jul 18
2
Comments needed
Hi, could somebody answer to my scp patch that I sent 2002-07-13? -- Miika Pekkarinen miika at ihme.org
2014 Sep 27
1
Automatic Update of MP3 Files
...nt that's capable to reload its play list dynamically. That might be > e.g. ez-stream, but there are many." > > If you give us some more information about your work flow for populating those playlists someone on the list might be able to suggest a better suited source client or a modifictation to your current setup. > > > >> give me a real step-by-step answer. > > Without understand your situation fully, it is impossible to give you > "exact steps". > At the risk of angering you further I'm going to say, that what you are > asking for...
2014 Sep 27
0
Automatic Update of MP3 Files
...ent source client that's capable to reload its play list dynamically. That might be e.g. ez-stream, but there are many." If you give us some more information about your work flow for populating those playlists someone on the list might be able to suggest a better suited source client or a modifictation to your current setup. > give me a real step-by-step answer. Without understand your situation fully, it is impossible to give you "exact steps". At the risk of angering you further I'm going to say, that what you are asking for goes in some aspects beyond the scope of th...
2014 Sep 26
5
Automatic Update of MP3 Files
So far I?m getting insults and claims that I don?t know what I?m doing and my Webmaster doesn?t know what he?s doing, even though he?s worked for large bluechip companies. Please make an effort to actually respond to what I asked, and don?t presume to tell me what I did wrong and how it?s my fault ? or his fault. I assume the distribution is the one on the Icecast site. I have a CentOS 6.5
2010 Mar 01
0
[PATCH 2/2 V2] drm/nv50: Improve PGRAPH interrupt handling.
...tatus & 0x20) { + nv50_pfb_vm_trap(dev, display, "PGRAPH_TRAP_UNKC04"); + ustatus = nv_rd32(dev, 0x402000) & 0x7fffffff; + if (display) + NV_INFO(dev, "PGRAPH_TRAP_UNKC04 - Unhandled ustatus 0x%08x\n", ustatus); + nv_wr32(dev, 0x402000, 0xc0000000); + /* no status modifiction on purpose */ + } + + /* TEXTURE: CUDA texturing units */ + if (status & 0x040) { + nv50_pgraph_tp_trap (dev, 6, 0x408900, 0x408600, display, + "PGRAPH_TRAP_TEXTURE"); + nv_wr32(dev, 0x400108, 0x040); + status &= ~0x040; + } + + /* MP: CUDA execution engines. */ + if (sta...
2010 Feb 28
1
[PATCH 1/2] drm/nv50: Make ctxprog wait until interrupt handler is done.
This will fix races between generated ctxprogs and interrupt handler. Signed-off-by: Marcin Ko?cielnicki <koriakin at 0x04.net> --- drivers/gpu/drm/nouveau/nv50_grctx.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nv50_grctx.c b/drivers/gpu/drm/nouveau/nv50_grctx.c index d105fcd..9f909ab 100644 ---
2012 Feb 10
21
Reducing the need to compile a custom kernel
Hi, during some big discussions in the last monts on various lists, one of the problems was that some people would like to use freebsd-update but can't as they are using a custom kernel. With all the kernel modules we provide, the need for a custom kernel should be small, but on the other hand, we do not provide a small kernel-skeleton where you can load just the modules you need.