Displaying 20 results from an estimated 24 matches for "declerations".
Did you mean:
declarations
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
> prototype...
2003 Apr 01
1
VFS module programming
Hi!
I'm interested in VFS module programming. So I took the examples
(doc/examples/VFS) and compiled them. Then I added a "vfs object" line to my
smb.conf. I took the audit.so example.
Result: It does not work! I can't access the share. I enabled logging and
found out that there is an error message, which says that samba could not
load the VFS module, because there is
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, J...
2005 May 05
3
[LLVMdev] Scheme + LLVM JIT
> So as it stands, one should think of out JIT as something akin to the
> early Java JITs: one function at a time and only one compile per
> function. This is extremely primative by modern JIT standards, where a
> JIT will do profiling, find hot functions and reoptimize them,
> reoptimize functions when more information about the call tree is
> available, have several levels of
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/n...
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 Baoyou...
2005 May 10
0
[LLVMdev] Scheme + LLVM JIT
On Thu, 5 May 2005, Alexander Friedman wrote:
>>> Does there happen to be a C interface to the jit ? Our scheme impl
>>> has a good FFI, but it doesn't do C++. If not, this is no big deal,
>>> and i'll just write something myself.
>>
>> No, but such bindings would be *very useful*. And since there might be
>> other people who need them this
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
asterisk-users-request@lists.digium.com wrote:
>Send Asterisk-Users mailing list submissions to
> asterisk-users@lists.digium.com
>
>To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.digium.com/mailman/listinfo/asterisk-users
>or, via email, send a message with subject or body 'help' to
> asterisk-users-request@lists.digium.com
>
>You can