search for: cise

Displaying 20 results from an estimated 67 matches for "cise".

Did you mean: case
2012 Mar 23
0
CFP: Special Issue on Cloud Computing in Science & Engineering, in the the IEEE Computing in Science & Engineering (CiSE)
*Call for Papers* *IEEE Computing in Science & Engineering* ** *Special Issue on Cloud Computing in Science & Engineering* http://www.computer.org/portal/web/computingnow/cise ** *Submissions due: November 04, 2012* *Estimated Publication date: July/August, 2013* Cloud computing has emerged as a dominant paradigm that has been widely adopted by enterprises. Clouds provide on-demand access to computing utilities, an abstraction of unlimited computing resources, and s...
2012 Mar 23
0
CFP: Special Issue on Cloud Computing in Science & Engineering, in the the IEEE Computing in Science & Engineering (CiSE)
*Call for Papers* *IEEE Computing in Science & Engineering* ** *Special Issue on Cloud Computing in Science & Engineering* http://www.computer.org/portal/web/computingnow/cise ** *Submissions due: November 04, 2012* *Estimated Publication date: July/August, 2013* Cloud computing has emerged as a dominant paradigm that has been widely adopted by enterprises. Clouds provide on-demand access to computing utilities, an abstraction of unlimited computing resources, and s...
2003 May 01
2
Kerberos password auth/expiry kbdint patch
...ris and FreeBSD, but I haven't yet tested it on any other platforms Possible additions: - a Kerberos5ViaKbdInt option Questions, comments, or improvements welcome. ---------------------------------------------------------------------- | Jim Hranicky, Senior SysAdmin UF/CISE Department | | E314D CSE Building Phone (352) 392-1499 | | jfh at cise.ufl.edu http://www.cise.ufl.edu/~jfh | ---------------------------------------------------------------------- -------------- next part -------------- An embedded and charset-unspec...
2006 Jul 02
1
sparse matrix tools
...ment unsymmetrical sparse arrays. So far, so good, but if I find I need more speed or functionality, how hard would it be to utilize other sparse matrix toolsets from within R, say MUMPS, PARDISO or UMFPACK, that do not have explicit R interfaces? More information on these is available here www.cise.ufl.edu/research/sparse/umfpack/ www.computational.unibas.ch/cs/scicomp/software/pardiso www.enseeiht.fr/lima/apo/MUMPS/ and in these reviews ftp://ftp.numerical.rl.ac.uk/pub/reports/ghsNAGIR20051r1.pdf http://www.cise.ufl.edu/research/sparse/codes/ neither of which reviewed the R M...
2003 Sep 19
0
Patch to restrict other auth methods from allowing root password authentication
...39;t logged in this case: logit("ROOT LOGIN REFUSED FROM %.200s", get_remote_ipaddr()); If no one has any problems with the patch I'll open a bugzilla PR. ---------------------------------------------------------------------- | Jim Hranicky, Senior SysAdmin UF/CISE Department | | E314D CSE Building Phone (352) 392-1499 | | jfh at cise.ufl.edu http://www.cise.ufl.edu/~jfh | ---------------------------------------------------------------------- About politics: Don'...
2006 Nov 01
0
No subject
...go, either, I'm not sure. Ultimately, I'm simply looking for any pointers as to the best way to proceed, even if it's "read the code" :-> Thanks, ---------------------------------------------------------------------- | Jim Hranicky, Senior SysAdmin UF/CISE Department | | E314D CSE Building Phone (352) 392-1499 | | jfh at cise.ufl.edu http://www.cise.ufl.edu/~jfh | ---------------------------------------------------------------------- "Given a choice between a complex, difficult-to-understand, disc...
2002 Oct 30
1
upload to rsync server syntax problems
...zv --delete srcdir user@remote.machine.com:12923::blah Both of these query me for my system password, but doesn't seem to do anything, and more importantly, is not using the server that is running on that machine. Any info on how to do this would be appreciated. thomas -- N. Thomas nthomas@cise.ufl.edu Etiamsi occiderit me, in ipso sperabo
2006 Mar 23
1
Samba PDC/Windows BDC domain sync
...o what I want. Right now it looks like the best thing to do is to hack up a sync tool for WinNT <-> OpenLDAP to keep the passwords in sync. Thanks for any information, ---------------------------------------------------------------------- | Jim Hranicky, Senior SysAdmin UF/CISE Department | | E314D CSE Building Phone (352) 392-1499 | | jfh@cise.ufl.edu http://www.cise.ufl.edu/~jfh | ----------------------------------------------------------------------
2003 Apr 22
2
Kerberos password change patch
...vsep is a bit difficult to debug, but I'll keep plugging away if need be. (Note, this patch is against 3.5p1, but the same problem happens when 3.6p1 is patched with it). ---------------------------------------------------------------------- | Jim Hranicky, Senior SysAdmin UF/CISE Department | | E314D CSE Building Phone (352) 392-1499 | | jfh at cise.ufl.edu http://www.cise.ufl.edu/~jfh | ---------------------------------------------------------------------- "Given a choice between a complex, difficult-to-understand, disc...
2006 Mar 01
1
Patch to src/auth/mech-gssapi.c
This bug causes a segfault when compiled against heimdal, but not MIT krb5. Either way, I think this code is correct. HTH. ---------------------------------------------------------------------- | Jim Hranicky, Senior SysAdmin UF/CISE Department | | E314D CSE Building Phone (352) 392-1499 | | jfh at cise.ufl.edu http://www.cise.ufl.edu/~jfh | ---------------------------------------------------------------------- --- src/auth/mech-gssapi.c.orig 2006-03-01 14:21:40.000000000 -0500 +...
2003 Sep 22
4
[Bug 701] With 'PermitRootPassword without-password' set, root w/pass can still log in with a using 'keyboard-int/pam'
...int/pam' Product: Portable OpenSSH Version: 3.7.1p1 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: sshd AssignedTo: openssh-bugs at mindrot.org ReportedBy: jfh at cise.ufl.edu When the directive PermitRootLogin is specified as 'without-password', root can still log in with a password using the 'keyboard-interactive/pam' method and possibly others. The fix is to permit only certain methods to allow root logins, and deny the rest. The patch I wi...
2014 Jun 17
2
[PATCH 01/11] qspinlock: A simple generic 4-byte queue spinlock
> + * The basic principle of a queue-based spinlock can best be understood > + * by studying a classic queue-based spinlock implementation called the > + * MCS lock. The paper below provides a good description for this kind > + * of lock. > + * > + * http://www.cise.ufl.edu/tr/DOC/REP-1992-71.pdf > + * > + * This queue spinlock implementation is based on the MCS lock, however to make > + * it fit the 4 bytes we assume spinlock_t to be, and preserve its existing > + * API, we must modify it some. > + * > + * In particular; where the traditiona...
2014 Jun 17
2
[PATCH 01/11] qspinlock: A simple generic 4-byte queue spinlock
> + * The basic principle of a queue-based spinlock can best be understood > + * by studying a classic queue-based spinlock implementation called the > + * MCS lock. The paper below provides a good description for this kind > + * of lock. > + * > + * http://www.cise.ufl.edu/tr/DOC/REP-1992-71.pdf > + * > + * This queue spinlock implementation is based on the MCS lock, however to make > + * it fit the 4 bytes we assume spinlock_t to be, and preserve its existing > + * API, we must modify it some. > + * > + * In particular; where the traditiona...
2003 May 15
2
[Bug 568] Kerberos password auth/expiry kbdint patch
...ch Product: Portable OpenSSH Version: -current Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P4 Component: sshd AssignedTo: openssh-unix-dev at mindrot.org ReportedBy: jfh at cise.ufl.edu This patch adds Kerberos V support via a keyboard interactive device, giving support for KrbV password expiration as well as displaying messages received from the kerberos libraries. ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching...
2010 Oct 16
1
Rmpfr question
Hi: I'm trying to reproduce an arbitrary precision constant from 'Why and How to Use Arbitrary Precision' (Ghazi et al., COMPUTING IN SCIENCE & ENGINEERING May/June 2010; http://perso.ens-lyon.fr/philippe.theveny/cise.pdf): d = 173746a + 94228b ? 78487c where: a = sin(1022), b = log(17.1), and c = exp(0.42). Ghazi et al. report: d = ?1.341818958e?12 whit IEEE-754 quadruple precision (113 bits). I have tried to reproduce such result using the Rmpfr library using: a <- mpfr(sin(10^22), 230) b <- mpfr(l...
2004 Jan 29
3
Developmental version of Matrix package for R-1.9.0
...ll appear in R-1.9.0. This version marks a major redesign of the Matrix package to use S4 classes and methods and to incorporate sparse matrix manipulations using routines from TAUCS (http://www.tau.ac.il/~stoledo/taucs/), Metis (http://www-users.cs.umn.edu/~karypis/metis/) and UMFPACK (http://www.cise.ufl.edu/research/sparse/umfpack). Although this package is very much a work in progress and the documentation is, shall we say, sketchy, there are two vignettes included with the package. One of these illustrates the performance of different ways of performing least squares calculations, using an...
2003 Mar 20
4
Call for testing for 3.6: password expiry?
I have tried this patch (against 3.5p1) and would very much like it to be in the OpenSSH 3.6p1 release, if possible: http://bugzilla.mindrot.org/show_bug.cgi?id=14 On that note, I'd like the Sun BSM patch to be included also, if possible. I have it working applied to 3.5p1: http://bugzilla.mindrot.org/show_bug.cgi?id=125 In fact, both patches work together, apparently. If I have any
2005 Jul 06
0
I was mistaken about Areski: he does relply to mails and help people.
Cher Areski, Je m'excuse si je me suis tromp? sur vos intentions. Cependant j'aimerais souligner que je ne suis pas le seul a avoir trouv? l'installation de votre application un peu trop compliqu?e et les instructions du "Idiots Guide" impr?cises. Il faut dire que Linux n'est dej? pas facile pour un ancien de Microsoft comme moi. Par cons?quent lorsque les instructions ne sont incorectes et que malgr? 2 jours d'effort je n'y arrive pas, je suis d?courag?. Je vous demande des excuses car il me semble que vous prenez vraiment...
2014 Jun 23
0
[PATCH 01/11] qspinlock: A simple generic 4-byte queue spinlock
...+ * The basic principle of a queue-based spinlock can best be understood > > + * by studying a classic queue-based spinlock implementation called the > > + * MCS lock. The paper below provides a good description for this kind > > + * of lock. > > + * > > + * http://www.cise.ufl.edu/tr/DOC/REP-1992-71.pdf > > + * > > + * This queue spinlock implementation is based on the MCS lock, however to make > > + * it fit the 4 bytes we assume spinlock_t to be, and preserve its existing > > + * API, we must modify it some. > > + * > > + * In pa...
2004 Mar 30
6
[Bug 701] With 'PermitRootPassword without-password' set, root w/pass can still log in with a using 'keyboard-int/pam'
http://bugzilla.mindrot.org/show_bug.cgi?id=701 dtucker at zip.com.au changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |iand at ekit-inc.com ------- Additional Comments From dtucker at zip.com.au 2004-03-30 12:00 ------- *** Bug 713 has been marked as a