Displaying 7 results from an estimated 7 matches for "d_l".
Did you mean:
_l
1999 Dec 10
1
orthogonal and nested model
I'm working with a orthogonal and nested model (mixed).
I have four factors, A,B,C,D;
A and B are fixed and orthogonal
C is nested in AB interaction
and finally, D is nested in C.
I would like to model the following
Y_ijklm=Mu+A_i+B_j+AB_ij+C_k(ij)+D_l(k(ij))+Error_m(...)
I used the next command
>summary(aov(abund~A*B + C % in % A:B + D % in % C % in % A:B ,datos))
Is it the correct formula syntax?
Thaks for all.
Marcelo.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://ww...
2005 Mar 02
1
Samba 3.0.11 Compile Error
Hello.
I'm trying to run Samba on HP-UX (IA64), but I can't compile Samba source.
I have this following packages:
Samba 3.0.11
libiconv 1.9.1
HP-UX 11.23 (IA64)
"configure" process is ok.
At "make" process, I encounters the parsing error.
I attached the compile error log.
Do you have information how to compile Samba on HP-UX (IA64)?
--
Osamu Takeuchi
2019 Jun 18
0
[libnbd RFC PATCH 9/8] wip: generator: Add ReadStatus enum type
...@@ exception Closed of string
List.iter (
fun (n, _) -> pr "val %s : int32\n" (String.lowercase_ascii n)
) constants;
+ (* how to represent enums? *)
pr "\n";
pr "\
@@ -4040,6 +4069,7 @@ let () =
List.iter (
fun (n, i) -> pr "let %s = %d_l\n" (String.lowercase_ascii n) i
) constants;
+ (* how to represent enums? *)
pr "\n";
pr "\
@@ -4092,7 +4122,7 @@ let print_ocaml_binding (name, { args; ret }) =
List.map (
function
| ArrayAndLen (UInt32 n, _) | BytesIn (n, _)
-...
2019 Jun 20
1
Re: [libnbd RFC PATCH 9/8] wip: generator: Add ReadStatus enum type
...> fun (n, _) -> pr "val %s : int32\n" (String.lowercase_ascii n)
> ) constants;
> + (* how to represent enums? *)
> pr "\n";
>
> pr "\
> @@ -4040,6 +4069,7 @@ let () =
> List.iter (
> fun (n, i) -> pr "let %s = %d_l\n" (String.lowercase_ascii n) i
> ) constants;
> + (* how to represent enums? *)
Something like:
type name_of_the_enum =
| CaseA
| CaseB
You have to at least make sure the first letter is a capital (or
capitalize it) unfortunately.
> pr "\n";
>
> p...
2019 Aug 10
0
[PATCH libnbd 2/9] generator: Generalize OFlags.
...%s = struct\n" flag_prefix;
+ pr " type t =\n";
+ List.iter (
+ fun (flag, _) ->
+ pr " | %s\n" flag
+ ) flags;
+ pr "end\n";
+ pr "\n"
+ ) all_flags;
List.iter (
fun (n, i) -> pr "let %s = %d_l\n" (String.lowercase_ascii n) i
) constants;
@@ -4819,6 +4874,33 @@ external close : t -> unit = \"nbd_internal_ocaml_nbd_close\"
pr "\"nbd_internal_ocaml_nbd_%s\"\n" name
) handle_calls
+let print_ocaml_flag_val { flag_prefix; flags } =
+ pr &q...
2019 Jun 18
17
[libnbd PATCH 0/8] Add nbd_pread_callback
I've mentioned this topic before (in fact, the idea of adding
NBD_CMD_FLAG_DF was first mentioned at [1]), but finally finished
enough of an implementation to feel confident in posting it.
I'd still like to add something under examples/ that uses the new API
to implement strict checking of a server's structured replies read
implementation (ensure that a server never sends data after
2019 Aug 10
17
[PATCH libnbd 0/9] Add Enum and Flags types.
This largish series adds several new features to the generator.
Enum maps to enumerated types (like enum in C). The only current use
for this is replacing the nbd_set_tls (nbd, 0/1/2) parameter with
LIBNBD_TLS_DISABLE, LIBNBD_TLS_ALLOW, LIBNBD_TLS_REQUIRE (and natural
equivalents in other programming languages).
Flags maps to any uint32_t bitmask. It is basically a non-optional,
generalized