Displaying 20 results from an estimated 5000 matches similar to: "SAMBA (Performance problem: many concurrent RO operations on the same file)"
2006 Mar 28
2
Typo 2.6.0 broken with Rails 1.1
Updated today, got Typo 2.6.0 broken with Rails 1.1 (Ruby 1.8.4) --
WEBrick does not start.
Is there any workaround except "svn co" with Typo trunk?
--
Yaroslav Markin
yaroslav at markin dot net
2004 Oct 18
0
DENY LIST ???
Hi,
More related to the mailing list than to LARTC, can you explain why each
time I send a mail to the mailing list lartc@mailman.ds9a.nl I get the
following (BTW, my mail is correctly diffused..) :
>>>>>>>>>>>>>>>>>
-----Message d''origine-----
De : Denis Sokolov [mailto:despot@ml.lv]
Envoyé : lundi 18 octobre 2004 21:40
À : EC
2006 Jul 31
0
RUSSIAN RoR community -- www.rubyonrails.ru
Hi,
This is a message for all russian-speaking people on the list :)
I would like to announce the opening of russian Ruby on Rails
community site, http://www.rubyonrails.ru.
We''ve got a russian RoR planet at http://planet.rubyonrails.ru and an
active wiki at http://wiki.rubyonrails.ru.
You can also join a growing russian Rails group/mailing list at
2006 Mar 20
0
Rescue to public/404.html
Hi there,
Could anyone share your experience, what is the best way to handle
ActiveRecord errors?
Of course, I can rescue it in the controller and do everything I want.
But is there any way to display 404.html from public/ in this very case?
--
Yaroslav Markin
yaroslav at markin dot net
2010 Jun 29
1
[PATCH] virt-what.in: Added VMware virt detection using cpuid in wrapper script
Brief discussion thread - http://lkml.org/lkml/2010/6/29/355
Added VMware detection via cpuid.Mimic'd VMware's balloon driver's init-time
check(cpuid followed by dmi-checks). Moved the existing logic into a simple
function to achieve that.
Tested virt-what.in(ran as a script) and virt-what-cpuid-helper within
a Linux guest on ESX. Thanks.
Signed-off-by: Chetan Loke <loke.c at
2010 Jun 29
1
[PATCH] virt-what.in: Added VMware virt detection using cpuid in wrapper script
Brief discussion thread - http://lkml.org/lkml/2010/6/29/355
Added VMware detection via cpuid.Mimic'd VMware's balloon driver's init-time
check(cpuid followed by dmi-checks). Moved the existing logic into a simple
function to achieve that.
Tested virt-what.in(ran as a script) and virt-what-cpuid-helper within
a Linux guest on ESX. Thanks.
Signed-off-by: Chetan Loke <loke.c at
2008 Jun 18
2
[LLVMdev] using dynamic libraries from bytecode?
Is it possible to use dynamic library (*.so *.dll) from bytecode?
If "yes" - how?
--
WBR, Yaroslav Kavenchuk.
2005 Oct 06
1
CTF generation
Hello everybody!
How do people generate the Compact Type Format (CTF) section?
Do you have a special parser or employ gcc debug information?
Is there any open utility to do this job?
Best regards,
Yaroslav
2008 Jun 18
0
[LLVMdev] Ответ: using dynamic libraries from bytecode?
On Jun 18, 2008, at 12:27 PM, Yaroslav Kavenchuk wrote:
> $ llvm-gcc.exe -I/mingw/include gcd_ui.c -L/mingw/lib -lgmp -o
> gcd_ui.ll -emit-llvm -S
Use
> $ llvm-as gcd_ui.ll -o gcd_ui.bc
Use llc gcd_ui.bc and then llvm-gcc.exe gcd_ui.s -L/mingw/lib -lgmp?
2008 Jun 18
1
[LLVMdev] using dynamic libraries from bytecode?
Is it possible to use dynamic library (*.so *.dll) from bytecode?
If "yes" - how?
--
WBR, Yaroslav Kavenchuk.
2008 Jun 19
0
[LLVMdev] Ответ: using dynamic libraries from bytecode?
On Jun 18, 2008, at 12:27 PM, Yaroslav Kavenchuk wrote:
> Mike Stump wrote:
>>> Is it possible to use dynamic library (*.so *.dll) from bytecode?
>>> If "yes" - how?
>>
>> dlopen? That's be one way. Also, most systems have shared libraries
>> in /usr/lib and these routines are meant to be linked against and
>> used. For example, on
2008 Jun 19
1
[LLVMdev] Ответ: using dynamic libraries from bytecode?
Chris Lattner wrote:
>> $ lli gcd_ui.bc
>> ERROR: Program used external function '__gmpz_init_set_ui' which could
>> not be resolved!
>>
>> This application has requested the Runtime to terminate it in an
>> unusual way.
>> Please contact the application's support team for more information.
>
> Try: lli -load /path/to/foo.so gcd_ui.bc
2012 Aug 16
1
[LLVMdev] AllocaInst issue
Hello,
I have the following problem: I need to allocate an array. I know it's size - it's constant (ConstExpr), but my problem is that I know it only during the runtime (i.e for every variable I'm trying to allocate an array equal to size of a variable). As I understand I can't do it, since it's possible to initialize ArrayType only if I know it's size in integer units.
2005 May 09
1
how to abort when can't write to the destination?
Dear Rsyncers,
I'm trying to maintain a mirror of Ubuntu distribution and I had a cron
job which rsynced it every night. The problem came after last reboot a
few days ago -- destination directory wasn't mounted, thus wasn't
accessible by rsync for writing:
rsync: failed to set times on "/share/ubumirror/.": Operation not permitted (1)
rsync: recv_generator: mkdir
2006 Oct 18
0
[OT] Nokia E60/61/70 and SIP
Martin Joseph wrote:
>
>
> For all of us using these devices, I have some good news. There is a
> self installable firmware update available from Nokia here (requires
> windows box to install):
>
> http://www.nokia.co.uk/nokia/0,1522,,00.html?orig=/softwareupdate
>
> This seems to radically improve the behavior of the SIP client on my
> E60. It seems to have
2008 Jun 18
4
[LLVMdev] Ответ: using dynamic libraries from bytecode?
Mike Stump wrote:
>> Is it possible to use dynamic library (*.so *.dll) from bytecode?
>> If "yes" - how?
>
> dlopen? That's be one way. Also, most systems have shared libraries
> in /usr/lib and these routines are meant to be linked against and
> used. For example, on darwin, there sinf is resolved from a shared
> library, you declare it and call it, as
2012 Jul 26
1
[LLVMdev] Calling a function with bad signature, possible bug.
Hello,
I'm having troubles with writing a pass. In my pass I've have created a function that has two parameters - both of type i8*. Initially I wrote this function in C, that I translated it into IR, and then by using llc -march=cpp I got it's implementation in cpp code that actually inserts IR instructions. Then, I inserted this cpp code in my pass.
And in some places of a program
2014 Jul 10
1
dialplan =>how many concurrent calls
Hi guys.
Does somebody knows how to get the concurrent calls from the dial plan?
Or.
How can i control not to run more than n simultaneus agi applications?
Thanks in advance.
rv
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20140710/70b38e21/attachment.html>
2015 Mar 06
0
LMTP error: Too many concurrent deliveries for user (in reply to end of DATA command)
* Ralf Hildebrandt <r at sys4.de>:
>
> I updated dovecot today and all over a sudden I'm getting:
Old:
dovecot-lmtpd:amd64 2:2.2.15-1~auto+136
New:
dovecot-lmtpd:amd64 2:2.2.15-1~auto+148
>From Stephan Bosch's repos.
--
[*] sys4 AG
http://sys4.de, +49 (89) 30 90 46 64
Franziskanerstra?e 15, 81669 M?nchen
Sitz der Gesellschaft: M?nchen, Amtsgericht M?nchen: HRB 199263
2015 Mar 06
0
LMTP error: Too many concurrent deliveries for user (in reply to end of DATA command)
Am 06.03.2015 um 14:44 schrieb Ralf Hildebrandt:
> I updated dovecot today and all over a sudden I'm getting:
>
> Mar 6 14:40:46 mail postfix/lmtp[3150]: 3kz95y3nX3zCtTS: to=<recipient at backup.invalid>, relay=127.0.0.1[private/dovecot-lmtp],
> delay=88, delays=87/0.94/0.01/0.01, dsn=4.3.0, status=deferred (host 127.0.0.1[private/dovecot-lmtp] said: 451 4.3.0
>