search for: ey1

Displaying 5 results from an estimated 5 matches for "ey1".

Did you mean: e1
2006 Nov 12
1
[PATCH] Annotate shapes, text and dbus support
...+static void +annoDrawCircle (CompScreen *s, double xc, double yc, double radius, + unsigned short *fillColor, unsigned short *strokeColor, + double strokeWidth) +{ + REGION reg; + cairo_t *cr; + + ANNO_SCREEN (s); + + cr = annoCairoContext (s); + + if (cr) + { + + double ex1, ey1, ex2, ey2; + cairo_set_source_rgba (cr, + (double) fillColor[0] / 0xffff, + (double) fillColor[1] / 0xffff, + (double) fillColor[2] / 0xffff, + (double) fillColor[3] / 0xffff); + cairo_arc (cr, xc, yc, radius, 0, 2*M_PI); + cairo_fill_preserve (cr); + cairo_set_l...
2001 Nov 14
0
OPEN ssh pkg
...R M'@6M5%FTFFAM"(3G at W1#K2I:\:K:KMQ:F^EK?='$5BQ#4ED[26FMC;:U.'HM MZUK*T!C<LAH6KCY:E/*+()U<B?1=-M+/%4E?F^G:EYOM5WZV at CG:]ILHK58. MLWBUT@@02S]F]<I>O_)DAJ_3]#*3S,S\NLCTUWFWFD?>VFMZRZ9)<[XUO @V M-2_82G>G-6Z>7L[".?QJZY%[K"6U<E;4 at EIH4UB8NX@1-9Y.EY1:HGY<3 V= M7ZZQ_M-&.U ';33XG!VU;&;:G9HZN^I$:SJ7")+%9,%NR0J&4IVMES;%3=53 MMK&V:I,<+X%7K':ZLQKJ-FLP&Y\7M$ZFS]/ZT%9KM$6ID![];5[?MU*[)QVW MYM[;GT[*OU=K at U_&[>=*P/O$8%=,?D;M+DBY"<A[2YG%ICMT7QV@<"2WXNX# MG=O,@>[S"P(V C8"P8DK=4N!S...
2019 Nov 09
0
improving the performance of install.packages
...2 packages which > provide > >>> a function which does this already (install.load and remotes), so > people > >>> can get this functionality if they need it. > >>> > >>> > >>> On Fri, Nov 8, 2019 at 11:56 AM Joshua Bradley <jgbradley1 at gmail.com> > wrote: > >>> > >>>> > >>>> > >>>> I assumed this list is used to discuss proposals like this to the R > >>>> codebase. If I'm on the wrong list, please let me know. > >>>> > >>&...
2019 Nov 08
3
improving the performance of install.packages
Hello, Currently if you install a package twice: install.packages("testit") install.packages("testit") R will build the package from source (depending on what OS you're using) twice by default. This becomes especially burdensome when people are using big packages (i.e. lots of depends) and someone has a script with: install.packages("tidyverse") ... ... later
2019 Nov 08
8
improving the performance of install.packages
I could do this...and I have before. This brings up a more fundamental question though. You're asking me to write code that changes the logic of the installation process (i.e. writing my own package installer). Instead of doing that, I would rather integrate that logic into R itself to improve the baseline installation process. This api proposal change would be additive and would not break