search for: isavailable

Displaying 11 results from an estimated 11 matches for "isavailable".

Did you mean: ifavailable
2008 Jan 14
0
First Alpha of oggToolspp
...two lines: repository >> rawData; oggDecoder << rawData; will grap a bunch of raw data from a repository (e.g. a file) and place it into rawData. This rawData object is then placed into the oggDecoder. To find out if there is output data available, all media units provide the method isAvailable(): while (oggDecoder.isAvailable()) { oggDecoder >> oggPage; oggStreamDecoder << oggPage; } This can be done up until a frame or audio sample is available, but you don't have to. You can also place the data it into an oggEncoder and then into a new repository e.g. to split a...
2017 Jul 18
4
PGO, zlib and 'default.profraw'
Can we improve the error message here? We should be able to check zlib::isAvailable and give an error like "profile uses zlib compression but the profile reader was built without zlib support" or so in this case. Xinliang David Li via llvm-dev <llvm-dev at lists.llvm.org> writes: > The __llvm_prf_names section is compressed but your llvm-profdata tool is > p...
2015 Nov 05
4
[PATCH 1/2] actions: turn available & feature_available as non-daemon
...uld be to speculatively +execute a command to find out if the daemon implemented it. +See also C<guestfs_version>. + +=back + +See also C<guestfs_filesystem_available>." }; + + { defaults with + name = "feature_available"; added = (1, 21, 26); + style = RBool "isavailable", [StringList "groups"], []; + tests = [ + InitNone, Always, TestResultTrue [["feature_available"; ""]], [] + ]; + shortdesc = "test availability of some parts of the API"; + longdesc = "\ +This is the same as C<guestfs_available...
2017 Jul 18
2
PGO, zlib and 'default.profraw'
...alf Of > Justin Bogner via llvm-dev > Sent: 18 July 2017 19:37 > To: Xinliang David Li via llvm-dev <llvm-dev at lists.llvm.org> > Subject: Re: [llvm-dev] PGO, zlib and 'default.profraw' > > Can we improve the error message here? We should be able to check > zlib::isAvailable and give an error like "profile uses zlib compression but > the profile reader was built without zlib support" or so in this case. > > Xinliang David Li via llvm-dev <llvm-dev at lists.llvm.org> writes: > > The __llvm_prf_names section is compressed but your llvm-prof...
2017 Jul 25
2
PGO, zlib and 'default.profraw'
...stin Bogner via llvm-dev Sent: 18 July 2017 19:37 To: Xinliang David Li via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org> > Subject: Re: [llvm-dev] PGO, zlib and 'default.profraw' Can we improve the error message here? We should be able to check zlib::isAvailable and give an error like "profile uses zlib compression but the profile reader was built without zlib support" or so in this case. Xinliang David Li via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org> > writes: > The __llvm_prf_names section is compr...
2015 Nov 05
0
[PATCH 2/2] actions: refactor available & feature_available
...l; - shortdesc = "test availability of some parts of the API"; - longdesc = "\ -This is the internal call which implements C<guestfs_available>." }; - - { defaults with name = "internal_feature_available"; added = (1, 31, 25); - style = RBool "isavailable", [StringList "groups"], []; - proc_nr = Some 459; + style = RInt "result", [String "group"], []; + proc_nr = Some 458; visibility = VInternal; shortdesc = "test availability of some parts of the API"; longdesc = "\ diff --gi...
2017 Jul 18
3
PGO, zlib and 'default.profraw'
We are trying to get PGO working for our embedded out-of-tree target, but the utility 'llvm-profdata' does not like the data we are giving it. Because this is not a hosted environment, we have to off-chip the profiling data ourselves, and although the data looks okay, 'llvm-profdata' reports the following error: llvm-profdata show -all-functions -counts -detailed-summary -text
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...ot;)], []; tests = [ InitNone, Always, TestRun [["available"; ""]], [] ]; @@ -1711,7 +1711,7 @@ See also C<guestfs_filesystem_available>." }; { defaults with name = "feature_available"; added = (1, 21, 26); - style = RBool "isavailable", [StringList "groups"], []; + style = RBool "isavailable", [StringList (PlainString, "groups")], []; tests = [ InitNone, Always, TestResultTrue [["feature_available"; ""]], [] ]; @@ -1738,7 +1738,7 @@ not normally be used b...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of local disk. Rich.