search for: lieven

Displaying 20 results from an estimated 29 matches for "lieven".

Did you mean: leven
2004 Apr 29
0
REofRE: password change on the domain password server using clienttools
Hi Lieven Thanks for advise ! the getent passwd command shows me all the users of the 2k domain in this format : DOMAIN2K+user:x:10000:10026::/home/NetBiosName/user:/bin/bash I think that's correct. But do you think I got to use nss pam or something like that ? I just can't login with a 2000 user...
2005 Jan 20
2
Excel files & file modification time
Hi everyone, I have a problem on samba running on RHEL 3 kernel 2.4.21 with RHEL 3 samba packages - samba-3.0.7-1.3E.1. The problem is, that when people open excel files (with office 97 version of excel) the file modification time is changed (even if the file is only opened and excel closed without saving). This same problem does not occur on the [homes] share (in every test untill now it never
2007 Dec 12
2
discrepancy between periodogram implementations ? per and spec.pgram
...above the one from per). Is there some explanation for this ? Is the one from spec.pgram the better one as suggested in the documentation of per {longmemo}? Finally how are these related to an estimate of the spectral density obtained from spec.arima ? Many thanks for help and clarification. Lieven Desmet Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm
2005 Jan 19
1
Problems with smbpasswd: any local changes are discarted after connection request
...rver.c:exit_server(577) Closing connections [2005/01/19 18:05:32, 3] smbd/connection.c:yield_connection(69) Yielding connection to [2005/01/19 18:05:32, 3] smbd/server.c:exit_server(620) Server exit (normal exit) -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- Lieven Van Acker e-mail: Lieven.VanAcker@UGent.be Directie ICT, Afdeling Infrastructuur Groep Systemen tel: +32 9 264 4732 Universiteit Gent fax: +32 9 264 4994 Krijgslaan 281, gebouw S9, 9000 Gent,...
2005 Sep 18
2
Maildir quota's
...ot.org/patches/1.0/quota.tar.gz supposed to work with maildir quota's for virtual mailboxes? Using it with dovecot-lda (cvs) results in DSN Your message was automatically rejected by Sieve, a mail filtering language. The following reason was given: Internal quota calculation error Thanks, Lieven -------------- next part -------------- A non-text attachment was scrubbed... Name: lieven.vanacker.vcf Type: text/x-vcard Size: 376 bytes Desc: not available URL: <http://dovecot.org/pipermail/dovecot/attachments/20050918/e543407b/attachment.vcf>
2004 Nov 18
2
how to rewrite this without a loop ?
...= 0..29) ) </code> Greetings Stijn. -- ========================================================================== Dept. of Applied Mathematics and Computer Science, University of Ghent Krijgslaan 281 - S9, B - 9000 Ghent, Belgium Phone: +32-9-264.48.91, Fax: +32-9-264.49.95 E-mail: Stijn.Lievens at ugent.be, URL: http://allserv.ugent.be/~slievens/
2006 Jan 04
5
help with link_to_if, I can''t make it work...
For the life of me I can''t get it to work. Here is an example of my syntax. I''m trying to make comment.name a link to comment.web_site only if there is a comment.web_site. Can someone please help? <%= link_to_if(comment.web_site.length > 0, comment.name, comment.web_site {"class" => "comment_by"}) %> -- Posted via
2005 Dec 15
6
Navigation menu
I have a navigation menu that contains a link per controller in my application. This menu is the same for all controllers, but I want this behaviour: <a>Users</a> <span>Statistics</span> and <span>Users</span> <a>Statistics</a> depending on the page you''re currently on. I''ve put a <render :partial =>
2005 Sep 18
1
auth-master socket access
...lda (cvs). Is there any solution to the /var/run/dovecot/auth-master access restrictions, prohibiting the user running dovecot-deliver from communicating with the master (aside from the dirty and unsafe hack to reset the permissions of the /var/run/dovecot dir after starting dovecot)? Thanks, Lieven
2006 Jan 22
2
Rails and Apache: Error
I''ve done my development using WEBrick, and now I want to put my application on a server that uses Apache. (not with fcgi) I think I''ve done everything like I''m supposed to, but when surfing to my site I get: Application error Rails application failed to start properly" In /var/log/apache/error_log, I get this error:
2006 Jan 21
9
Where to put method
I''ve got following code in GenresHelper.rb def album_list(genre) albums = genre.albums.sort list = albums.collect { |album| link = link_to album.title, :controller => ''albums'', :action => ''show'',
2017 Nov 16
2
Re: [Qemu-devel] Effect of qemu-img convert -m and -W options
Am 16.11.2017 um 15:47 schrieb Stefan Hajnoczi: > On Wed, Nov 15, 2017 at 11:52:46AM +0000, Richard W.M. Jones wrote: >> [CC to qemu-devel since I'm obviously doing something wrong here, >> I'm just not sure what.] >> >> I was getting ready to add multiple threads to ‘qemu-img convert’ (the >> longest part of v2v conversions) when I noticed that it had them
2016 Jun 07
3
PACT-2016 ACM Student Research Competition (SRC)
...ontent, however, can be included in a future submission to other conferences or journals. SELECTION COMMITTEE Chair: Erik Altman, IBM T.J. Watson Research Center Committee Members: Christoph Dubach, University of Edinburgh Benoit Dupont de Dinechin, Kalray Kemal Ebcioglu, Global Supercomputing Lieven Eeckhout, University of Ghent R. Govindarajan, Indian Institute of Science Boris Grot, University of Edinburgh Christoph Kessler, Linkoping University Dorit Nuzman, Intel Rodric Rabbah, IBM Ronny Ronen, Intel Xipeng Shen, North Carolina State University Gabriel M. Silberman, Dell Research Zehra Sur...
2017 Nov 16
0
Re: [Qemu-devel] Effect of qemu-img convert -m and -W options
On Thu, Nov 16, 2017 at 03:51:29PM +0100, Peter Lieven wrote: > Afaik all writes to the same QCOW2 serialize because of the s->lock that > is held during the write. So its not suprising that there is no benefit from > mutliple threads as long as reading from the RAW file involves no delay. > Which is likely due to readahead of the OS. I...
2006 Jan 03
1
Passing parameters with link_to
I have following code in my controller: class AlbumsController < ApplicationController def list_by_year(year) @album_pages @albums = paginate :albums, { :per_page => 10, :conditions => ["year = ?", year] } render :action => ''list'' end end Now I want to make a link to the list_by_year action in
2008 Aug 27
1
R for reliability engineering?
Hello, I was wondering whether anyone's using R for reliability (RAMS/LCC) engineering? Sincerely, Wolfgang Keller
2011 Feb 09
1
[PATCH] virtio-net: add schedule check to napi_enable call in refill_work
...rashes making VM guest unusable. Testcases: 1) Sergey Svishchev reports that servers that run java webapps with high java heap usage (especially when heap size is close to physical memory size) helps trigger one of aforementioned bugs. Unfortunately, I don't have a simple test case. 2) Peter Lieven reports that his binary NNTP newsfeed test servers crash without this patch. 3) Bruce Rogers of Novell has asked for this patch to be integrated but the request was mysteriously ignored. Is is purported that this patch is being distributed with SLES. 4) I can crash 2.6.32 and 2.6.38-rc4 by simpl...
2011 Feb 09
1
[PATCH] virtio-net: add schedule check to napi_enable call in refill_work
...rashes making VM guest unusable. Testcases: 1) Sergey Svishchev reports that servers that run java webapps with high java heap usage (especially when heap size is close to physical memory size) helps trigger one of aforementioned bugs. Unfortunately, I don't have a simple test case. 2) Peter Lieven reports that his binary NNTP newsfeed test servers crash without this patch. 3) Bruce Rogers of Novell has asked for this patch to be integrated but the request was mysteriously ignored. Is is purported that this patch is being distributed with SLES. 4) I can crash 2.6.32 and 2.6.38-rc4 by simpl...
2010 Jul 01
0
[LLVMdev] CFP (related to compilers): CGO 2011
...-------- General Chair Olivier Temam, INRIA Program Co-Chairs Carol Eidt, Microsoft Michael O'Boyle, University of Edinburgh Program Committee Vas Bala, IBM Francois Bodin, CAPS Enterprise and IRISA David Chase, Sun Anton Chernoff, AMD Jack Davidson, University of Virginia Lieven Eeckhout, Ghent University Grigori Fursin, EXATEC LAB, France Bjorn Franke, University of Edinburgh David Gregg, Trinity College, Dublin Thomas Gross, ETH Zurich Christophe Guillon, STMicroelectronics Rajiv Gupta, UC Riverside Anne Holler, VMWare Wei Hsu, University of Minnesota R...
2010 Dec 31
1
[LLVMdev] CFP related to compilers: SMART 2011 (co-located with CGO 2011)
...llege of William & Mary, USA Christina Silvano, Politecnico di Milano, Italy Bronis R. de Supinski, LLNL, USA Chengyong Wu, ICT, China Qing Yi, University of Texas at San Antonio, USA Steering Committee: Francois Bodin, CAPS Entreprise, France John Cavazos, University of Delaware, USA Lieven Eeckhout, Ghent University, Belgium Grigori Fursin, Exascale Computing Research Center, France Michael O'Boyle, University of Edinburgh, UK David Padua, UIUC, USA Olivier Temam, INRIA, France Richard Vuduc, Georgia Tech, USA David Whalley, Florida State University, USA *****************...