similar to: hints through a Local channel

Displaying 12 results from an estimated 12 matches similar to: "hints through a Local channel"

2010 Feb 26
2
Problem accessing sub-methods of functions stored in a vector
Hi folks, I am having trouble accessing sub-functions when the main function is stored in an array. For example, the following test code works fine: fcns = c(abs, sqrt) fcns[[1]](-2) fcns[[2]](2) However, when I try to access sub-functions declared within list() in a function, this only works directly. When I try to access these within an array only the first declared sub-function is run.
2005 Jul 27
3
reference counting in ssh-agent?
Hi, In a machine that I regularly use one console and remotely I have the line: eval `ssh-agent` In my .login, as per the ssh-agent(1) man page. Problem: when I log out, the ssh-agent process persists which is the correct behavior in some cases, but not in others. This means that periodically I have to kill off hundreds of ssh-agent processes as they are taking up a substantial amount of my
2018 Apr 09
2
Issue with shrink wrapping
Hello, So, I have this testcase: void f(int n, int x[]) { if (n < 0) return; int a[n]; for (int i = 0; i < n; i++) a[i] = x[n - i - 1]; for (int i = 0; i < n; i++) x[i] = a[i] + 1; } that, compiled with -O1/-Os for AArch64 and X86, generates machine code, which fails to properly restore the stack pointer upon function return.
2018 Apr 10
0
Issue with shrink wrapping
Hello Momchil, (CC’ing more people that could correct me if I’m wrong) Thanks for looking into this. More answers below: > On 9 Apr 2018, at 17:57, Momchil Velikov via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Hello, > > So, I have this testcase: > > void f(int n, int x[]) { > if (n < 0) > return; > > int a[n]; >
2005 Jul 20
6
GSM gateway hardware
Hi All, I am looking for a GSM VoIP gateway for use with Asterisk. I have come across VoiceBlue by 2N but it's price is beyond my reach. Are there any other alternatives out there? I've scanned across the mail achieves for an answer to this without much success, if the question has already been answered kindly point me to the resource. Allan.
2006 Jul 13
4
Update
Folks- I just commited another revision of the plugin. Nothing huge in this update but some extra features. Acl lists are now configurable in the config file. So you will want to blow away and recreate your config file again. Thanks to Georg Friedrich for this. And I applied Gunter Ladwig''s patch for singleton worker classes. These are workers that only have one instance of
2005 Sep 13
2
wbinfo returns Error looking up domain users
Hi all, We have the following setup : PDC (samba/ldap) BDC's this was all originally setup on 2.0.9 and was working fine. We upgraded to 2.0.20 a few days now wbinfo doens't work. We use usrmgr.exe for admin and no users show up and only the BULTIN groups show up. zeus ~ # wbinfo -u Error looking up domain users zeus ~ # wbinfo -g BUILTIN/Print Operators BUILTIN/Backup Operators
2000 May 19
16
Samba authentication
Hi, Could someone confirm that the following is NOT possible with Samba: -Run Samba on a Solaris box WITH NO SMBPASSWD -Have the users log in on Windows NT, using the Novell NDS client, and using ENCRYPTION -Have the users authenticated by Samba through NDS (preferred) or NIS. My understanding is that if Samba receives the password encrypted, it has no choice but to use a local smbpasswd (and
2004 Nov 19
4
Trying to find a bottleneck
I'm trying to get my network setup as streamlined as possible. I ran a brain-dead-simple speed test of Samba and I'm very confused by the results. Here's my setup: Fast new WinXP Pro machine NetGear GA311 gigabit ethernet ^ | dedicated gigabit ethernet line (no switch) v RTL8169 gigabit ethernet Relatively fast new Debian Linux machine I set up ramdisks on both
2010 Apr 01
4
POST-only logic in protect_from_forgery considered harmful?
Hi folks, I am just getting into rails again after a multi-year stint of mod_perl jobs, which might grant me some newbie-indemnity for the time being - but I''ve found an issue I think warrants discussion. As discussed here - http://api.rubyonrails.org/classes/ActionController/RequestForgeryProtection/ClassMethods.html - the CSRF protection feature does not kick in for GET requests. This
2008 Oct 11
6
Sweave-LaTEX question
Hi: I am working on a publication and I have heard about LaTEX but I haven't actually tried to learn about it until today. I've found a few examples but I can't actually make them work properly. I have a couple of questions: Does LATEX have to be installed on your computer? How does the xtable package and Sweave work together? How can I make the code below create a table as pdf file?
2008 Jan 30
4
btrfs and git-reflog
I was just playing with git 1.5.3.8 and btrfs 0.11, and I noticed something odd. If I prepare a very simple repository: $ mkdir foo $ cd foo $ git init Initialized empty Git repository in .git/ $ echo hi > blort $ git add . $ git commit -m create Created initial commit 4ae9415: create 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 blort and then