search for: frombyte

Displaying 3 results from an estimated 3 matches for "frombyte".

Did you mean: frombytes
2001 Oct 31
0
FW: HP3000 problem
...ided by mpe. DEPENDING on what MPE filetype the original file is, this emulator is going to add crlf line termination to the file, etc... So Unless you are working strictly on bytestream type files, your results are going to be interesting. There are a couple of MPE specific commands (tobyte and frombyte) that will take MPE typed files and convert them to bytestream and visa versa; you may want to do this to your files before operating on them from samba... Just a thought. You may also want to discuss this with your HP MPE support folks - they can give you a better feel for exactly what is happeni...
2023 Jul 06
0
njs-0.8.0
...re provided with retval argument. This change breaks compatibility with C extension for njs requiring to modify the code. *) Change: non-compliant deprecated String methods were removed. The following methods were removed: String.bytesFrom(), String.prototype.fromBytes(), String.prototype.fromUTF8(), String.prototype.toBytes(), String.prototype.toUTF8(), String.prototype.toString(encoding). *) Change: removed support for building with GNU readline. *) Feature: added Array.from(), Array.prototype.toSorted(), Array.prototype....
2020 Mar 25
3
[PATCH libnbd v4] Add Go language bindings (golang) (RHBZ#1814538).
Now runs a complete set of tests, notably including the AIO test. File descriptors are passed in and out as plain ints (instead of *os.File) for a couple of reasons: (1) We have to pass the plain int to syscall.Select. (2) Turning an fd into an os.File causes golang to set the blocking flag which is deeply unhelpful. Rich.