search for: kells

Displaying 20 results from an estimated 55 matches for "kells".

Did you mean: tells
2003 Oct 27
3
(PR#4806)
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_000_01C39C9F.B5DABBD0 Content-Type: text/plain; charset="iso-8859-1" # Your mailer is set to "none" (default on Windows), # hence we cannot send the bug report directly from R. # Please copy the bug report (after finishing
2003 Jun 23
3
FW: S4 classes, creating in C
I am using C code to create an S4 object based on Douglas Bates's example in his lecture notes on <http://www.ci.tuwien.ac.at/Conferences/DSC-2003/Tutorials/RExtensions/slide s.pdf> http://www.ci.tuwien.ac.at/Conferences/DSC-2003/Tutorials/RExtensions/slides .pdf e.g. SEXP La_DGE_dc(SEXP A) { SEXP aa = PROTECT(duplicate(A)); SEXP adims, pivot, val; int
2003 Sep 05
1
Problem with S4 slots in C code (PR#4073)
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_000_01C3738F.63DE3390 Content-Type: text/plain; charset="iso-8859-1" #I want to be able to create a new S4 class and read data into it using C code # Here is a very simple S4 object inheriting from "array", but with 5
2014 May 07
3
Samba36 error on install - Freebsd 9.2
Hello, I have attempted to install samba36 on a base install of FreeBSD 9.2 I have installed this same package about 30 days ago and had no problems what so ever. after the install, I add the line to FreeBSD /etc/rc.conf file - samba_enable="YES" Reboot the server and an error appears - WARNING /var/db/samba is not a directory I make the basic smb.conf changes like I have always
2017 Mar 31
3
xapian bug tracker registration email is not working
I tried to register yesterday, twice with 2 email addresses. The website said it sent me mail, I never got a mail. Someone else, please confirm this is broken. A bug I'd like to file is that I'd like an option to search *word. Currently you can only search word*. The example where I would find this useful is searching for urls and email addresses. For example, I want to find emals from
2017 Mar 31
3
xapian bug tracker registration email is not working
I tried to register yesterday, twice with 2 email addresses. The website said it sent me mail, I never got a mail. Someone else, please confirm this is broken. A bug I'd like to file is that I'd like an option to search *word. Currently you can only search word*. The example where I would find this useful is searching for urls and email addresses. For example, I want to find emals from
2013 Dec 03
2
[LLVMdev] LLVM toolchain for Visual Studio
Thanks for the reply Reid! I took a look at that script and found that the files were properly copied so I poked around some more. I found that if I started a new win32 console application, LLVM shows up in the toolchain drop down! But if I open another project file from an existing project to see if it compiles in LLVM the dropdown options are missing! Do you know what might be deciding when
2013 Dec 03
0
[LLVMdev] LLVM toolchain for Visual Studio
Looks like the PlatformToolsets are cached in the .suo file. If you move it out of the way or delete it, VS will re-scan for toolsets. I'm not sure what other user state is stored there, though. That's annoying. =/ On Tue, Dec 3, 2013 at 6:37 AM, Kelly Sommers <kell.sommers at gmail.com>wrote: > Thanks for the reply Reid! I took a look at that script and found that the >
2007 Jun 17
2
SIP Peering--call terminated prematurely
I am attempting to establish SIP peering between Asterisk and an AltiGen soft PBX. This is my first experience with SIP peering. I can successfully make both inbound and outbound calls to/from a softphone on the AltiGen system (network access is provided by a PRI on the Asterisk system), but they are disconnected unexpectedly. The attachment is a redirect of the Asterisk CLI during a call that
2013 Nov 28
4
[LLVMdev] LLVM toolchain for Visual Studio
>From this website: http://llvm.org/builds/ I've installed the LLVM toolchain on 2 Windows machines. One with Visual Studio 2012 and another with Visual Studio 2013. After installing the LLVM toolchain neither machine shows the LLVM option in the Visual Studio project properties pane where you can select which toolchain to use for the project. Am I missing a step somewhere? :) Thanks for
2017 Jul 18
9
[Bug 12915] New: --modify-window should default to 1 for fat filesystems
https://bugzilla.samba.org/show_bug.cgi?id=12915 Bug ID: 12915 Summary: --modify-window should default to 1 for fat filesystems Product: rsync Version: 3.1.3 Hardware: All OS: All Status: NEW Severity: normal Priority: P5 Component: core Assignee: wayned at
2013 Dec 02
0
[LLVMdev] LLVM toolchain for Visual Studio
pls read the page of http://llvm.org/builds/ : To use the LLVM toolchain from Visual Studio, select a project in Solution Explorer, open its Property Page (Alt+F7 by default), and in the "General" section of "Configuration Properties" change "Platform Toolset" to "LLVM-vs2010" or "LLVM-vs2012". Alternatively, invoke MSBuild with
2010 May 18
2
NPA NXX Database
Has anyone had good results with an on-line database that returns a LATA based on NPA NXX? --Don Don Kelly PCF Corp People Come First 651 842-1000 888 Don Kell(y) 651 842-1001 fax -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100518/d77d09b3/attachment.htm
2016 Mar 23
0
Need help with code generation
On 22 Mar 2016, at 19:57, Rui Ueyama via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > ELF is a documented file format so if you are not sure if something should be considered valid, you can take a look at the spec to determine whether it is valid or not. File validity is an independent concept from LLD and I think we can determine it according to the spec. Some folk in Cambridge
2013 Dec 02
0
[LLVMdev] LLVM toolchain for Visual Studio
Getting the platform toolsets installed in the right place is a dirty job handled by this script: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/msbuild/install.bat?view=markup Do you have a PlatformToolsets directory somewhere under ProgFiles/MSBuild? If so, where is it? We can add it to the path search. If anyone has better ideas on how to find this magical directory, suggestions are
2019 May 17
3
Copy Function from one LLVM IR file to another
Hello everyone, I wanted to copy a function from one file to another. The file that I wanted to copy the function into contains a function with the same name and same number of instructions. I decided to just replace the instructions with those of the other function. I am doing all of this from within a function pass. *1.* I created a function pass in which I extract a function using
2002 Nov 13
1
DLLs adding in C++ code
I would like to utilise the power of R by adding my own software as a package written in C++. As a first step I am trying to write a DLL with a simple function that can be called from R. The DLL contains a C++ routine written and complied in Microsoft Visual C++ Ver 6.0 and is based upon the example in R-Exts eg I am trying to create the following example function SEXP out(SEXP x, SEXP y) {
2010 Dec 22
2
Vacancy - Asterisk MySQL Support Engineer 45K South London
Job Description: Asterisk MySQL Support Engineer Fast Growing Global Telecoms Company requires a very experienced engineer who has a variety of skill levels. The role would suit someone who has worked at switch level and fully understands how calls are to be handled to and from a VoIP platform, using a MySQL data base. Must be able to understand and had experience in dealing with, CLI, PDD, ACD
2008 Sep 15
1
UK call initiating party hangup control on analog home lines
I suppose this is rather an informative e-mail than a question. However if people had similar experiences or could comment what the differences are in other countries or with business analog lines, it would be interesting. It took me a week until a BT engineer was sent to my home home, since BT tech support was unable to provide information about the problem. Problem: Calling party controls how
2017 Jul 18
2
[Bug 12916] New: when rsync fails to chown, it gives up and does not set timestamp
https://bugzilla.samba.org/show_bug.cgi?id=12916 Bug ID: 12916 Summary: when rsync fails to chown, it gives up and does not set timestamp Product: rsync Version: 3.1.3 Hardware: All OS: All Status: NEW Severity: minor Priority: P5 Component: core Assignee: