Displaying 4 results from an estimated 4 matches for "l165".
Did you mean:
2165
2015 Dec 01
0
Re: packaging virtio-win
...x86/") and from that it works
out what Windows OS + arch the drivers in that directory are intended
for. It's flexible enough that we can easily change it, but only if
we're told what the new convention will be.
https://github.com/libguestfs/libguestfs/blob/master/v2v/windows.ml#L132-L165
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-df lists disk usage of guests without needing to install any
software inside the virtual machine. Supports Linux and Windows.
http:/...
2015 Apr 08
2
pop3 retr responses too large lines - Fails with current python's poplib
Since December 2014, clients using the Python poplib library (getmail in
my case) started to limit the line length of RETR and other command
responses sent from the server to 2048 bytes:
See https://bugs.python.org/issue16041 (Included at least in
Python-2.7.9)
Dovecot doesn't have line split in the POP3 module, so Python fails to
retrieve messages with long lines.
RFC 1939 says:
"
2015 Apr 10
2
pop3 retr responses too large lines - Fails with current python's poplib
...Python
project.
You can see in this "traceforward" that Python's poplib will throw an
error_proto exception if RETR returns lines longer than 2048 bytes:
https://hg.python.org/cpython/file/0db36098b908/Lib/poplib.py#l227
https://hg.python.org/cpython/file/0db36098b908/Lib/poplib.py#l165
https://hg.python.org/cpython/file/0db36098b908/Lib/poplib.py#l142
https://hg.python.org/cpython/file/0db36098b908/Lib/poplib.py#l370
def _getline(self):
line = ""
renewline = re.compile(r'.*?\n')
match = renewline.match(self.buffer)...
2015 Nov 30
6
Re: packaging virtio-win
On 11/27/2015 12:16 PM, Roman Kagan wrote:
> On Thu, Nov 26, 2015 at 06:29:45PM -0600, Jeff Nelson wrote:
>> On Thu, Nov 26, 2015 at 08:12:41PM +0300, Roman Kagan wrote:
>>> Do I get it right that the way virtio-win is packaged for Fedora and
>>> RHEL is driven by the scripts at
>>>
>>> https://github.com/crobinso/virtio-win-pkg-scripts
>>>