Displaying 4 results from an estimated 4 matches for "mottle".
Did you mean:
bottle
2003 Nov 23
0
Stangle - dropping re-used code chunks
...using Sweave. I want to provide the R
code separately so the course attendees don't have to re-type everthing
in the manual.
In this manual, I typically show a command, then re-use the chunk to
produce a plot. Something like this:
%% first, show how the plot is done...
<<ex.ts.acf.mottle,echo=TRUE,fig=FALSE>>=
par(mfrow=c(2,2))
mottle.acf <- acf(mottle.t[,1], lag.max=45)
mottle.pacf <- pacf(mottle.t[,1], lag.max=45)
mottle.acf <- acf(mottle.t[,1], lag.max=45, ci.type="ma")
mottle.pacf <- pacf(mottle.t[,1], lag.max=45, ci.type="ma")
@
%% then...
2009 Feb 06
1
DRM fills logs
...ia Corporation NV44 [Quadro NVS
285] (rev a1)
07:00.0 VGA compatible controller: nVidia Corporation NV44 [Quadro NVS
285] (rev a1)
selene:/var/log# uname -a
Linux selene 2.6.28.1 #1 SMP Wed Feb 4 06:37:57 PST 2009 x86_64 GNU/Linux
I'm playing around with nouveau. So far I can usually get my mottled
screen... But I'm having issues with drm filling logs with error messages:
Feb 6 06:20:56 selene kernel: [46184.757275] [drm] Initialized drm
1.1.0 20060810
Feb 6 06:21:04 selene kernel: [46193.375960] [drm] Detected an NV30
generation card (0x034a00b1)
Feb 6 06:21:04 selene kernel: [46...
2017 Aug 01
7
[PATCH 0/2] Add lightweight bindings for PCRE.
We'd like to use PCRE instead of the awful Str module. However I
don't necessarily want to pull in the extra dependency of ocaml-pcre,
and in any case ocaml-pcre is rather difficult to use.
This introduces very simplified and lightweight bindings for PCRE.
They work rather like Str in that there is some global state (actually
thread-local in this implementation) between the matching and
2017 Aug 01
6
[PATCH v2 0/3] common: Add a lightweight OCaml binding for PCRE.
v2:
- Change the OCaml code in the daemon to use PCRE instead of Str.
- Call pcre_compile2 so we can capture the error code on failure.
- Extend the test suite.
- Some other cleanups, but very minor.
Rich.