search for: 3ac

Displaying 4 results from an estimated 4 matches for "3ac".

Did you mean: 3a
2020 Sep 01
3
Re: [nbdkit PATCH 2/2] ocaml: Implement .list_exports and friends
...id figure it out after all, although I'm still not sure this is the best interface. Applying this on top of the original patch lets me use 'string option' instead of 'string' as the second member of the export record. https://caml.inria.fr/pub/docs/manual-ocaml/intfc.html#s%3Ac-ocaml-datatype-repr didn't directly answer my question, but my understanding is that since 'string option' is the same as: type 'a t = a' option = | None (* Is_block is false, value is Val_int(0) *) | Some of 'a (* Is_block is true, value is block with tag...
2020 Sep 01
0
Re: [nbdkit PATCH 2/2] ocaml: Implement .list_exports and friends
...t out after all, although I'm still not sure > this is the best interface. Applying this on top of the original > patch lets me use 'string option' instead of 'string' as the second > member of the export record. https://caml.inria.fr/pub/docs/manual-ocaml/intfc.html#s%3Ac-ocaml-datatype-repr > didn't directly answer my question, but my understanding is that > since 'string option' is the same as: > > type 'a t = a' option = > | None (* Is_block is false, value is Val_int(0) *) > | Some of 'a (* Is_block is tru...
2002 Mar 06
1
Help - Samba 2.2.3a + Solaris 8 7/01 - 64 bit binaries
...d/ipc.c:(292) api_fd_reply: INVALID PIPE HANDLE: 3a9 [2002/03/05 14:15:31, 1] smbd/ipc.c:(292) api_fd_reply: INVALID PIPE HANDLE: 3aa [2002/03/05 14:15:31, 1] smbd/ipc.c:(292) api_fd_reply: INVALID PIPE HANDLE: 3ab [2002/03/05 14:15:34, 1] smbd/ipc.c:(292) api_fd_reply: INVALID PIPE HANDLE: 3ac [2002/03/05 14:15:34, 1] smbd/ipc.c:(292) api_fd_reply: INVALID PIPE HANDLE: 3ad [2002/03/05 14:15:34, 1] smbd/ipc.c:(292) api_fd_reply: INVALID PIPE HANDLE: 3ae [2002/03/05 14:15:34, 1] smbd/ipc.c:(292) api_fd_reply: INVALID PIPE HANDLE: 3af [2002/03/05 14:15:34, 1] smbd/ipc.c:(292) api_fd...
2020 Sep 01
4
[nbdkit PATCH 0/2] More language bindings for .list_exports
This picks up python and ocaml. Some of our languages are lacking a number of bindings (for example, lua and perl lack .extents, so I didn't have anything to copy from), and I felt less comfortable with golang and rust. But for python and ocaml, I was able to test a working implementation. Eric Blake (2): python: Implement .list_exports and friends ocaml: Implement .list_exports and