Displaying 20 results from an estimated 1200 matches similar to: "data base"
2013 Jan 14
2
The three-dot question
Dear all,
Why does not the three-dot accept arguments from the parent environment?
I am just confused with this error, can someone give me a hint?
> rm(list=ls())
> testFun <- function(a, ...)
+ {
+ if(a){
+ print(a)
+ }else
+ {
+ print(b)
+ }
+ }
>
> myTask <- function(a)
+ {
+ b <- 3
+ testFun(a, b = b)
+ }
>
2007 Aug 23
7
TaskBarIcon gives Typerror
Hi,
I''m working with wxruby since 2 days but next to this Wiki: http://wxruby.rubyforge.org/wiki/wiki.pl and this Doc: http://wxruby.rubyforge.org/doc/ I couldn''t find something usefull for it. Also del.icio.us has no intresting links. Do you know any good website or book about wxruby?
My problem at the moment is, I wanna test the TaskBarIcon on Gnome and so I did:
2004 Aug 06
3
1.0.3 in ACM soon
Hello Andrey,
Can you send me your compilated source code for pocket pc for test it?. Do you work with visual C++ embedded 3?.
Thanks and Regards.
Rodrigo.
----- Mensaje original -----
De: "Andrey Isaev"<Andrey_Isaev@penreader.com>
Env.: 10/12/03 7:33:47
Para: "owner-speex-dev@xiph.org"<owner-speex-dev@xiph.org>, "Rodrigo Parra
2004 Aug 06
5
1.0.3 in ACM soon
Hi Andrey,
May be that we don´t understand. I need to transform speex to pocket pc
platform. The Windows API is different to Pocket Pc API. Some IDEs that
help us to create code for pocket pc, for example, are Visual C++ 3.0
embedded or Visual Studio.Net. Christian will develop this work with
Visual C embedded.
If you can develop this work quickly or you can guide me step by step, i
would be very
2011 Mar 02
4
Contingency table in R
Hi,
I have a table in R with data I needed and need to create a contingency table out of it. The table I have so far looks like this:
Binger
r
DietType No Yes
Dangerous 15 12
Healthy 52 9
None 134 24
Unhealthy 72 23
These are the error messages that I keep getting whenever I try to get a contingency table. I'm not sure why it won't work
2004 Aug 06
2
1.0.3 in ACM soon
Hi Rodrigo,
I'm Fabio and i'm in your identical situation, i need Speex to run on
PocketPC
in real time mode for my tesis. I've to develop a sort of VoIP apllication
for pocketPC...
I recently discover speex (Only yesterday i joined this mailing list....)
and I'm doing many test using mostly VC++ 6.0
but only because i'm still undestandig speex...
I did many works with EVC++
2008 Jun 16
8
Vcpu allocation for a newly created domU
Hi all,
I am having confusion regarding the way a newly created domain is
allocated vcpu.
Initially during dom0 creation alloc_vcpu is called to create vcpu
structs for all the available cpu''s and assigned to dom0. But its not
the case for domU creation.
1. So how will dom0 relinquish/share vcpu to/with a newly created domU.
Does this happen as part of the shared_info page mapping??
2013 Nov 28
74
Remove :js responder
https://github.com/rails/rails/issues/12374#issuecomment-29446761
Here in discussion I proposed to deprecate JS responder because this
technique is insecure and not pragmatic way to transfer data.
It can be exploited in this
way http://homakov.blogspot.com/2013/05/do-not-use-rjs-like-techniques.html
i find this bug very often so i know what i''m talking about. With it
attacker can
2001 May 03
1
[PATCH]: Workaround a security leak on Windows
The attached patch should solve the following problem:
ssh-agent creates a temporary directory under /tmp with '600'
permissions. The actual socket file is created in that dir using
the default umask. That's no problem in U*X systems since nobody
but the owner of the directory can read the socket file.
Unfortunately, Windows has a user privilege called "Bypass traverse
2006 Feb 21
1
Russian RoR email-group announce
Hi, All!
There is russian email-group (already few month) about RubyOnRails:
http://groups.google.com/group/ror2ru
Thanks,
Ilya
--
Posted via http://www.ruby-forum.com/.
2011 Jul 25
3
[LLVMdev] New Type System Questions
So far I'm really liking the new type system -- I've been able to simplify
my code generator in a number of areas. And the IR is now vastly more
readable, both in the debugger (using dump()) and when printing modules via
llvm-dis. It's a tremendous improvement.
I do have a few comments / questions:
-- I think I may be misunderstanding how named structs are supposed to be
combined in
2008 Jun 24
3
Question related to Single-step execution and Emulation
Hi all,
I am trying to perform single-stepping and instruction emulation both in Xen-3.2.1. I am using the following approach:
First, I mark a guest page "not present" inside the shadow page table so that I could intercept any operation that involves this page. When the guest tries to access that page, it faults and control goes to Xen (sh_page_fault function). There, I emulate that
2014 Jan 17
1
Re: Libguestfs can't launch with one of the disk images in the RHEV cluster
----- Original Message -----
> From: "Richard W.M. Jones" <rjones@redhat.com>
> To: "Исаев Виталий Анатольевич" <isaev@fintech.ru>
> Cc: libguestfs@redhat.com
> Sent: Tuesday, January 14, 2014 6:42:23 PM
> Subject: Re: [Libguestfs] Libguestfs can't launch with one of the disk images in the RHEV cluster
>
> On Tue, Jan 14, 2014 at 02:57:35PM
2017 Sep 13
1
[3.11.2] Bricks disconnect from gluster with 0-transport: EPOLLERR
I ran into something like this in 3.10.4 and filed two bugs for it:
https://bugzilla.redhat.com/show_bug.cgi?id=1491059
https://bugzilla.redhat.com/show_bug.cgi?id=1491060
Please see the above bugs for full detail.
In summary, my issue was related to glusterd's pid handling of pid files
when is starts self-heal and bricks. The issues are:
a. brick pid file leaves stale pid and brick fails
2023 Mar 19
1
Is chain loading EFI apps not supported?
Greetings!
If I understand everything correctly, the last release of syslinux
supports UEFI, but it can't load another EFI application in this mode, so
practically only linux kernel can be bootloaded. Unfortunately, I have a
need to dualboot windows and linux with UEFI, and this holds me back from
using this amazing piece of software.
Have there since been any progress regarding this
2011 Jul 25
0
[LLVMdev] New Type System Questions
Hi Talin,
On Jul 25, 2011, at 1:59, Talin wrote:
> So far I'm really liking the new type system -- I've been able to simplify my code generator in a number of areas. And the IR is now vastly more readable, both in the debugger (using dump()) and when printing modules via llvm-dis. It's a tremendous improvement.
>
> I do have a few comments / questions:
>
> -- I think
2006 Apr 26
8
Newbie: Hide div I''ve just show using link_to_remote?
I''m using link_to_remote to show details for an item that''s clicked. I''d
like to hide the div with the next click, or alternatively have a "Hide"
link within my div.
What is the best way to accomplish this?
Here''s my existing code:
<% for task in @mytasks %>
<div class="rowFormat">
<%= link_to_remote(
2011 Jul 25
1
[LLVMdev] New Type System Questions
On Mon, Jul 25, 2011 at 6:35 AM, Garrison Venn <gvenn.cfe.dev at gmail.com>wrote:
> Hi Talin,
>
> On Jul 25, 2011, at 1:59, Talin wrote:
>
> > So far I'm really liking the new type system -- I've been able to
> simplify my code generator in a number of areas. And the IR is now vastly
> more readable, both in the debugger (using dump()) and when printing
2008 Jun 06
4
Query regarding x86_emulate_memop() function
Hi there,
I have a question regarding the functionality of x86_emulate_memop (Xen 3.1) or x86_emulate (Xen 3.2) function. This function gets called from sh_page_fault() function which is invoked when Xen receives a page fault.
Since I am not clear completely about the emulation operation performed by Xen, I have following questions with a below mentioned scenario?
1) Suppose I have a memory
2023 Mar 20
2
Is chain loading EFI apps not supported?
On 20 Mar 2023 at 0:00, marteg via Syslinux wrote:
>
> Greetings!
>
> If I understand everything correctly, the last release of syslinux
> supports UEFI, but it can't load another EFI application in this mode, so
> practically only linux kernel can be bootloaded. Unfortunately, I have a
> need to dualboot windows and linux with UEFI, and this holds me back from
>