search for: notable

Displaying 20 results from an estimated 2018 matches for "notable".

2011 Feb 25
0
Named capture in regexp
Dear R core developers, One feature from Python that I have been wanting in R is the ability to capture groups in regular expressions using names. Consider the following example in R. > notables <- c(" Ben Franklin and Jefferson Davis","\tMillard Fillmore") > name.rex <- "(?<first>[A-Z][a-z]+) (?<last>[A-Z][a-z]+)" > (parsed <- regexpr(name.rex,notables,perl=TRUE)) [1] 3 2 attr(,"match.length") [1] 12 16 attr(,"captu...
2010 Apr 06
9
rebased openSUSE Xen dom0 Patches
I''ve uploaded updated 2.6.31 and 2.6.32 rebased openSUSE Xen dom0 patches and ebuilds to http://code.google.com/p/gentoo-xen-kernel/downloads/list Notable change is that both include the online resize feature recently posted to xen-devel. Andy _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2017 Jan 04
4
seq.int/seq.default
On 1/4/17 1:26 AM, Martin Maechler wrote: >>>>>> Mick Jordan <mick.jordan at oracle.com> >>>>>> on Tue, 3 Jan 2017 07:57:15 -0800 writes: > > This is a message for someone familiar with the implementation. > > Superficially the R code for seq.default and the C code for seq.int > > appear to be semantically very
2019 Dec 12
5
Dovecot 2.3 repo for CentOS 8.
...eio > (sorry for duplicate, user error in earlier one...) > > Yes. There are plans for the repo, unfortunately there are still technical problems due to how CentOS8 repositories are organized. But soon. > > Aki I tried rebuilding the RPM for CentOS 8 but I see it's missing some notable required packages like tcp wrappers and quota-devel. Managed to rebuild by switching these off in the spec file (--without-libwrap), but that's probably not a good idea. :) Reio
2014 Oct 25
4
[LLVMdev] Indirect call site profiling
Hi All, We've been working on enhancing LLVM's instrumentation based profiling by adding indirect call target profiling support. Our goal is to add instrumentation around indirect call sites, so that we may track the frequently taken target addresses and their call frequencies. The acquired data has uses in optimization of indirect function call heavy applications. Our initial findings
2017 Jan 03
2
seq.int/seq.default
This is a message for someone familiar with the implementation. Superficially the R code for seq.default and the C code for seq.int appear to be semantically very similar. My question is whether, in fact, it is intended that behave identically for all inputs. I have found two cases so far where they differ, first that seq.int will coerce a character string to a real (via Rf_asReal) whereas
2017 Jan 23
5
Upcoming removal of std::auto_ptr (in C++1z)
The upcoming C++1z (probably C++17) standard will not contain several things - most notably auto_ptr. Soon, libc++ will not be providing auto_ptr by default when building in C++1z mode. You'll be able to get it back with a "-D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR" on your command line, or "#define _LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR" before including any libc++ header
2018 Jul 21
3
Library lib.loc Option Ignored for Dependencies
>>>>> Benjamin Tyner >>>>> on Fri, 20 Jul 2018 19:42:09 -0400 writes: > Here's a trick/workaround; if lib.loc is the path to your > library, then prior to calling library(), >> environment(.libPaths)$.lib.loc <- lib.loc Well, that is quite a "trick" -- and potentially a pretty dangerous one, not intended when making
2024 Jan 29
1
strcapture performance when perl = TRUE
...} else { out <- matrix(NA_character_, length(m), ntokens) } utils:::conformToProto(out,proto) } else { strcapture(pattern,x,proto,perl,useBytes) } } Now comparing with strcapture we can expand the named capture example from the grep documentation: notables <- c( " Ben Franklin and Jefferson Davis", "\tMillard Fillmore", "Bob", NA_character_ ) regex <- "(?<first>[[:upper:]][[:lower:]]+) (?<last>[[:upper:]][[:lower:]]+)" proto = data.frame("", "") (strcapt...
2014 Oct 26
2
[LLVMdev] Indirect call site profiling
> On 10/24/14, 8:26 PM, betulb at codeaurora.org wrote: >> Hi All, >> >> We've been working on enhancing LLVM's instrumentation based profiling >> by >> adding indirect call target profiling support. Our goal is to add >> instrumentation around indirect call sites, so that we may track the >> frequently taken target addresses and their call
2006 Feb 02
4
rake test_units slow on startup
Hi Running ''rake test_units'' using the simple example from the intro video is very slow on my computer. While the tests claim to execute in 0.17 secs, the startup time ad 5.3 seconds to the overall job. On the video, these tasks ran in about 1 second. (Maybe David was doing the tests on a dual proc mac or did some video editing, who knows.) But, I don''t think it should
2006 Dec 11
1
Index help on Polymorphic Associations
...'', :user_method => ''current_user'' acts_as_ferret :fields => {:name => {:store => :yes}, :description => {:store => :yes}, :project_notes => {:store => :yes}} has_many :notes, :as => :notable ..... def project_notes @index = Array.new for note in self.notes @index << note.details end @index.join(" ") end .......... class Note < ActiveRecord::Base acts_as_authorizable acts_as_audited :except => [:created_by, :updated_by ], :user_...
2018 Nov 02
3
Plan for 1.40
I feel it's been many months since we had a stable release and we've added some significant new features in that time, notably support for v2v to OpenStack. If you have anything that you'd like to get in before 1.40 then let me know by following up. On my list are just two items: * virt-v2v documentation refactoring Preliminary patch posted here:
2015 Mar 23
7
quota setup assistance (postfix+dovecot+mysql)
Hello list, I have been struggling with establishing a working installation of dovecot with mySQL quota support. I have not been able to find a guide or tutorial that works for the current revisions of software I have at my disposal. Most notably, the error I see in the mail log is as follows : Mar 23 00:55:31 host dovecot: lmtp(328): Debug: Module loaded:
2017 Aug 30
2
Some hint on migration from a set of NT4 domains to an AD domain...
I've lurked (and posted) on that list by some month, getting many vaulable informations, but still i've many doubts. Most of my doubt i think came from the fact that 'AD' (generally) a is a very complex beast, and if samba in NT4 mode fit very well in a UNIX environment (and mind ;), samba in AD mode forced me to think in some ''microsoft way'. And i'm not used to.
2006 May 18
4
Request Routing Plugin ( :requirements => { :subdomain => ''thing'' } finally works)
Hi All, Just a quick note to say that I''ve released an intial version of the request routing plugin which essentially allows you to use various request object properties as requirements in routes. Most notably you can do: map.connect "thing", :controller => ''main'', :requirements => { :subdomain => ''whatever'' } ..just like the wiki
2014 Aug 12
10
[LLVMdev] Plans for the Apple supported Darwin buildbot cluster
...uilders> To be clear, those are not these buildbots: http://lab.llvm.org:8011/builders <http://lab.llvm.org:8011/builders> We are not talking about changing the main buildbots. We are working on a redesign of the Darwin build cluster that will include some hardware upgrades. The most notable change will be a switch from Buildbot to Jenkins. We will be replacing the current phased system with a Jenkins analog and reproducing the current builds. The Jenkins will execute scripts for each “project” that we will be checked in to zorg. -------------- next part -------------- An HTML attach...
2012 Sep 03
3
Calcular la media de filas en un data.frame
...como calcular el promedio de las filas de un data.frame, ya que R por defecto aplica las funciones en sentido vertical me da la impresion ... podrian ayudarme ?? muchas gracias, Saludos, Eric. -- Nota: las tildes se han omitido para evitar conflictos con algunos lectores de correo. Frases notables: * SATYÂT NÂSTI PARO DHARMAH (No hay religion mas elevada que la verdad) * La oscuridad no se combate, se ilumina ... * Un economista es un experto que sabrá mañana por qué las cosas que predijo ayer no han sucedido hoy (Laurence Peter). [[alternative HTML version deleted]]
2004 Dec 09
3
US 2004 Elections map
even for people who didn't like the outcome of the US elections this year, it must have been a joy to see all the nice (and not so nice) graphs that were shown. As an exercise, I recreated the map shown on the NY-Times website [ http://www.nytimes.com/packages/khtml/2004/11/03/politics/ 20041103_px_ELECT_GRAPHIC.html ] If you're interested,
2017 Nov 10
1
[R-pkgs] Release of ess 0.0.1
>>>>> Jorge Cimentada <cimentadaj at gmail.com> >>>>> on Fri, 10 Nov 2017 14:31:43 +0100 writes: > Thanks to all. Will consider this change in future releases. > ----------------------------------- > Jorge Cimentada > *https://cimentadaj.github.io/ <https://cimentadaj.github.io/>* > On Fri, Nov 10, 2017 at 12:41