search for: suff

Displaying 20 results from an estimated 23 matches for "suff".

Did you mean: stuff
2012 Mar 28
2
lapply and paste
I have a list of suffixes I want to turn into file names with extensions. suff<- c("C1", "C2", "C3") paste("filename_", suff[[1]], ".ext", sep="") [1] "filename_C1.ext" How do I use lapply() on that call to paste()? What's the right way to do...
2016 Aug 08
1
[PATCH v2] v2v: disk: strip only common extension (RHBZ#1365005)
...assed in. Users can override this using the * `-on name' option. *) - let name = Filename.basename disk in let name = - try Filename.chop_extension name with Invalid_argument _ -> name in + let name = Filename.basename disk in + (* Remove the extension (or suffix), only if it's one usually + * used for disk images. *) + let suffixes = [ + ".img"; ".qcow2"; ".raw"; ".vmdk"; + "-sda"; + ] in + let rec loop = function + | suff :: xs -> + if Filename.ch...
2016 Sep 09
0
[PATCH 1/2] v2v: -i disk: Move code that creates name from disk to separate module.
...mat disk = object inherit input @@ -42,25 +43,7 @@ class input_disk input_format disk = object * the filename passed in. Users can override this using the * `-on name' option. *) - let name = - let name = Filename.basename disk in - (* Remove the extension (or suffix), only if it's one usually - * used for disk images. *) - let suffixes = [ - ".img"; ".qcow2"; ".raw"; ".vmdk"; - "-sda"; - ] in - let rec loop = function - | suff :: xs -> - if Filename.ch...
2016 Sep 09
5
[PATCH 0/2] v2v: -i ova: Derive the name from the OVA filename.
Don't use "default", choose a better default name if <Name> is not present in the OVF. Rich.
2006 Jul 23
3
RfW 2.3.1: regular expressions to detect pairs of identical word-final character sequences
Dear all I use R for Windows 2.3.1 on a fully updated Windows XP Home SP2 machine and I have two related regular expression problems. platform i386-pc-mingw32 arch i386 os mingw32 system i386, mingw32 status major 2 minor
2001 Nov 25
2
RTCW on Wine questions.........
...Ive seen, and unless Im doing it wrong (very possible) it dosent work, the MP only had to have wav only set to 1 to sound right. Now when I fire wine , I get 2 distinct differences between SP and MP, MP reads simply. fixme:system SystemParamaterInfA unimplemented action :97 (something screensaver suff runnning) fixme:system SystemParamaterInfA unimplemented action :97 (something screensaver suff runnning) Now when I run the SP (Single Player) I get that , plus the following error twice fixme:dsound:IDirectSoundImpl_SetCooperativeSoundLevel(0x40498b34,0010027,2):stub I have tried all the touchi...
2006 Feb 09
2
nice log-log plots
Dear All, I am trying to produce log-log plots in R and I was wondering if any of you have a 'template' for generating these with 'nice' labels and log-log grids? I know I can set up axes individually and use the intervals I want, however, I will be producing a large number of these plots and would not like to do this manually for each of them + I am very new to R and at the
2015 Jun 08
1
[PATCH] qemu-sanity-check.in: Use '-display none' instead of '-nographic'
...le changed, 2 insertions(+), 1 deletion(-) diff --git a/qemu-sanity-check.in b/qemu-sanity-check.in index 5bb5b292def5caff5ca63071565bd447cf5f4efd..34cd9385f56b5eedd0ec26abd128232a47e51996 100644 --- a/qemu-sanity-check.in +++ b/qemu-sanity-check.in @@ -140,7 +140,8 @@ test_output="$(mktemp --suff=.out)" declare -a argv i=0 argv[$((i++))]="$qemu" -argv[$((i++))]="-nographic" +argv[$((i++))]="-display" +argv[$((i++))]="none" argv[$((i++))]="-nodefconfig" argv[$((i++))]="-nodefaults" argv[$((i++))]="-machine" --...
2006 Feb 08
3
ungenerate / remove scaffold command?
I have seen this somewhere and can''t find it now. Is there an ungenerate or remove command for the scaffold generator. It would be easier than removing all the files by hand. I have tried ./script/ungenerate but no luck. Thanks -- Posted via http://www.ruby-forum.com/.
2011 Jul 01
2
regexp problem
...lect with grep all character strings which contain the numbers 11:20 (code below). At the moment I am using [], but that obviously does not work, as it matches each element in the []. Is there a way to specify that the regexp should match 11, but not 1? Here is the code code: x <- paste("suff", 1:40, "pref", sep="_") x ## [1] "suff_1_pref" "suff_2_pref" "suff_3_pref" "suff_4_pref" "suff_5_pref" ## [6] "suff_6_pref" "suff_7_pref" "suff_8_pref" "suff_9_pref" "s...
2005 Aug 19
15
x86_64 SLES 9 SP2 build break
I am trying to build xen on x86_64 SLES 9 SP2 box this morning and am getting this error: arch/xen/kernel/built-in.o(.text+0x1bd6): In function `__do_suspend'': : undefined reference to `HYPERVISOR_vcpu_pickle'' make[4]: *** [.tmp_vmlinux1] Error 1 make[4]: Leaving directory `/tmp/xen-unstable.hg/linux-2.6.12-xen0'' make[3]: *** [build] Error 2 make[3]: Leaving directory
2012 Oct 14
1
[PATCH] NEW API: mktemp
Used to create temporary directory or file with an optional suffix. Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com> --- daemon/dir.c | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++ generator/actions.ml | 36 +++++++++++++++++++++++++++++++ gobject/Makefile.inc | 6 ++++-- po/POTFILES | 2 ++ src/MAX_PROC_NR |...
2013 Dec 13
17
[Bug 10322] New: Slow Performance over Network rsync
https://bugzilla.samba.org/show_bug.cgi?id=10322 Summary: Slow Performance over Network rsync Product: rsync Version: 3.1.0 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P5 Component: core AssignedTo: wayned at samba.org ReportedBy: Joerg.Grube at Gmx.De
2016 Sep 09
0
[PATCH 2/2] v2v: -i ova: Derive the name from the OVA filename.
...ault" + name_from_disk ova | Some name -> name in (* Search for memory. *) diff --git a/v2v/name_from_disk.ml b/v2v/name_from_disk.ml index 73caf34..878b7c6 100644 --- a/v2v/name_from_disk.ml +++ b/v2v/name_from_disk.ml @@ -26,6 +26,7 @@ let name_from_disk disk = let suffixes = [ ".img"; ".qcow2"; ".raw"; ".vmdk"; "-sda"; + ".ova"; ] in let rec loop = function | suff :: xs -> -- 2.9.3
2016 Dec 02
0
New laptop recomendation
Hi Tony, I've installed CentOS7 on a Latitude 7470 and can say for a fact that most of the suff just works, while some of it that doesn't (like HDMI, or KMS, nifty little feature I like to have) works with an Elrepo LT or ML kernels. Personally, I'd recommend the LT kernel. I also read in the RHEL 7.3 release notes that I2C support for Gen6 mobile CPUs was introduced. Thus as the t...
2003 Oct 06
2
ISDN Dialout
...ts fine. But when I dialout from asterisk, I get an immediate hangup, so my guess is that asterisk is not issuing ATS18=1 to the ttyI device. Here are my configs, any input would be greatly appriciated. extensions.conf exten => 4000,1,Dial,Modem/g3:0422xxxxxx|60|r modems.conf ; net jet suff context=default msn=0269xxxxxx&L* icomingmsn=0269xxxxxx&L* driver => i4l group=2 stripmsd=1 mode=immediate device => /dev/ttyI0 msn=0269xxxxxx group=3 device => /dev/ttyI1 mode => immediate type => autodetect
2005 May 11
1
[LLVMdev] What if there is no Legalized pass?
I cannot understand what does the paragraph mean. Could anyone please elaborate it? http://llvm.cs.uiuc.edu/ChrisLLVM/docs/CodeGenerator.html#selectiondag_legalize "Instead of using a Legalize pass, we could require that every target-specific selector supports and expands every operator and type even if they are not supported and may require many instructions to implement (in fact, this is
2016 Oct 17
0
[PATCH v5 0/3] drm/nouveau: set DMA mask before mapping scratch page
Hi Ard, the official nouveau tree is here: https://github.com/skeggsb/nouveau But ben usually takes care of everything if you post the patches on the ML. No idea what you discussed internally though, but alex also posts his suff here. On 16 Oct 2016 22:12, "Ard Biesheuvel" <ard.biesheuvel at linaro.org> wrote: On 7 October 2016 at 09:12, Alexandre Courbot <gnurou at gmail.com> wrote: > On Fri, Oct 7, 2016 at 12:49 AM, Ard Biesheuvel > <ard.biesheuvel at linaro.org> wrote: >> This v...
2003 Jun 03
2
subshares ?
hi all... i have what seems a simple question regarding subshares, for lack of a better term... say i have a share with specific user/group permissions and a directory inside the share that i would like to add different user/group permissions... this is an example of my smb.conf file to illustrate [driveA] path = /samba/driveA browseable = Yes writeable = Yes valid users = PDC+groupA force group
2016 Nov 22
8
New laptop recomendation
Hi, I'm recently retired from my university job. I am looking for a laptop to run CentOS 6/7. My university was a traditional Dell site so I've used Latitude laptops for years, currently E6500/E6510. Anybody got any experience of running CentOS on the newer Dell Latitudes E5000 or E7000. These are not certified according to Redhats' Hardware Guide. Alternatively Precision