search for: malcolm

Displaying 20 results from an estimated 217 matches for "malcolm".

2006 Feb 19
3
Cisco 7905 can't register
...ation of Asterisk and the settings on the phone (apart from the SIP proxy address) haven't changed since then. On the new Asterisk box my sip.conf contains this: [jeremy] type=friend regexten=801 allow=g729 host=dynamic secret=PASSWORD nat=yes qualify=yes canreinvite=no callerid="Jeremy Malcolm" <9213 0801> mailbox=1000 sip show peers shows this: jeremy (Unspecified) D N 255.255.255.255 0 UNKNOWN sip debug shows this: Sip read: REGISTER sip:tardis.malcolm.id.au SIP/2.0 Via: SIP/2.0/UDP 192.168.0.104:5060 From: sip:jeremy@tardis.malcolm.id.au;tag=1655991...
2009 Aug 16
5
Plot(x,y)
Hi , I am using the plot function for some data , and the plot is coming back pure black , with scales on the side . Regards Malcolm [[alternative HTML version deleted]]
2016 Feb 19
4
should `data` respect default.stringsAsFactors()?
...hereas setting the global option stringsAsFactors = FALSE DOES effect how Species is being read in by read.table especially since data is documented as calling read.table. In my opinion, one or the other should change (the behavior of data, or the documentation). <bleep> <bleep>, ~ Malcolm > -----Original Message----- > From: peter dalgaard [mailto:pdalgd at gmail.com] > Sent: Thursday, February 18, 2016 3:32 PM > To: Cook, Malcolm <MEC at stowers.org> > Cc: r-devel at stat.math.ethz.ch > Subject: Re: [Rd] should `data` respect default.stringsAsFactors...
2016 Nov 29
4
RFC: Constructing StringRefs at compile time
...at did you think about my other proposal of the complicated UDL > with macro? > > #define LIT(x) x_string_ref_literal > constexpr StringRef Strings[] = {LIT("a"), LIT("b"), LIT("c")}; Why bother with the UDL? #define LIT(x) StringRef((x), sizeof(x)-1) -- Malcolm Parsons
2016 Dec 12
0
RFC: Constructing StringRefs at compile time
...th it when it's an issue (which will be limited to clang, and even then not very often), or choose a different name. Thoughts? On Mon, Dec 12, 2016 at 11:53 AM Zachary Turner <zturner at google.com> wrote: > I can. I'll whip something up today > On Fri, Dec 9, 2016 at 1:18 AM Malcolm Parsons <malcolm.parsons at gmail.com> > wrote: > > On 2 December 2016 at 17:12, James Y Knight <jyknight at google.com> wrote: > > +1 from me for the StringLiteral proposal from a few messages back. > > Zachary, do you want to commit StringLiteral? > > -- &gt...
2013 Jan 15
14
[PATCH] VTD/Intremap: Disable Intremap on Chipset 5500/5520/X58 due to errata
...s are not disabling remapping. We can detect this in Xen and prevent turning on remapping in the first place. However, this will turn VT-d off on many systems by default. Users who still wish to use VT-d can use iommu=force if they are happy exposing the associated security risk. Signed-off-by: Malcolm Crossley <malcolm.crossley@citrix.com> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> diff -r 35a0556a7f76 -r ee475f0e6aeb xen/drivers/passthrough/vtd/quirks.c --- a/xen/drivers/passthrough/vtd/quirks.c +++ b/xen/drivers/passthrough/vtd/quirks.c @@ -244,6 +244,29 @@ void vtd_...
2016 Feb 19
2
should `data` respect default.stringsAsFactors()?
...ain, like, dd <- read.table(foo.txt,.....) dd$cook <- factor(dd$cook, levels=c("rare","medium","well-done")) etc. -pd > On 19 Feb 2016, at 01:39 , Joshua Ulrich <josh.m.ulrich at gmail.com> wrote: > > On Thu, Feb 18, 2016 at 6:03 PM, Cook, Malcolm <MEC at stowers.org> wrote: >> Hi Peter, >> >> Sorry if I was not clear. Perhaps an example will make my point: >> >>> data(iris) >>> class(iris$Species) >> [1] "factor" >>> write.table(iris,'data/myiris.tab') >&...
2016 Nov 25
5
RFC: Constructing StringRefs at compile time
...RIBUTE_ALWAYS_INLINE +#if __has_builtin(__builtin_strlen) + /*implicit*/ constexpr StringRef(const char *Str) + : Data(Str), Length(Str ? __builtin_strlen(Str) : 0) {} +#else /*implicit*/ StringRef(const char *Str) : Data(Str), Length(Str ? ::strlen(Str) : 0) {} +#endif -- Malcolm Parsons
2016 Feb 18
2
should `data` respect default.stringsAsFactors()?
...s it is documented to call read.table, which DOES respect. Oh, but: http://r.789695.n4.nabble.com/stringsAsFactors-FALSE-tp921891p921893.html Compelling. I have to agree. So, I change my mind. By my lights, `data` should then be documented to NOT respect default.stringsAsFactors. Else? ~Malcolm Cook
2016 Nov 29
2
RFC: Constructing StringRefs at compile time
...2016 at 19:30, Mehdi Amini <mehdi.amini at apple.com> wrote: > This thread started with: "There is a desire to be able to create constexpr > StringRefs to avoid static initializers for global tables of/containing > StringRefs.” > > I don’t have more information, but maybe Malcolm can elaborate? I was restating your motivation from https://reviews.llvm.org/D25639. -- Malcolm Parsons
2016 Dec 12
4
RFC: Constructing StringRefs at compile time
I can. I'll whip something up today On Fri, Dec 9, 2016 at 1:18 AM Malcolm Parsons <malcolm.parsons at gmail.com> wrote: > On 2 December 2016 at 17:12, James Y Knight <jyknight at google.com> wrote: > > +1 from me for the StringLiteral proposal from a few messages back. > > Zachary, do you want to commit StringLiteral? > > -- > Malcolm...
2016 Dec 12
2
RFC: Constructing StringRefs at compile time
...e cases (if any) we need to in Clang, or scope a using decl to just what's needed, etc. > > Thoughts? > > On Mon, Dec 12, 2016 at 11:53 AM Zachary Turner <zturner at google.com> > wrote: > > I can. I'll whip something up today > On Fri, Dec 9, 2016 at 1:18 AM Malcolm Parsons <malcolm.parsons at gmail.com> > wrote: > > On 2 December 2016 at 17:12, James Y Knight <jyknight at google.com> wrote: > > +1 from me for the StringLiteral proposal from a few messages back. > > Zachary, do you want to commit StringLiteral? > > -- &gt...
2016 Dec 12
0
RFC: Constructing StringRefs at compile time
...I’d rather rename the clang side than llvm :) — Mehdi > > > Thoughts? > > On Mon, Dec 12, 2016 at 11:53 AM Zachary Turner <zturner at google.com <mailto:zturner at google.com>> wrote: > I can. I'll whip something up today > On Fri, Dec 9, 2016 at 1:18 AM Malcolm Parsons <malcolm.parsons at gmail.com <mailto:malcolm.parsons at gmail.com>> wrote: > On 2 December 2016 at 17:12, James Y Knight <jyknight at google.com <mailto:jyknight at google.com>> wrote: > > +1 from me for the StringLiteral proposal from a few messages back....
2002 Oct 11
3
Help - Moutning XP Drives on Linux box using.
...t failed: ERRDOS - ERRnoaccess (Access denied.) SMB connection failed [root@hoc etc]# Note: The XP box does have an account malc that is an administrator, and I can connect using the same account and password to the c$ share from the windows 2000 box. Any help would be appreciated! Malcolm Jack Manager Systems Infrastructure / Telecom "Let's Roll. . ." -------------- next part -------------- HTML attachment scrubbed and removed
2016 Nov 29
2
RFC: Constructing StringRefs at compile time
char buffer[100]; And it also allows LIT(buffer) to compile, whereas the UDL doesn't. On Tue, Nov 29, 2016 at 9:54 AM Mehdi Amini <mehdi.amini at apple.com> wrote: > > > On Nov 29, 2016, at 9:52 AM, Malcolm Parsons <malcolm.parsons at gmail.com> > wrote: > > > > On 29 November 2016 at 17:38, Zachary Turner <zturner at google.com> wrote: > >> I see, but I looked over your proposed implementation from earlier in > the > >> thread, and if I'm not mistak...
2008 Apr 14
4
Unable to load module chan_zap.so
.../0/2 FXSKS 4 WCTDM/0/3 FXSKS /etc/zaptel.conf is: # Span 1: WCTDM/0 "Wildcard TDM400P REV I Board 1" fxols=1 fxsks=2 fxsks=3 fxsks=4 # Global data loadzone = au defaultzone = au I have Googled for help but not found anything. Does anyone have any suggestions? TIA -- Jeremy Malcolm LLB (Hons) B Com Internet and Open Source lawyer, IT consultant, actor host -t NAPTR 1.0.8.0.3.1.2.9.8.1.6.e164.org|awk -F! '{print $3}' Luxury Perth apartment for sale! http://www.yourestate.com.au/sresult.php?property_id=8581
2016 Nov 29
2
RFC: Constructing StringRefs at compile time
...es outside StringRef - all StringRefs constructed from a literal can benefit. But there are concerns about MSVC. I prefer StringLiteral over UDL because the type requires code changes, but the values don't. I prefer StringLiteral over explicit StringRef constructor because it's safer. -- Malcolm Parsons
2005 Apr 07
2
half-normal residual plots
Hi all, I am trying to produce a half-normal plot of residuals from a GLM. I have found the qqnorm function for producing a normal plot but can't figure out how to produce a half-normal. Can anyone help with this? Thanks Malcolm ---------------------- MJ Price, Social Medicine epmjp at bristol.ac.uk
2016 Nov 28
5
RFC: Constructing StringRefs at compile time
...licensees, and I would > really rather not pessimize it. > > --paulr > > > > *From:* llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] *On Behalf Of *David > Blaikie via llvm-dev > *Sent:* Friday, November 25, 2016 8:52 AM > *To:* Mueller-Roemer, Johannes Sebastian; Malcolm Parsons; Hal Finkel; > llvm-dev at lists.llvm.org > > > *Subject:* Re: [llvm-dev] RFC: Constructing StringRefs at compile time > > > > > > On Fri, Nov 25, 2016 at 6:10 AM Mueller-Roemer, Johannes Sebastian via > llvm-dev <llvm-dev at lists.llvm.org> wrote: &gt...
2016 Feb 19
0
should `data` respect default.stringsAsFactors()?
...ean the default.stringsAsFactor thing). > > In general, read.table() gets many things wrong I agree with you that "read.table() gets many things wrong" and I too have my favorite workarounds - but that was not my concern. My concern is that data() does not work as documented. ~Malcolm > , if you don't set switches > and/or postprocess. E.g., even when you do intend to read factors, the > alphabetical level order is often not desired. My favourite workaround for > data() is to drop a corresponding foo.R file in the ./data directory. This will be > run in p...