search for: maxlinelength

Displaying 2 results from an estimated 2 matches for "maxlinelength".

2012 Jun 02
1
[LLVMdev] update simple style checker... handle globs and recursion now
...lines. More features to come. Usage: style_check.py arg1 arg2 ... argn [options] Options: -h, --help show this help message and exit --no-check-for-tabs don't check for tabs --no-check-line-length don't check line length --max-line-length=MAXLINELENGTH specify maximum line length [default 80] --no-check-whitespace-at-eol don't check for whitespace at the end of a line --print-filenames-only only print the filename(s) where errors were found --recursive...
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...th: $path"); - my $datastore = $1; - my $vmdk = $2; - - my $url = _get_vol_url($self->{_v2v_server}, $vmdk, $datastore); + my $base = URI->new($uri->scheme.'://'.$uri->host); + my $conn = new Net::HTTPS(Host => $uri->host, + MaxLineLength => 0) + or die(user_message(__x("Failed to connect to {host}: {error}", + host => $uri->host, + error => $@))); - # Replace / with _ so the vmdk name can be used as a volume name - my $volname = $vmdk...