search for: parseabl

Displaying 20 results from an estimated 139 matches for "parseabl".

Did you mean: parseable
2008 May 02
2
sip show peers
When doing a "sip show peers" I might see something like: Name/username Host Dyn Nat ACL Port Status devcentos5x64_to_mmfirepa 192.168.1.177 5060 Unmonitored devcentos5x64_to_bt610tMM 192.168.1.159 5060 Unmonitored devcentos5x64_to_am2mm/de 192.168.1.178 5060
2009 Mar 23
2
dput(as.list(function...)...) bug
...mples below, but is a list rather than a pairlist > dput( ff , control=c("warnIncomplete")) list(x = ) This string is not parsable, but dput does not give a warning as specified. > dput( ff , control=c("all","warnIncomplete")) list(x = quote()) This string is parseable, but quote() is not evaluable, and again dput does not give a warning as specified. In fact, I don't know how to write out ff$x. It appears to be the zero-length name: is.name(ff$x) => TRUE as.character(ff$x) => "" but there is no obvious way to create such an objec...
2015 Jun 18
3
Re: [PATCH] New API: btrfs_device_stats
...for this API) still need to do > some kind of parsing; given that you are basically copying bits from > the btrfs output, they might change breaking users. > > Speaking of this: you said that you have a colleague working on > btrfs-progs? What about suggesting to create some machine-parseable > output (csv, xml, yaml, json, whatever) so extracting the results of > btrfs tools is a lot more easy? > Yes, I forward your suggestion and consult him, the result is not surprised:( Here is what I learned from him: For the btrfs-progs cmds who output strings, the output are plain,...
2020 Sep 18
3
GC-parseable element atomic memcpy/memmove
TLDR: a proposal to add GC-parseable lowering to element atomic memcpy/memmove instrinsics controlled by a new "requires-statepoint” call attribute. Currently llvm.{memcpy|memmove}.element.unordered.atomic calls are considered as GC leaf functions (like most other intrinsics). As a result GC cannot occur while copy operation is...
2017 Jun 02
2
[RFC][ThinLTO] llvm-dis ThinLTO summary dump format
...ry > 2) where to add the dumper > I'm not too concerned about 2 (I wouldn't add it to llvm-dis, but rather > as a subcommand to llvm-lto2, but I don't have a strong opinion about that). > > So that leaves the text based summary format. We need a format that is > easily parseable so that we can test components that manipulate summaries > in isolation. That is what the YAML format is. Why add a second format that > is not parseable? > So in this case it is purely for visual inspection - I suggested that Charles add this as LLVM assembly comments, to make it clear...
2009 Feb 25
2
A Modest Definition List Proposal (David E. Wheeler)
...: colons on the left. 9 | Other | Another element | another element : : : with 2 lines, with : : : colons on the left. 5 | Illust. | An illustration | new line, would this do? : : and I think you : Is it parseable? : : know what I mean. The colon at each empty cell looks like vertical ellipsis, that makes it pretty legible Adding a 'wrappable' cell definition would go a long way to make it perfect.
2020 Sep 30
2
GC-parseable element atomic memcpy/memmove
...is is not true for all GCs and thus we don't want to rely on it. Do you think it makes sense to control this aspect of lowering (derived pointers vs base+offset in memcpy args) using GCStrategy? Artur Philip On 9/18/20 4:51 PM, Artur Pilipenko via llvm-dev wrote: TLDR: a proposal to add GC-parseable lowering to element atomic memcpy/memmove instrinsics controlled by a new "requires-statepoint” call attribute. Currently llvm.{memcpy|memmove}.element.unordered.atomic calls are considered as GC leaf functions (like most other intrinsics). As a result GC cannot occur while copy operation is...
2014 Mar 21
2
[PATCH] listfs: If LDM not available, don't inhibit partition detection (RHBZ#1079182).
If a disk has type 0x42 partition (which would indicate LDM), but LDM is not available then try parsing the partition anyway. It might be parseable as plain old NTFS. --- src/listfs.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/listfs.c b/src/listfs.c index bbdb0a2..ffb0adc 100644 --- a/src/listfs.c +++ b/src/listfs.c @@ -47,8 +47,11 @@ guestfs__list_filesystems (guestfs_h *g) { size_t i; DECLARE_S...
2006 May 02
2
Autotest doesn''t work on WinXP?
...ruby/bin/ruby -Ilib:test -e ''["test/unit/user_test.rb", "test/unit/role_test.rb"].each { |f| load f }'' | unit_diff -u ''c:'' is not recognized as an internal or external command, operable program or batch file. # Test::Unit exited without a parseable failure or error message. # You probably have a syntax error in your code. # I''ll retry in 10 seconds Using rake all of the tests pass, but for some reason Autotest can''t get going. Ideas? -Greg Greg Edwards CTO, Eyetools Inc. gedwards1@eyetools.com (916) 792...
2016 Sep 21
1
[PATCH] v2v: Support <listen type='socket'> and <listen type='none'> (RHBZ#1378022).
...t 2.0.0, these two new <listen/> types have been supported: https://libvirt.org/formatdomain.html#elementsGraphics This change just copies that configuration over from the source to the destination if the destination is also libvirt. Since we previously used 'LNone' to mean "no parseable <listen/> element" I also had to change previous uses of 'LNone' to 'LNoListen', so we can use 'LNone' to mean "<listen type='none'>". Thanks: Ming Xie. --- v2v/input_disk.ml | 2 +- v2v/input_libvirtxml.ml | 17 ++++++++++++-----...
2017 Jun 02
2
[RFC][ThinLTO] llvm-dis ThinLTO summary dump format
On Fri, Jun 2, 2017 at 12:18 PM, Peter Collingbourne via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Why do we need a custom dumping format for the summary? Since we already > need the YAML format anyway, wouldn't it be better to extend that to cover > the entire summary? > IMO it is useful/convenient to be able to see the summary in the llvm-dis output. Teresa >
2015 Jun 18
2
Re: [PATCH] New API: btrfs_device_stats
Hi, Pino 在 2015年06月18日 16:41, Pino Toscano 写道: > Hi, > > On Thursday 18 June 2015 11:01:37 Cao jin wrote: >>> Speaking of this: you said that you have a colleague working on >>> btrfs-progs? What about suggesting to create some machine-parseable >>> output (csv, xml, yaml, json, whatever) so extracting the results of >>> btrfs tools is a lot more easy? >>> >> >> Yes, I forward your suggestion and consult him, the result is not >> surprised:( Here is what I learned from him: >> For the...
2011 Aug 25
0
what's the impact if register sessions for the guest user
Hello all, I set up a samba server(3.4.13) that guest has access to it. When I run command ?net status shares parseable? on the server, it shows results like this: test\17358\\\pc-vincent\\Thu Aug 25 15:00:49 2011 And there?s no ip address for the client. I googled the reason and hacked the samba source code, I found this comments in function session_claim() of file source3/smbd/session.c: /* don't register...
2002 Feb 07
1
List of rsync output / error messages
...mal conditions. Eventually I'd like to use that data as part of building a Perl/Tk interface. Of course to parse the output successfully, I need to know all the possibilities as surprises can throw things out of whack. And this is just an idea, but ways to make rsync's output more easily parseable, and more verbose in terms to reporting information that would be useful for say making a progress bar would be nice to discuss. Thanks. -- Joseph Annino Consulting - Perl, PHP, MySQL, Oracle, etc. jannino@jannino.com - http://www.jannino.com
2008 Feb 11
1
DO NOT REPLY [Bug 5256] New: make -i format more consistent [*deleting]
...Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: 14709c93@mailinator.com QAContact: rsync-qa@samba.org I've switched to using -i instead of -v as a default flag. Because: it says exactly why something is being updated, is mostly parseable[1], and I don't have to guess if '^deleting <blah>' was a newly created filename with a space in it or was a deleted file...because with -i, every line has the itemization prefix. [1] - mostly parseable except for the following inconsistency... >f.st...... db/locate.database...
2004 Aug 06
2
status2.xsl info...
Quick thought, if the fields are separated by "," & a title/artist/.. has a comma in it then it causes a few problems with parsing. Likewise if there are multiple streams it might be nice to have each stream in it's own line so it is easier to grab the info. Also, status.xsl displays streams even after they have been stopped. dmz --- >8 ---- List archives:
2018 Aug 17
1
Re: [PATCH v3 1/4] mltools: Rename Yajl module as JSON_parser and move to common/mltools.
...an unsigned 64-bit number as unsigned AND where that value is larger than INT64_MAX (jansson uses strtoll, rather than strtoull). But since disk sizes cannot exceed off_t, which is a signed 64-bit number, it does not matter whether qemu outputs those as signed or unsigned - they will still be parseable as a signed number. Thus, you are correct that disk sizes in qemu output won't trigger the Jansson limitation. -- Eric Blake, Principal Software Engineer Red Hat, Inc. +1-919-301-3266 Virtualization: qemu.org | libvirt.org
2015 Jun 11
2
How Can I create a group policies with Samba?
...1. At least four years ago, LikeWise.com had some very limited GPO support for Linux clients. Other options to research would be "Desired State Configuration" and or otherwise move to a devops flavor of configuration management. MS AD GPOs are in XML and should to some extent be parseable by anything. On Thu, Jun 11, 2015 at 9:42 AM Marc Muehlfeld <mmuehlfeld at samba.org> wrote: > Hello Jason > > Am 06.06.2015 um 19:24 schrieb Jason Long: > > Hello Experts.Can I implement any group policy via Samba in Linux? > > For example, In Windows OS you can wri...
2003 Jun 12
3
defaults in R: packages, .Rhistory
With the current version (rw1070), every time I start R it loads a whole bunch of packages, many of which I do not need in a typical session: > search() [1] ".GlobalEnv" "package:methods" "package:ctest" "package:mva" [5] "package:modreg" "package:nls" "package:ts" "Autoloads" [9]
2017 Mar 15
2
Relaiable ssh tunnel via systemd
Am 14.03.2017 um 21:43 schrieb Nico Kadel-Garcia: > On Tue, Mar 14, 2017 at 4:20 PM, Thomas G?ttler > <guettliml at thomas-guettler.de> wrote: >> >> >> >> Am 14.03.2017 um 15:10 schrieb Nico Kadel-Garcia: >>> Look into the "autossh" program, which is very good to manage and >>> maintain such tunnels. >>> >> >> Hi