Displaying 20 results from an estimated 24 matches for "decleration".
Did you mean:
declaration
2006 May 01
0
[LLVMdev] printf decleration
Ok, I think I figured it out. I talked to someone, and we figured out
that when I make a call to printf with a constant string, I need to make
a global variable and use getElementPtr to reference it. The modified
call for accessing the printf is:
/* m is Module*, f is Function*, i is Instruction* */
Constant* constStr = ConstantArray::get("test\n");
GlobalVariable* gv =
2006 May 01
2
[LLVMdev] printf decleration
I am writing a pass where I need to make a function deceleration for
printf. Below is the code I'm trying to use.
-----
bool MyPass::runOnModule(Module &m) {
vector<const Type*> args;
args.push_back(PointerType::get(Type::SByteTy));
Function* f = m.getOrInsertFunction("printf",
FunctionType::get(Type::IntTy, args, true));
-----
When I insert a call
2016 Oct 24
2
[PATCH 01/17] drm/nouveau/core: add missing header dependencies
On 23 October 2016 at 01:32, Karol Herbst <karolherbst at gmail.com> wrote:
> I think it would be better to squash those commits:
> 1. for the includes
> 2. for static declerations
>
> OK, I have resent new patch that squash those commits.
> 2016-10-22 11:41 GMT+02:00 Baoyou Xie <baoyou.xie at linaro.org>:
> > We get 2 warnings when building kernel with W=1:
> > drivers/gpu/drm/nouveau/nvkm/core/firmware.c:34:1: warning: no previous
> prototyp...
2003 Apr 01
1
VFS module programming
...bled logging and
found out that there is an error message, which says that samba could not
load the VFS module, because there is something like an unresolved symbol
called "default_vfs_ops".
default_vfs_ops is declared as "extern" in audit.c. And I found the "real"
decleration of "default_vfs_ops" in the samba source files. So what?
Why isn't it found by the loader? It IS there! What's wrong?
Thank you,
Joachim
2017 May 18
1
Improving packets/sec and data rate - v1.0.24
I noticed a large performance boost both on bare metal and in vps instances
by turning on kernel routing in the tinc config, and using full host
declerations for routs rather than dumping things to the tun interface
ambiguously.
"Forwarding = kernel"
ip route add 1.2.3.4 via 4.3.2.1 dev tun
-instead of-
ip route add 1.2.3.4 dev tun
On May 17, 2017 3:10 PM, "Niklas Hambüchen" <mail at nh2.me> wrote:
> On 17/05/17 21:50,...
2005 May 05
3
[LLVMdev] Scheme + LLVM JIT
...re might be
> other people who need them this summer, such work might also get a lot
> of help.
I'll probably wind up writing one, and if I do, I will certainly
submit it - it seems like it should just be gluing a bunch of
functions together and proving an 'extern "C" ' decleration.
What sort of interface should such an interface provide? The simplest
is "pass-in-a-string-to-compile", but that's rather crude.
--
-Alex
2019 May 19
2
Possible to run a tinc node in bridge-only mode?
Hi tinc users,
I have two Tinc nodes (A, B) running on trusted computers. Between A and B
there's no direct internet connection. So I have to set up the third node X
to bridge them:
[ A ] ======= [ X ] ======= [ B ]
trusted untrusted trusted
X is on a cloud service like AWS thus it's on an untrusted third party.
Once it's is compromised the attacker can access to the
2006 Apr 28
7
acts as drop down
Hi
Im using the acts as drop down plugin
and have this code below
acts_as_dropdown :text => "forename", :order => "forename"
It currently makes use of the forename in the option tag, how can I get
it to use the surname as well
ie somthing like ''forename'' . ''surname'' in php
Thanks
--
Posted via http://www.ruby-forum.com/.
2008 Mar 31
10
Problems with *_path() and *_url() helpers when using Publisher
Hello,
I am running into issues using *_path() and *_url() helpers the
Facebooker Publisher framework. I encounter the following error when
using these helpers while *inside of a partial*:
undefined method `default_url_options'' for ActionView::Base:Class
I''ve seen a few other people speak about this issue, yet I haven''t
seen any resolution on the mailing list yet.
2008 Oct 21
6
detecting width overflow in serialized column with mysql
So I''ve got an ActiveRecord model pointing to a MySQL db, with an
auto-serialized column ("serialize :columnName").
Thing is, MySQL, depending on how it''s configured (like, by default),
has a bad habit of just truncating your data if it''s too wide for the
column, with no error raised. Yeah, I can probably reconfigure MySQL
and/or my AR connection to it. But
2016 Oct 22
0
[PATCH 01/17] drm/nouveau/core: add missing header dependencies
I think it would be better to squash those commits:
1. for the includes
2. for static declerations
2016-10-22 11:41 GMT+02:00 Baoyou Xie <baoyou.xie at linaro.org>:
> We get 2 warnings when building kernel with W=1:
> drivers/gpu/drm/nouveau/nvkm/core/firmware.c:34:1: warning: no previous prototype for 'nvkm_firmware_get' [-Wmissing-prototypes]
> drivers/gpu/drm/nouveau/...
2016 Oct 24
0
[PATCH 01/17] drm/nouveau/core: add missing header dependencies
2016-10-24 9:13 GMT+02:00 Baoyou Xie <baoyou.xie at linaro.org>:
>
>
> On 23 October 2016 at 01:32, Karol Herbst <karolherbst at gmail.com> wrote:
>>
>> I think it would be better to squash those commits:
>> 1. for the includes
>> 2. for static declerations
>>
> OK, I have resent new patch that squash those commits.
>
thanks, this is much easier to review and keeps the git history clean :)
Will try to make a test with those patches over the next days, but it
looks fine as it is already.
>>
>> 2016-10-22 11:41 GMT+02:00 Baoyo...
2005 May 10
0
[LLVMdev] Scheme + LLVM JIT
...people who need them this summer, such work might also get a lot
>> of help.
>
> I'll probably wind up writing one, and if I do, I will certainly
> submit it - it seems like it should just be gluing a bunch of
> functions together and proving an 'extern "C" ' decleration.
>
> What sort of interface should such an interface provide? The simplest
> is "pass-in-a-string-to-compile", but that's rather crude.
To me, the best interface is the most simple: I would suggest just
wrapping the llvm classes and methods you need with simple functions, e...
2005 May 05
0
[LLVMdev] Scheme + LLVM JIT
On Wed, 2005-05-04 at 23:59 -0400, Alexander Friedman wrote:
> Hi List,
>
> I am in the preliminary stages of adding a JIT compiler to a sizable
> Scheme system (PLT Scheme). The original plan was to use GNU
> Lightning, but 1) it seems to be dead, and 2) LLVM has already done a
> huge amount of stuff that I would have had to write (poorly) from
> scratch.
Yay! A real
2003 Apr 01
2
CE certification for Europe
Hello,
I'd like to ask if there are any news about CE certification of the E1
boards. I know that the T1 boards are FCC certified but I'd also like to
know what is the status for CE certification.
Thanks for any input,
Vlasis Hatzistavrou.
2017 May 17
3
Improving packets/sec and data rate - v1.0.24
Niklas - Thanks! Yeah, your Github issue was very useful for me to
understand what is probably causing our issue (the syscall chain done on
every UDP packet). Very interesting that you're able to see around 90%
of a Gig line on bare metal. Were you ever able to make any further
progress on adjusting Tinc based on the investigation in
https://github.com/gsliepen/tinc/issues/110 ?
Martin -
2019 Dec 19
0
CfP VHPC20: HPC Containers-Kubernetes
====================================================================
CALL FOR PAPERSa
15th Workshop on Virtualization in High-Performance Cloud Computing
(VHPC 20) held in conjunction with the International Supercomputing
Conference - High Performance, June 21-25, 2020, Frankfurt, Germany.
(Springer LNCS Proceedings)
====================================================================
Date:
2019 Dec 19
0
CfP VHPC20: HPC Containers-Kubernetes
====================================================================
CALL FOR PAPERS
15th Workshop on Virtualization in High-Performance Cloud Computing
(VHPC 20) held in conjunction with the International Supercomputing
Conference - High Performance, June 21-25, 2020, Frankfurt, Germany.
(Springer LNCS Proceedings)
====================================================================
Date:
2020 Apr 08
0
CfP VHPC'20: extension, Zoom Online Event without charge
====================================================================
CALL FOR PAPERS
15th Workshop on Virtualization in High-Performance Cloud Computing
(VHPC 20) held in conjunction with the International Supercomputing
Conference - High Performance, June 21-25, 2020, Frankfurt, Germany.
(Springer LNCS Proceedings)
====================================================================
Date:
2003 Apr 05
0
Re: Asterisk-Users digest, Vol 1 #237 - 11 msgs
...gt;>>>
>>>>Best regards,
>>>>Vlasis.
>>>>
>>>>Klaus-Peter Junghanns wrote:
>>>>
>>>>
>>>>
>>>>>Hi Vlasis,
>>>>>
>>>>>CE is no certification, it is just a decleration of conformity from
>>>>>the manufacturer. It has nothing to do with getting an ITU / ETSI
>>>>>(whatever...) approval for communication equipment.
>>>>>
>>>>>regards
>>>>>kapejod
>>>>>
>>>>>--
&...