Displaying 20 results from an estimated 88 matches for "harp".
Did you mean:
hard
2006 Nov 04
0
open4-0.5.1
...condition that could cause thread deadlock. sorry bout that folks.
INSTALL
~> gem install open4
SAMPLES
----------------------------------------------------------------------------
simple usage
----------------------------------------------------------------------------
harp: > cat sample/simple.rb
require "open4"
pid, stdin, stdout, stderr = Open4::popen4 "sh"
stdin.puts "echo 42.out"
stdin.puts "echo 42.err 1>&2"
stdin.close
ignored, status = Process::waitpid2 pid
puts "pid...
2006 Aug 07
0
open4-0.5.0
...@alum.mit.edu> for catching this.
0.0.0 :
- initial version
INSTALL
~> gem install open4
SAMPLES
----------------------------------------------------------------------------
simple usage
----------------------------------------------------------------------------
harp: > cat sample/simple.rb
require "open4"
pid, stdin, stdout, stderr = Open4::popen4 "sh"
stdin.puts "echo 42.out"
stdin.puts "echo 42.err 1>&2"
stdin.close
ignored, status = Process::waitpid2 pid
puts "pid...
2006 Apr 19
0
open4-0.3.0
...@alum.mit.edu> for catching this.
0.0.0 :
- initial version
INSTALL
~> gem install open4
SAMPLES
----------------------------------------------------------------------------
simple usage
----------------------------------------------------------------------------
harp: > cat sample/simple.rb
require "open4"
pid, stdin, stdout, stderr = Open4::popen4 "sh"
stdin.puts "echo 42.out"
stdin.puts "echo 42.err 1>&2"
stdin.close
ignored, status = Process::waitpid2 pid
puts "pid...
2005 Feb 13
2
Problems with MySQL/PAM authentication
Hi,
I'm using (or trying to at least) a combination of PAM/passwd and MySQL
authentication:
auth vmail {
mechanisms = plain
userdb = sql /etc/dovecot/dovecot-sql.conf
passdb = sql /etc/dovecot/dovecot-sql.conf
user = root
}
auth system {
mechanisms = plain
userdb = passwd
passdb = pam imap
user = root
}
MySQL
2003 Oct 27
2
problem using do.call and substitute for predict.glm using poly()
...d Y's are being
substituted:
(n and i would be supplied by for loops (see above) so I have
substituted two values below as if they had been in the loop)
> do.call("substitute", list(pAsgn, list(n = namX[1], i =
namY[1], X = as.name(n), Y = as.name(i))))
predList[["Acr.harp"]][["Alk1"]] <- try(predict(resList$Unk.nown$NCR,
newdata = data.frame(X = predData$NCR), type = "response",
se = TRUE)) ^^^^^^ problem here
If i supply the values I want for one of the runs, such as:
> predList[[1]][[1]] <- try(predict(resList$...
2006 Aug 17
3
file_column plugin + rails 1.1.6
Hello,
I need to install file_column plugin but I got an error message.
This is the command I use:
./script/plugin install
http://opensvn.csie.org/rails_file_column/plugins/file_column/trunk
This is the error:
Cannot find gem for Rails =1.1.4:
Install the missing gem with ''gem install -v=1.1.4 rails'', or
change environment.rb to define RAILS_GEM_VERSION with your
2018 Apr 27
1
Introducing HardCloud @ FCCM 2018
Hi,
HardCloud (www.hardcloud.org) is an extension to the OpenMP 4.X standard
that seeks to ease the task of offloading IP-cores to FPGA accelerators in
CPU-FPGA architectures. This is achieved by two new clauses [use] and
[module] shown in the example below:
#pragma omp target device(HARP | HARPSIM | Catapult) map(to: X) map(from: Y)
#pragma omp parallel for use(hrw) module(loopback) check
for(int i = 0; i < n; i++) {
Y[i] = X[i];
}
Clause use(hrw) allows the computation to be performed by a pre-synthesized
hardware module (loopback) instead of by the C code following the
a...
2006 Aug 09
7
changing find method
...y do
def find_published
self.find(:all, :conditons => ....)
end
and change all of my find methods to @page.find_published...?
am i going down the wrong train of thought? where/how do i change a
class method to my own needs without ruining the initial method...?
?
thanks for any reference,
harp
--
Posted via http://www.ruby-forum.com/.
2016 Jul 16
3
RFC: Strong GC References in LLVM
>
>
> LLVM's design decision is one where everything has to explicitly care
> about implicit early exits to get correct answers (and not to harp too
> much, but "not everything does", years later). If they don't, they will
> get wrong answers.
>
>
So, ironically, while looking at this, i noticed it turns out LLVM's PRE in
GVN is another place that does not do this correctly either.
It will insert and hoist lo...
2006 Jul 02
18
JOIN conditions
Hi,
how can I get Rails to generate SQL queries with conditions in the JOIN clause?
What I would want is:
SELECT * FROM people p
LEFT OUTER JOIN jobs j (p.job_id = j.id AND j.salary > 9999999)
I tried
People.find(:all, :include => ''jobs'', :conditions => ''jobs.salary > 9999999'')
but that generates
SELECT * FROM people p
LEFT OUTER
2006 Aug 13
5
problems with file_column plugin
1) installation is not as smooth as some other plug-ins. If you follow
the instructions on
http://www.kanthak.net/opensource/file_column/
it makes a directory called trunk instead of file_column. You have to
manually rename it to file_column. I guess this is a minor annoyance but
it gives me the feeling that things aren''t quite like other plugins.
2) I get this error: undefined
2007 Jul 02
0
[LLVMdev] Top Level Stuff
...lvm-gcc,
new-cfe, and soforth). It's not nearly so clever, but it might allow
initial usage much closer to the 'configure; make; make install'
convention.
Also, there's only enough info on the command-line there to do a
trunk checkout. What about branches and tags? Sorry to harp on these,
but my experience with Subversion is that it's important to
accommodate them. In one sense, the simplest way to do so is to make
the project ignorant of the source control system. That generality is
part of the appeal about using one giant trunk for everything. It's
also...
2019 Jan 24
5
`getent passwd` not working with ad backend
...uch as `getent passwd`, authentication, etc.
I tried adding multiple Unix groups and users following instructions on Samba Wiki, but the result it always the same. I've been trying to sort it out for a couple of weeks and its now driving me insane.
Any help would be appreciated!
Kind regards,
Harp
2006 Jul 11
1
smpt server
...ALL/or CONFIGURE in order to see the email
physicaly being sent out to my email box. ( and open and read it ! )
is there some rails smtp server install/plugin (such as a webrick
extension?) or do i have to do this some other way (and then, how do i
do this?)
i thank you greatly for your help,
harp
--
Posted via http://www.ruby-forum.com/.
2006 Jul 11
4
smtp server
...ALL/or CONFIGURE in order to see the email
physicaly being sent out to my email box. ( and open and read it ! )
is there some rails smtp server install/plugin (such as a webrick
extension?) or do i have to do this some other way (and then, how do i
do this?)
i thank you greatly for your help,
harp
--
Posted via http://www.ruby-forum.com/.
2019 Jan 15
4
SSH SSO without keytab file
...start the ssh server and try to SSO login.
If its a AD server this should work.
Yes, you dont get home dir etc, end up in / after login, but lets check if this works.
Greetz,
Louis
> -----Oorspronkelijk bericht-----
> Van: samba [mailto:samba-bounces at lists.samba.org] Namens
> Harpoon via samba
> Verzonden: dinsdag 15 januari 2019 9:45
> Aan: samba at lists.samba.org
> Onderwerp: [Samba] SSH SSO without keytab file
>
> Hi all,
>
> I've setup a SambaAD server. I joined two Linux test hosts, a
> Windows test host and an SSH server to the domain. H...
2019 Jan 18
3
SSH SSO without keytab file
I actually spent the entire last day getting 'ad' backend to work.
Adding 'idmap config SAMDOM : backend = ad' and related lines in the client's smb.conf results in `getent passwd`
...
Use : getent passwd username
Check if wbinfo -u works also.
As tip, if you try these.
id username
getent passwd username
wbinfo -u | grep username
If all work and show your usename,
2019 Jan 24
1
`getent passwd` not working with ad backend
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, January 24, 2019 9:33 AM, Rowland Penny via samba <samba at lists.samba.org> wrote:
> On Thu, 24 Jan 2019 08:57:21 +0000
> Harpoon via samba samba at lists.samba.org wrote:
>
> > Hi all,
> > I've been reading and it seems like ad backend has many features that
> > I'd like to use. However, despite browsing many forums and docs, I am
> > still unable to get domain users list using `getent p...
2006 Aug 28
1
Affiliation Reporting Standards. was: Re: reshape scaling with large numbers of times/rows
...e, in
the context of a mailing list question (as opposed to a personal
e-mail), the person's "affiliation" does not strike me as relevant
(although Professor Ripley is free to use whatever criteria he likes
for deciding which questions he answers).
Comment: Does it make much sense to harp on a "commercial" versus
non-commercial motivation in the context of an R mailing list? I think
it makes no sense. I (like many other R users) have both commercial
and university affiliations. Are mailing list participants more
willing to answer my questions if I sign them:
--
David Kan...
2016 Jul 16
2
RFC: Strong GC References in LLVM
...ew Trick <atrick at apple.com> wrote:
>
> On Jul 15, 2016, at 5:24 PM, Daniel Berlin <dberlin at dberlin.org> wrote:
>
>
>> LLVM's design decision is one where everything has to explicitly care
>> about implicit early exits to get correct answers (and not to harp too
>> much, but "not everything does", years later). If they don't, they will
>> get wrong answers.
>>
>>
> So, ironically, while looking at this, i noticed it turns out LLVM's PRE
> in GVN is another place that does not do this correctly either.
&g...