search for: event_

Displaying 6 results from an estimated 6 matches for "event_".

Did you mean: event
2016 Dec 08
4
[PATCH] generator: Share Common_utils code.
...match argt with | OBool n -> pr "int %s,\n" n | OInt n -> pr "int %s,\n" n @@ -508,7 +510,7 @@ extern GUESTFS_DLL_PUBLIC guestfs_abort_cb guestfs_get_out_of_memory_handler (gu List.iter ( fun (name, bitmask) -> pr "#define GUESTFS_EVENT_%-16s 0x%04x\n" - (String.uppercase name) bitmask + (String.uppercase_ascii name) bitmask ) events; pr "#define GUESTFS_EVENT_%-16s 0x%04x\n" "ALL" all_events_bitmask; pr "\n"; @@ -601,7 +603,7 @@ extern GUESTFS_DLL_PUBLIC void *guestfs_next_...
2009 Jul 09
0
Sampling a dataframe based on the length of a subset of observations within
...variables associated with the event. A simplified representation follows: my.df<-data.frame("id"=c("A","A","A","B","B","C","C","C", "C", "C"), event=c(0,0,1,0,1,0,0,1,1, 0)) _id_ _event_ A 0 A 0 A 1 B 0 B 1 C 0 C 0 C 1 C 1 C 0 I need to sample my.df to select the same number of observations with event = 0 as event = 1 for each unique id. I can reshape or tapply my.df to group id and determine what sample size I need. my.df.cast= library(...
2008 Jun 10
0
[ANNOUNCE] xorg-server 1.4.1
...tructure Input: Don't reinit devices OS: IO: Zero out client buffers XKB: XkbCopyKeymap: Don't leak all the sections Xephyr: One-time keyboard leak fix XKB: Actually explain keymap failures Prevent the -wm command line option from causing a SEGV Xi: event_{x,y} should refer to the extended device (bug #16289) Bump to 1.4.1 Donnie Berkholz (5): dmx: fix build by adding {New,Delete}InputDeviceRequest. dmx: link in XSERVER_LIBS. xephyr: fix linking by adding pixman and using XSERVER_LIBS. xprint: fix build by adding {New,D...
2015 Feb 10
3
[PATCH 1/3] generator: add a simple HTML escaping function
--- generator/utils.ml | 8 +++++++- generator/utils.mli | 3 +++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/generator/utils.ml b/generator/utils.ml index b24ba8c..3a62084 100644 --- a/generator/utils.ml +++ b/generator/utils.ml @@ -360,4 +360,10 @@ let args_of_optargs optargs = | OInt64 n -> Int64 n | OString n -> String n | OStringList n ->
2017 Mar 31
6
[PATCH 0/3] Fix some quoting issues.
Fix some quoting issues by introducing Unicode quotes. Note this intentionally only affects end-user messages and documentation. Rich.
2009 Jul 09
2
How to Populate List
...variables associated with the event.  A simplified representation follows: my.df<-data.frame("id"=c("A","A","A","B","B","C","C","C", "C", "C"), event=c(0,0,1,0,1,0,0,1,1, 0)) _id_  _event_ A     0 A     0 A     1 B     0 B     1 C     0 C     0 C     1 C     1 C     0 I need to sample my.df to select the same number of observations with event = 0 as event = 1 for each unique id. I can reshape or tapply my.df to group id and determine what sample size I need.  my.df.cast= library(...