search for: oversees

Displaying 20 results from an estimated 89 matches for "oversees".

Did you mean: overseas
2015 Oct 13
4
RFC: Introducing an LLVM Community Code of Conduct
On 13 October 2015 at 17:16, Kuperstein, Michael M via llvm-dev <llvm-dev at lists.llvm.org> wrote: > The FreeBSD CoC is, IMHO, much better in this respect ( https://www.freebsd.org/internal/code-of-conduct.html ). Nice! This is so succinct and beautiful! It doesn't need an overseeing foundation to take opaque decisions, and focus on what's really important: the code. I
2015 Oct 23
2
Code owner for the new AVR backend
Hello all, I have submitted and merged patches for most of the public modifications required for the AVR backend, and I am amount to start the process of adding the lib/Target/AVR directory piece by piece. As this will be a significant portion of code (~7000 lines), it should have a code owner. I have been working on the backend for the last year, maintaining it, overseeing contributions, and
2011 Jul 29
0
Noble is looking for a Market Risk Manager/Analyst for its London Office, prefer Candidates who have R programming skills
Noble is looking for a Market Risk Manager/Analyst for its London Office, prefer Candidates who have R programming skills ================================================================================== Noble Noble is a market leader in managing the global supply chain of agricultural, industrial and energy products. Our "hands on" approach to business has seen us grow to become a
2014 Dec 11
2
Migrate with Dsync
Hello List, i have a simple and maybe stupid question but, read the guide on http://wiki2.dovecot.org/Migration/Dsync now i wonder where to put this configuration ? May i oversee something but i would appreciate any hint toward solving my problem. regards, dominik
2013 Aug 06
2
Samba4 using existing DNS and LDAP
Hi, I have been using Samba3 (and 2) for years, with an openLDAP backend for authentication. This is working fine, my directory includes a number of local settings for my specific needs. Now I would like to move to Samba4. I understand that Samba4 comes with its own DNS and LDAP servers. By provisioning Samba4 with --dns-backend=NONE and including the necessary to my existing DNS zone, is
2004 May 04
5
Microsoft hotfix MS04-011, breaks Samba password change.
Hi all, I wanted to give an update on this as I know this MS Hotfix is critical and must be applied to protect against the (latest) Microsoft worm. I think I've found the problem in the code, and am currently testing a fix for this (not in the release to others to test stage yet). As soon as I'm reasonably confident I'll put a patch out there for others to test, and we'll
2011 Jul 15
2
[LLVMdev] Missing optimization in constant propagation?
Hi all, I stumbled across a peculiarity regarding constant propagation that I don't understand. I'm not sure, if I oversee anything or if it's a missing feature. I have created the following simple test function in C: int times_zero(int a) { return (a * 0); } Compiling this with GCC using dragonegg generates the following code: %int = type i32 define i32 @times_zero(i32 %a)
2007 Dec 28
2
Access to shares too slow
Hi all, we recently moved our offices to a bigger place. Therefore all our servers and network electronic had to be turned off... :) Well, I know it sounds odd but after the move Samba is much slower serving the shares and users have to wait ages for the information to be copied or moved across the network. In some cases, Windows desktops seem to freeze until the data is retrieved from the
2015 Jan 15
2
[LLVMdev] Bug in InsertElement constant propagation?
I don't see a way to create a ConstantDataVector from Constant or form APFloat though. Did I oversee that? Is the solution to had a new get function in ConstantDataVector to allow that? Any hint on what would be the right fix otherwise? Thomas -----Original Message----- From: Jonathan Roelofs [mailto:jonathan at codesourcery.com] Sent: Wednesday, January 14, 2015 10:30 AM To: Raoux, Thomas
2015 Oct 13
4
RFC: Introducing an LLVM Community Code of Conduct
> On Oct 13, 2015, at 10:23 AM, Bill Kelly via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Renato Golin via llvm-dev wrote: >> On 13 October 2015 at 17:16, Kuperstein, Michael M via llvm-dev >> <llvm-dev at lists.llvm.org> wrote: >>> The FreeBSD CoC is, IMHO, much better in this respect ( https://www.freebsd.org/internal/code-of-conduct.html ).
2020 Jan 05
3
(no subject)
Dear all, Please let me start by indicating that I am not from a technical background, so please be gentle and patient with me. I am trying to get a snapshot from my virtual machines (vm) and the following command works for all of them bar one: # virsh snapshot-create-as --quiesce --no-metadata --domain myvm myvm-state --diskspec vda,file=overlay.qcow2 --disk-only --atomic The only exception is
2013 Aug 07
0
[LLVMdev] DataFlowSanitizer design discussion
On Tue, Aug 6, 2013 at 5:55 PM, Peter Collingbourne <peter at pcc.me.uk> wrote: > Hi, > > If there are no further comments on the design below I intend to commit > my DFSan patches in a week. > I think it would be good to get Kostya's explicit sign-off on this before committing it, as he has been directing and overseeing the sanitizer work as a whole over the past year.
2007 Nov 25
1
Testing Help
Jean-Marc Valin wrote: >> What commercial VOIP test products can I turn to in order to objectively >> evaluate your CODEC; in order to analyze audio streams for MOS scores and >> performance parameters? >> > > The MOS evaluation is subjective, not objective and actually involves > getting (many) real people to listen to the audio, not just buying a >
2007 Oct 26
1
Accessing scripts in a different directory on a Mac
Hi all. A question for knowledgeable folks using R on an Intel Mac running OS X 10.4.10 For ease of maintenance, I have broken a large R script into a main script which ?oversees? things by calling other scripts, using ?source?. Let?s call the secondary scripts ?sub-scripts.? I?d like for the sub-scripts to reside in a different directory (again, for ease of maintenance, and so I can access them from many other directories). I?ve looked all over the documentation about pa...
2004 Aug 23
1
strange problem PBX-Asterisk
Hi, maybe I oversee somth. very obvious, but I'm a little puzzled about the following 'error': When I make a call from the PBX to * I get number not available, but on debug I see, that asterisk is searching just for the first digit in the extension, which of course doesn't exist, eg: I dial 77 (for conn to *) and 12345 (valid extension) on the console I see: -- Extension
2004 Sep 08
3
Where to post SuSE 9.x startup script?
Hi all, I just modified one of the startup scripts provided on the tarball to fit on my SuSE 9.x system to start/stop Asterisk when the system boots or goes down. Maybe I'm overseeing the answer but could't find where to post/(cvs)upload the changes I made... TIA, Martin
2014 Oct 17
2
Most efficient way to check the length of a variable mentioned in a formula.
Dear R gurus, I need to know the length of a variable (let's call that X) that is mentioned in a formula. So obviously I look for the environment from which the formula is called and then I have two options: - using eval(parse(text='length(X)'), envir=environment(formula) ) - using length(get('X'), envir=environment(formula) ) a bit of
2020 Apr 07
0
Welcome Thomas and Patrick to CentOS Project Governing Board
Hi, The CentOS Governing Board of Directors is pleased to appoint two new Directors to be added to the Governing Board, effective 8th April 2020: Thomas Oulevey [1] and Patrick Riehecky [2]. The community will instantly recognise both from their long standing and well established support for the CentOS Project over the years, initially as consumers and community participants, and in more recent
2002 Apr 30
1
ylim in biplot does not seem to work (PR#1498)
Full_Name: Hinrich Göhlmann Version: 1.4.1 OS: Windows 2000 Submission from: (NULL) (148.177.130.121) Hi all, I've searched the known bugs and hopefully I did not oversee this one... When I have done a normal zz<-princomp(na.omit(raw.data)) and I then draw a biplot with biplot(zz,cex=c(.1,.7),col=c(5,1),choice=c(1,2),xlim=c(-2,2),ylim=c(-5,2)) the x axis gets set properly, but the y
2012 Aug 29
1
Suggestion: Change default to download.file(..., mode="wb") ...instead of mode="w" with some bells and whistles
Hi, I keep seeing the problem where people are download binary files as text (mode="w") when using R's download.file() for FTP/HTTP downloads. It often results in unnecessary troubleshooting until one concludes that the downloaded file has been corrupted due to (what I think is) translated newlines. Search the r-help mailing list and you'll find other examples of this. This