Displaying 20 results from an estimated 116 matches for "linding".
Did you mean:
binding
2002 May 22
3
OpenSSH programming
Hello all,
is there any recent information on programming on how to add a new
authentication method into OpenSSH / OpenSSL ?!
Is there any other way, to add a new authentication method into openssh
(one-time passwords), apart from adding the functions into sshconnect.c
and sshconnect2.c
Particularly I'm interested in information on "struct Authctxt" in
sshconnect2 and sshuserauth2.
2011 Nov 08
2
match first consecutive list of capitalized words in string
Dear R-Helpers,
this is my first post ever to a mailing list, so please feel free to point out any missunderstandings on my side regarding the conventions of this mailing list.
My problem:
Assuming the following character vector is given:
names <- c("filia Maria", "vidua Joh Dirck Kleve (oo 02.02.1732)", "Bernardus Engelb Franciscus Linde j.u.Doktor referendarius
2014 Sep 30
2
Intel Fortran compiler returns a -1 TRUE value
I have access to a cluster on which I have been supplied with R 3.1.0 which
appears to have been built using the intel compiler tools.
The following minimal Fortran file:
subroutine truth(lind)
logical lind
lind = .TRUE.
end
Compiles thusly:
arcadia> R CMD SHLIB truth.f
ifort -fpic -O3 -xHOST -axCORE-AVX-I -fp-model precise -c truth.f -o
truth.o
ifort: command
2007 Mar 05
3
Rbind with data frames -- column names question
As part of my work, I am trying to append matrices onto data frames.
Naively I assumed that when rbinding a data.frame and matrix, the matrix
would be coerced and appended, keeping the names from the data frame.
Clearly, I am not fully understanding the process by which rbind works.
Example code:
> A<-data.frame(1,1,1); names(A)=letters[1:3] ; B<-matrix(0,2,3)
> rbind(A,B)
2014 Mar 03
1
reference classes, LAZY_DUPLICATE_OK, and external pointers
We (the lme4 authors) are having a problem with doing a proper deep
copy of a reference class object in recent versions of R-devel with
the LAZY_DUPLICATE_OK flag in src/main/bind.c enabled.
Apologies in advance for any improper terminology.
TL;DR Is there an elegant way to force non-lazy/deep copying in our
case? Is anyone else using reference classes with a field that is an
external pointer?
2006 Mar 16
0
(no subject)
YUP, this is the way that asterisk works. It is going to quelch all DTMF that goes out via a SIP gateway via asterisk.
I spent a long time working this through and it has to do with the way that asterisk deals with DTMF and the DSP.c module that
sits inband to the RTP/audio stream. There is a flag called DSP_DIGITMODE_NOQUELCH that is broken that might allow the inband
DTMF after answer to work
2023 Oct 30
2
Question about silos and Authentication policies
I was playing around again with Windows and when you add members to
silos, or remove them, it should not set/unset assigned silo on the user.
So I've got a new pull request in Draft state still where I remove that
functionality, as well as add some new commands to samba-tool user command.
It turned out to be easier to add sub commands to user, as edit user
wasn't quite what I thought
2011 Sep 02
1
Using capture.output within a function
Dear R-users
I'm running a maximum likelihood procedure using the spg package. I'd like
to save some output produced in each iteration to a file, but if I put the
capture.output() within the function I get the following message; Error in
spg(par = startval, fn = loglik, gr = NULL, method = 3, lower = lo, :
Failure in initial function evaluation!Error in -fn(par, ...) : invalid
argument
2007 Mar 21
1
mail looping
We are running Postfix 2.3.3 and Dovecot 1.0-RC27 on a Solaris 10 server.
We use the Dovecot LDA for local delivery. Problems arise with looping mail
whenever a user's .forward contains a reference to themselves. This most
frequently occurs when a user sets up a vacation since it then puts this in
their .forward file:
\username, "|/usr/bin/vacation username"
The vacation program
2011 Aug 17
14
Copy files from Centos Guest to Host
Is there any method to copy files from the guest to host? I use virbr
networking where the host and the guest have different static IPs.
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2011 Aug 17
14
Copy files from Centos Guest to Host
Is there any method to copy files from the guest to host? I use virbr
networking where the host and the guest have different static IPs.
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2007 Mar 27
3
odd behavior with Dovecot LDA
Okay, to convince myself that quota handling was working okay with
Dovecot 1.0-rc27 on Solaris 10, I tested sending a message to an
account that was purposely over-quota. The account in question had
a vacation message set up.
For the first test, there was no $HOME/.imap directory at all.
I received the vacation message, but the message which was supposed
to be delivered locally queued in Postfix
2006 Oct 17
4
Problem with rc10
I just upgraded our test server from rc6 to rc10...
ISSUE #1
I noticed that we no longer are getting two "From_" lines. However, the
one that was good (had the original sender e-mail address) is now gone.
The one with "dovecot.deliver" remains.
I attempted to add "-d test" to the mailbox_command line in main.cf as follows:
mailbox_command =
2023 Oct 27
1
Question about silos and Authentication policies
Am 27.10.23 um 02:32 schrieb Rob van der Linde via samba:
> The missing functionality is --silo and --policy on modify user, and
> probably also create user commands.
That's exacly right, that's also the way Windows is handling this.
2006 Oct 26
2
www.dovecot.org misconfigured?
I am having difficulting getting to www.dovecot.org and wiki.dovecot.org.
My browser tells me it can't find them. Anyone know what's up?
--
Steven F. Siirila Office: Lind Hall, Room 130B
Internet Services E-mail: sfs at umn.edu
Office of Information Technology Voice: (612) 626-0244
University of Minnesota Fax: (612) 626-7593
2001 Dec 18
0
[Bug 42] sh: scp: not found
http://bugzilla.mindrot.org/show_bug.cgi?id=42
hampus.lind at rps.police.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From hampus.lind at rps.police.se
2011 Oct 13
2
write.csv naming file after function argument
Dear R-users,
I'm writing a program that constructs a dataset. I wish to save the dataset
to a file.
Here's a very simple example of what I'm trying to do
function(x=peter){
y <- x/2
write.csv(y, file = "...\x")
}
The problem is that I want to name the dataset as whatever the name of the
input is. In this case peter.
How do I do this?
Thank you in advance.
Kristian
2024 Feb 22
1
No suspend after update
On Tue, Feb 06, 2024 at 05:59:15PM -0500, Michael B Allen wrote:
> On Fri, Jan 12, 2024 at 10:57?PM Michael B Allen <ioplex at gmail.com> wrote:
> > Done. Thanks. Hopefully whatever the bug is will get worked out at
> > some point ...
>
> Just FYI
>
> I updated to 5.14.0-410. The login screen appeared for 2 seconds and
> then it dropped to console with:
>
2007 Jan 05
2
Dovecot rc15 crash in mbox-sync-update.c
Here is another crash we've been seeing recently in rc15 on Solaris 10.
(gdb) bt full
#0 0xff1c12a4 in ?? ()
No symbol table info available.
#1 0xff140040 in ?? ()
No symbol table info available.
#2 0x000786a8 in t_buffer_alloc (size=688976) at data-stack.c:346
__PRETTY_FUNCTION__ = "file %s: line %"
#3 0x00078190 in t_pop () at data-stack.c:149
frame_block = (struct
2007 Jan 02
1
Dovecot 1.0-rc15 on Solaris 10
We are running Dovecot 1.0-rc15 on Solaris 10 and are starting to ramp up
our user count and ran into a file descriptor limit:
Jan 1 19:38:54 <hostname> dovecot: IMAP(username): Newly created index file is corrupted: /home/username/.imap/foldername/dovecot.index.tmp
Jan 1 19:38:54 <hostname> dovecot: IMAP(username): file mail-index.c: line 1806 (mail_index_move_to_memory): assertion