Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] Explicit constructors with more than one argument"
2018 Jun 20
2
Welcome to the "Xapian-discuss" mailing list
Hi,
I'm new to Xapian and wanted to know if it has a specific feature. I want
to be able to check the relation between two terms on a page based on how
close they are together on the page. I want to use a combination of n-gram
based labeling and the "slop" feature found in Elasticsearch. Does Xapian
have this/a similar feature? I haven't been able to find any programs that
have
2013 Jul 01
3
Error al correr archivo markdown
Gracias, si uso R estudio, cree un documento nuevo, deje el ejemplo que el
Restudio trae y me volvio a aparecer el mismo error, que puedo hacer para
solucionarlo?
El 1 de julio de 2013 15:21, Marcuzzi, Javier Rubén <
javier.ruben.marcuzzi@gmail.com> escribió:
> Estimada Gaby Nieves
>
> Si usted usa Rsutudio puede crear un archivo nuevo, le sugiero crear este,
> sin colocar
2013 Jul 01
2
Error al correr archivo markdown
Si, ya habia hecho un archivo markdown y lo habia corrido hace unos cuantos
meses
El sistema es windows 7 y R version 3.0.1 (2013-05-16)
el mensaje es el siguiente: > require(knitr); knit('Quiz1Markdown.Rmd',
encoding='ISO8859-1');
Loading required package: knitr
Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]])
:
there is no package called
2017 Jul 29
2
[asterisk13] Multiple transport objects of same protocol in pjsip.conf
Scenario:
Our Asterisk 13 PBX (on network 192.168.254.0/24, bound to 192.168.254.1:5060) is behind
a NAT, acting as a client to our ITSPs SIP server. But also, this Asterisk is server for
various VoIP telephones.
Acoording to Asterisk's wiki, the transport section of pjsip.conf is configured as
follows:
; Transport via UDP
[transport-nat-udp]
type= transport
2008 Apr 16
2
[LLVMdev] Problems in removing a cloned instruction.
Hi all,
I am trying to write a pass where i am creating a clone of a
function (the only difference being, the new function returns void ,
instead of any value).
I am creating a new Function Type with a void return type (rest being
the same as original function), and using this i am creating a new
function body. Then, i clone the body of the old function into new
function, but when ever i
2005 May 23
3
Simply can't figure it out
Hi,
I'm having a hideous problem trying to get the latest stable version to
work. I've had no success and simply can't pinpoint the problem.
Sorry for the rather long email but I've included as many details as I
can to help here.
I've been trying to install the latest stable version (as of 23rd May
2005) by downloading the tarball from the site to my OpenBSD 3.6 box,
2008 Sep 12
3
[LLVMdev] CPP API User-level Question: Returning multiple values
Greetings,
I'm working on getting our compiler's interface to LLVM to mimic the
way the LLVM-GCC inserts instructions to generate AMD64 ABI compliant
code. I'm trying to create
ret i64 %mrv, double %double_mrv37
which is basically what LLVM-GCC puts out. However if I use lcc
-march=cpp to get the API code I need it has the following line:
2008 Sep 12
2
[LLVMdev] CPP API User-level Question: Returning multiple values
Dan,
Thanks for the info. Unfortunately for the time being we are using
(for the most part) the 2.3 release (with a couple of patches that Dave
Greene has applied). The first-class aggregates is one of the things we
don't yet have in the LLVM we're working with. I'll look again to see if
there's a ReturnInst::Create( ) which I can pass an array of llvm::Value
*'s to,
2008 Apr 16
0
[LLVMdev] Problems in removing a cloned instruction.
Hi,
I'm gonna try to give some feedback, but I have only been working with LLVM
for a few days, so don't take what I'm saying without verifying :-)
> BasicBlock *ProgSlicer::CloneBasicBlock(const BasicBlock *BB,
> DenseMap<const Value*, Value*> &ValueMap,
> const char *NameSuffix, Function *F) {
>
> BasicBlock
2013 Jul 01
2
Error al correr archivo markdown
Hola, tengo un problema al escribir un archivo markdown, luego que lo tengo
listo y le doy al knit html para correrlo este me sale un error que dice
que no tengo intalado el knitr, pero si lo tengo aun asi lo vuelvo a
instalar y nada, y antes con otro archivo si me corria el knit html, pero
despues de este ahora ninguno me corre me sigue diciendo que no tengo el
knit, ayduda
[[alternative HTML
2017 Aug 10
2
Keys used to sign releases
I see that some, but not all, releases provide a local link to the key used
to generate the signature files, which makes it difficult for a script to
use them to verify the signatures.
Gcc solves this problem by including the following on their mirrors page (
https://gcc.gnu.org/mirrors.html):
The archives there will be signed by one of the following GnuPG keys:
- 1024D/745C015A 1999-11-09
2008 Sep 12
0
[LLVMdev] CPP API User-level Question: Returning multiple values
Hi Tony,
I just checked LLVM 2.3 and ReturnInst has these:
static ReturnInst* Create(Value * const* retVals, unsigned N,
Instruction *InsertBefore)
static ReturnInst* Create(Value * const* retVals, unsigned N,
BasicBlock *InsertAtEnd)
which are what you're looking for.
In LLVM trunk, MRV-syntax LLVM assembly files and bitcode
2015 Jul 24
3
RHEL 6.7 is released
Now don't go bugging people asking when CentOS 6.7 will be out.
"When it's ready."
In upgrading from RHEL 6.6 to 6.7, I did find that I had to disable
my 3rd party repos (elrepo and epel) in order to avoid yum erroring
out. Plus I did the usual "yum clean all". (I don't use the PackageKit
GUI as it's been unable to complete for quite a few months without
2013 Oct 10
2
[LLVMdev] Are there implicit rules or conventions for an llvm frontend to generate llvm IR?
Hi, this question might be a bit silly: apart from the language
reference(http://llvm.org/docs/LangRef.html#switch-instruction) page, are
there additional rules for a regular llvm frontend to generate llvm IRs?
There are a few cases that I got from clang/llvm-gcc/dragonegg when
compiling *C* source code into llvm IR:
1. It seems that there is ONLY ONE ReturnInst(and NO InvokeInst) for such
llvm
2008 Sep 12
0
[LLVMdev] CPP API User-level Question: Returning multiple values
On Sep 12, 2008, at 9:40 AM, Tony Scudiero wrote:
> Greetings,
Hi Tony,
This is an area that's undergone some changes recently. The LLVM 2.3
multiple-return-value (MRV) syntax has been replaced by the
first-class aggregates syntax in SVN trunk.
>
> I'm working on getting our compiler's interface to LLVM to mimic
> the
> way the LLVM-GCC inserts instructions to
2013 Oct 10
0
[LLVMdev] Are there implicit rules or conventions for an llvm frontend to generate llvm IR?
On 10/10/13 10:43 AM, Hongxu Chen wrote:
> Hi, this question might be a bit silly: apart from the language
> reference(http://llvm.org/docs/LangRef.html#switch-instruction) page, are
> there additional rules for a regular llvm frontend to generate llvm IRs?
>
> There are a few cases that I got from clang/llvm-gcc/dragonegg when
> compiling *C* source code into llvm IR:
>
>
2013 Oct 10
1
[LLVMdev] Are there implicit rules or conventions for an llvm frontend to generate llvm IR?
On Fri, Oct 11, 2013 at 12:06 AM, John Criswell <criswell at illinois.edu>wrote:
> On 10/10/13 10:43 AM, Hongxu Chen wrote:
>
>> Hi, this question might be a bit silly: apart from the language
>> reference(http://llvm.org/**docs/LangRef.html#switch-**instruction<http://llvm.org/docs/LangRef.html#switch-instruction>)
>> page, are
>> there additional rules
2009 Mar 16
4
[Bug 1573] New: ls hangs in internal-sftp
https://bugzilla.mindrot.org/show_bug.cgi?id=1573
Summary: ls hangs in internal-sftp
Product: Portable OpenSSH
Version: 5.2p1
Platform: ix86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: unassigned-bugs at mindrot.org
ReportedBy: gdr at go2.pl
2005 Apr 11
1
Index(?) problem under OpenBSD
Hi,
My apologies if this has been mentioned before, I haven't pulled up a
google search yet. I run Dovecot from the package under OpenBSD 3.6
(dovecot-0.99.10.8).
The problem I have is that occasionally dovecot corrupts an index file
(I think), which causes the process to gradually creep up in usage,
until it hits 99%, where it stays, without quitting. If I then fire up
my mail client
2001 Nov 19
1
Adobe Acrobat 5.0/wine???
Hi!
Is it possible to run Acrobar Reader 5.0 with wine under Linux? If so, what
do I have to do? I installed Acrobat 5.0 under Windows 98 (and it works),
but it won't work using wine under Linux (which I would prefer because I
usually do not run Windows).
Any help?
Cheers,
Bogislav