search for: tmpxxxxxx

Displaying 5 results from an estimated 5 matches for "tmpxxxxxx".

2012 Oct 14
1
[PATCH] NEW API: mktemp
...; + style = RString "path", [Pathname "tmpl"], [OBool "dir"; OString "suffix"]; + proc_nr = Some 373; + tests = [ + InitScratchFS, Always, TestRun ( + [["mkdir"; "/mktemp"]; + ["mktemp"; "/mktemp/tmpXXXXXX"; "true"; "NOARG"]; + ["mktemp"; "/mktemp/tmpXXXXXX"; "false"; "suff"]]) + ]; + shortdesc = "create a temporary directory or file"; + longdesc = "\ +This command creates a temporary directory/file. The...
2009 Aug 11
1
[PATCH libguestfs] generator.ml: constify do_mkdtemp
...mkdtemp", (RString "dir", [String "template"]), 117, [], + ("mkdtemp", (RString "dir", [Pathname "template"]), 117, [], [InitBasicFS, Always, TestRun ( [["mkdir"; "/tmp"]; ["mkdtemp"; "/tmp/tmpXXXXXX"]])],
2004 Apr 19
3
New unique name
In some languages there is a function gensym() which returns a new unique name (in the current environment). This is quite helpful when one has to do temporary assignments. I could not find such a function in R. Is there one? -- Erich Neuwirth, Computer Supported Didactics Working Group Visit our SunSITE at http://sunsite.univie.ac.at Phone: +43-1-4277-38624 Fax: +43-1-4277-9386
2009 Aug 12
23
[PATCH 0/23] factor and const-correctness
This started as a simple warning-elimination change. I'll get back to that series shortly ;-) It turned into a factorization and constification exercise during which I got a taste of ocaml. Thanks to Rich Jones for help with a few snippets in generator.ml. The overall result is that many previously-manually-maintained bits from daemon/*.c functions are now hoisted into the automatically-
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.