Displaying 15 results from an estimated 15 matches for "copy1".
Did you mean:
copy
2018 Apr 05
1
potential file.copy() or documentation bug when copy.date = TRUE
This is a recent R-devel. file.copy() is not vectorized if multiple
destinations succeed:
cat("foo1\n", file = "foo1")
cat("foo2\n", file = "foo2")
unlink(c("copy1", "copy2"), recursive = TRUE)
file.copy(c("foo1", "foo2"), c("copy1", "copy2"), copy.date = TRUE)
#> Error in Sys.setFileTime(to[okay], fi$mtime) : invalid 'path' argument
# But the files were still copied:
file.exists(c("cop...
2009 Dec 11
1
about --link-dest
Hello all:
I don't know what I'm doing bad, but --link-dest does not work for me:
I have three directories, the original one, the first copy and the second copy I want to populate:
$ ls -li
total 12
1761433 drwxr-xr-x 2 envite envite 4096 dic 10 14:04 copy1
1761434 drwxr-xr-x 2 envite envite 4096 dic 11 01:18 copy2
1761432 drwxr-xr-x 2 envite envite 4096 dic 10 14:04 origin
$ ls -li *
copy1:
total 4
1761436 -rw-r--r-- 1 envite envite 3 dic 10 14:04 kk
copy2:
total 0
origin:
total 4
1761435 -rw-r--r-- 1 envite envite 3 dic 10 14:04 kk
I use the --li...
2014 Nov 30
2
[PATCH] gf116: remove copy1 engine
...-218,7 +218,6 @@ nvc0_identify(struct nouveau_device *device)
device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass;
device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass;
device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass;
- device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass;
device->oclass[NVDEV_ENGINE_DISP ] = nva3_disp_oclass;
device->oclass[NVDEV_ENGINE_PERFMON] = &nvc0_perfmon_oclass;
break;
--
2.0.4
2014 Sep 16
3
unattended cloning
Morning,
I have a KVM guest running Win 2012 with MS SQL 2012.
In order to provide a quick method of restoring the service should the live server die, we've decided to clone it to a preserved state.
Ideally, this clone should also be kept up to date and cloning should be done on a regular basis.
Is there any reason not to do unattended cloning? As in, when I leave on a Friday afternoon,
2010 Mar 22
1
Using dev.copy
...I'm making a
plot, the first stage of drawing which takes a long time. I want to
experiment with adding details. Here is what I was hoping to do, which
results in error.
## Draw the master plot on png dev 2
png(file="master.png")
plot(1:10)
## Save a copy on png dev 3
png(file="copy1.png")
dev.set(2)
dev.copy(which=3)
## Add details to copy, write to disk and view
abline(v=5)
Error in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...) :
plot.new has not been called yet
Can someone tell me how to do this correctly?
Thanks a lot,
Dan
2013 Sep 02
0
[PATCH] drm/nv50-: fix tiled memory layout checks
...;
OUT_RING (chan, 0);
OUT_RING (chan, 0);
@@ -1051,8 +1049,8 @@ nouveau_bo_move_init(struct nouveau_drm *drm)
} _methods[] = {
{ "COPY", 4, 0xa0b5, nve0_bo_move_copy, nve0_bo_move_init },
{ "GRCE", 0, 0xa0b5, nve0_bo_move_copy, nve0_bo_move_init },
- { "COPY1", 5, 0x90b8, nvc0_bo_move_copy, nvc0_bo_copy_init },
- { "COPY0", 4, 0x90b5, nvc0_bo_move_copy, nvc0_bo_copy_init },
+// { "COPY1", 5, 0x90b8, nvc0_bo_move_copy, nvc0_bo_copy_init },
+// { "COPY0", 4, 0x90b5, nvc0_bo_move_copy, nvc0_bo_copy_init },
{ "...
2015 Apr 05
3
Nouveau kernel module exhausting CPU
...2261
[ 0.803166] nouveau [ DRM] DCB conn 03: 00010330
[ 0.803819] [drm] forcing VGA-1 connector OFF
[ 0.803928] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 0.803928] [drm] Driver supports precise vblank timestamp query.
[ 0.818699] nouveau [ DRM] MM: using COPY1 for buffer copies
[ 1.063301] nouveau [ DRM] allocated 1920x1080 fb: 0x60000, bo ffff880215bee800
[ 1.063423] fbcon: nouveaufb (fb0) is primary device
[ 1.181816] nouveau 0000:01:00.0: fb0: nouveaufb frame buffer device
[ 1.181817] nouveau 0000:01:00.0: registered panic notifier
[...
2013 Dec 17
0
[Bug 58378] [NV86] Distorted graphics on NVIDIA GeForce 8400M G after upgrade the kernel to 3.7.0 version
...current kernel, method nouveau_bo_move_init looks similar, but different:
} _methods[] = {
{ "COPY", 4, 0xa0b5, nve0_bo_move_copy, nve0_bo_move_init },
{ "GRCE", 0, 0xa0b5, nve0_bo_move_copy, nvc0_bo_move_init },
{ "COPY1", 5, 0x90b8, nvc0_bo_move_copy, nvc0_bo_move_init },
{ "COPY0", 4, 0x90b5, nvc0_bo_move_copy, nvc0_bo_move_init },
{ "COPY", 0, 0x85b5, nva3_bo_move_copy, nv50_bo_move_init },
{ "CRYPT", 0, 0x74c1, nv84_bo_move_exec...
2014 Jan 10
2
[PATCH 1/3] drm/nouveau: provide a way for devinit to mark engines as disabled
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
I decided to let the user still specify config=BLA=1 to override the hw
disable in case we get something wrong or for double-checking stuff, but I
suspect it won't really be used much. I'm not terribly fond of the message
text, if you come up with something better, feel free to drop it in.
2014 Nov 27
7
[Bug 86792] New: [NVC0] Portal 2 Crashes in Wine
...08011382 00020030
[ 2.067526] nouveau [ DRM] DCB outp 04: 02022362 00020010
[ 2.067528] nouveau [ DRM] DCB conn 00: 00001030
[ 2.067531] nouveau [ DRM] DCB conn 01: 00010130
[ 2.067534] nouveau [ DRM] DCB conn 02: 00002261
[ 2.084736] nouveau [ DRM] MM: using COPY1 for buffer copies
[ 2.281264] nouveau [ DRM] allocated 1440x900 fb: 0x60000, bo
ffff8801a1214400
[ 2.281462] fbcon: nouveaufb (fb0) is primary device
[ 2.342390] nouveau 0000:02:00.0: fb0: nouveaufb frame buffer device
[ 2.342392] nouveau 0000:02:00.0: registered panic notifier
[...
2019 Apr 01
1
[PATCH nbdkit v2] Add readahead filter.
Simpler, and including tests.
Rich.
2012 Dec 05
2
[RFC PATCH] drm/nouveau: report channel owner in error messages
...{NVDEV_ENGINE_GR, 0} },
+ { 0x00000001, {NVDEV_ENGINE_VP, 0} },
+ { 0x00000005, {NVDEV_ENGINE_FIFO, 0} },
+ { 0x00000008, {NVDEV_ENGINE_PPP, NVDEV_ENGINE_MPEG, 0} },
+ { 0x00000009, {NVDEV_ENGINE_BSP, 0} },
+ { 0x0000000a, {NVDEV_ENGINE_CRYPT, 0} },
+ { 0x0000000d, {NVDEV_ENGINE_COPY0, NVDEV_ENGINE_COPY1, 0} },
+};
+
static const struct nouveau_enum vm_fault[] = {
{ 0x00000000, "PT_NOT_PRESENT", NULL },
{ 0x00000001, "PT_TOO_SHORT", NULL },
@@ -334,8 +352,12 @@ static void
nv50_fb_intr(struct nouveau_subdev *subdev)
{
struct nouveau_device *device = nv_device(subdev);
+...
2013 Jan 09
55
[Bug 59168] New: [nvc3/Quadro2000M] graphic garbage/corruption/noise on resume
https://bugs.freedesktop.org/show_bug.cgi?id=59168
Priority: medium
Bug ID: 59168
Assignee: nouveau at lists.freedesktop.org
Summary: [nvc3/Quadro2000M] graphic garbage/corruption/noise on
resume
QA Contact: xorg-team at lists.x.org
Severity: major
Classification: Unclassified
OS: Linux (All)
2012 Aug 03
25
[Bug 53101] New: Fedora 17 "PFIFO - playlist update failed" on boot
https://bugs.freedesktop.org/show_bug.cgi?id=53101
Bug #: 53101
Summary: Fedora 17 "PFIFO - playlist update failed" on boot
Classification: Unclassified
Product: xorg
Version: unspecified
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component:
2013 May 15
8
[Bug 64645] New: Massive corruption
...core 405MHz shader 810MHz memory 324MHz
voltage 900mV
[ 4.411436] nouveau [ DRM] 3: core 640MHz shader 1280MHz memory 800MHz
voltage 990mV
[ 4.411438] nouveau [ DRM] c: core 405MHz shader 810MHz memory 324MHz
voltage 930mV fanspeed 30%
[ 4.442553] nouveau [ DRM] MM: using COPY1 for buffer copies
[ 4.570333] nouveau [ DRM] allocated 1920x1080 fb: 0x60000, bo
ffff88041bbad800
[ 4.618072] [drm] Initialized nouveau 1.1.0 20120801 for 0000:01:00.0 on
minor 0
-- System Information:
Debian Release: 7.0
APT prefers testing
APT policy: (900, 'testing')
A...