search for: expounding

Displaying 20 results from an estimated 69 matches for "expounding".

Did you mean: expanding
2010 Jul 01
4
(no subject)
Jean-Mark, Tim, Could either of you expound on the following comment in cwrs.c? /*If _k==0, the following do-while loop will overflow the buffer.*/ ---------------------------------------------------------------- ...because the following do-loop does overflow the buffer when k=126 k=2; do _u[k]=(k<<1)-1; while(++k<len); Thanks, MikeH -------------- next
2018 Dec 20
3
Authentication Problem
On Thu, 20 Dec 2018 at 15:54, Aki Tuomi <aki.tuomi at open-xchange.com> wrote: > > On 20 December 2018 at 14:33 Odhiambo Washington < odhiambo at gmail.com> > wrote: > > > On Thu, 20 Dec 2018 at 15:23, Aki Tuomi < aki.tuomi at open-xchange.com> > wrote: > > > > > On 20 December 2018 at 14:10 Odhiambo Washington < odhiambo at gmail.com>
2018 Jan 05
3
SFTP chroot: Writable root
On Fri, 2018-01-05 at 16:00 +1030, David Newall wrote: > On 05/01/18 02:44, Thomas G?ttler wrote: > > I set up a chroot sftp server [...] > > Is there a way to get both? > > > > - chroot > > > > - writable root > > The source code (sftpd.c) seems to require that the root directory > be > owned by root and not group or world writable, so I
2018 Dec 20
1
Authentication Problem
On Thu, 20 Dec 2018, Joseph Tam wrote: >> At the expense of sounding stupid, could you please expound on the >> sequence? :) If you want the nitty details (Starting at bottom of page 18) https://tools.ietf.org/html/rfc2831 Joseph Tam <jtam.home at gmail.com>
2006 Jan 08
6
Persistent session cookies?
It seems Rails sessions by default only last, well, a browsing session. If the Rails app keeps track of logged-in state by sessions, that state doesn''t survive restarting the browser. How best to change this behaviour, to make the session cookie live forever, or at least beyond browser restarts? It was suggested to me on IRC to combine sessions with code to generate a unique id and
2012 Feb 10
1
colnames documentation
Consider the following in R 2.14.1 (seems to still be the case in Rdevel): x <- matrix(1:9, 3) colnames(x) # NULL as expected colnames(x, do.NULL = TRUE) # NULL -- since we didn't change the default colnames(x, do.NULL = FALSE) # "col1" "col2" "col3" This doesn't really seem to square with the documentation which reads: do.NULL: logical. Should this
2004 Mar 02
1
VP3 Format Doc, v0.4
Hi, Check it out-- another update in the space of a week: http://home.pcisys.net/~melanson/codecs/vp3-format.txt v0.4: March 2, 2004 - renamed and expanded section "Initializing The Quantization Matrices" - outlined section "Reconstructing The Frame" - moved Theora Differences Appendix to its own section entitled "Theora Specification" - added Appendix:
2005 Jun 16
3
[LLVMdev] ELF / COFF Summary
We've had various discussions about ELF/COFF support in LLVM. Here's a summary and action plan. 1. Do we need a "reading" interface? * Reid: No * Alexander: Yes * Chris: No * Jeff: We already have this in lib/System (DynamicLibrary.h) 2. Do we support just .so/.exe or all object formats? * Reid: Just .so/.dll .exe and .o * Alexander: Just
2010 Sep 07
3
zpool create using whole disk - do I add "p0"? E.g. c4t2d0 or c42d0p0
I have seen conflicting examples on how to create zpools using full disks. The zpool(1M) page uses "c0t0d0" but OpenSolaris Bible and others show "c0t0d0p0". E.g.: zpool create tank raidz c0t0d0 c0t1d0 c0t2d0 c0t3d0 c0t4d0 c0t5d0 zpool create tank raidz c0t0d0p0 c0t1d0p0 c0t2d0p0 c0t3d0p0 c0t4d0p0 c0t5d0p0 I have not been able to find any discussion on whether (or when) to
2013 Nov 01
9
package conflict resolution method:
Hello, list: I have two puppet modules that are unrelated to each other, but both have (unrelated) Python scripts that parse YAML. As such, both have a block like the following in their manifests for the PyYAML script dependency: package { ''PyYAML'': ensure => installed, } If I try and include both modules on the same server this causes an obvious
2005 Jun 17
0
[LLVMdev] ELF / COFF Summary
On Wed, 15 Jun 2005, Reid Spencer wrote: > So, here's the plan: > > 1. No reading interface. To have a system agnostic interface for reading > a dynamic library, use System/DynamicLibrary. No plans for reading a > native object file for any kind of examination purpose (at least, not > for a long while). Sounds good. > 2. We will support .so/.dll and .o/.obj file output.
2020 Apr 09
2
CentOS 7 : broken dependencies
> On Thu, 9 Apr 2020 at 08:40, Simon Matter via CentOS <centos at centos.org> > wrote: > >> > On Thu, Apr 09, 2020 at 11:06:45AM +0200, Nicolas Kovacs wrote: >> >> Which leads me to the more general question of: enable CR on a >> >> production >> >> server, yes or no? >> > >> > Not on production. Only for testing.
2004 Sep 10
9
Should FLAC join Xiph?
That is the question I put before you all tonight :) (Short background, Xiph is the corp behind Vorbis and Ogg, among other things; see http://xiph.org/about.html . I think Emmett is here now so correct any of this if it's wrong.) I've been talking a little with Emmett Plant and Monty about this. If it were to happen, it would mean the following: 1. FLAC would benefit from the
2020 Apr 09
0
CentOS 7 : broken dependencies
On Thu, 9 Apr 2020 at 09:34, Simon Matter <simon.matter at invoca.ch> wrote: > > On Thu, 9 Apr 2020 at 08:40, Simon Matter via CentOS <centos at centos.org> > > wrote: > > > >> > On Thu, Apr 09, 2020 at 11:06:45AM +0200, Nicolas Kovacs wrote: > >> >> Which leads me to the more general question of: enable CR on a > >> >>
2018 Dec 20
0
Authentication Problem
On Thu, 20 Dec 2018, Odhiambo Washington wrote: > At the expense of sounding stupid, could you please expound on the > sequence? :) In a nutshell, during protocol handshake, the server gives the client a random string (nonce). Both the server and client performs a cryptographic hash of nonce+password, and the client tells the server the result of the hash, and the server compares the
2018 Dec 20
1
Authentication Problem
Nice to get to hear this. However, the password is not stored in clear text here. How then does it work? On Fri, Dec 21, 2018, 00:58 Joseph Tam <jtam.home at gmail.com wrote: > On Thu, 20 Dec 2018, Odhiambo Washington wrote: > > > At the expense of sounding stupid, could you please expound on the > > sequence? :) > > In a nutshell, during protocol handshake, the server
2006 Oct 31
0
6262586 truss should print data written/read for sendmsg/recvmsg
Author: ja97890 Repository: /hg/zfs-crypto/gate Revision: 4e8bdca5612d8e39ecb94db81ca5272fe9872d89 Log message: 6262586 truss should print data written/read for sendmsg/recvmsg Files: update: usr/src/cmd/truss/actions.c update: usr/src/cmd/truss/expound.c
2004 Sep 10
0
Should FLAC join Xiph?
On Thu, Nov 21, 2002 at 01:39:40AM -0800, Josh Coalson wrote: > 1. FLAC would benefit from the increased visibility from the association. > Emmett can probably expound more upon this point. Anyway, hopefully this > will mean it's popularity will rise, not just with users but also with > developers of other tools. I agree that a relationship with Xiph.org would have a positive
2006 Feb 28
0
Rolled my own alternative to trigger function with OLD/NEW
Back with PostgreSQL, I just inspected OLD and NEW in trigger functions. I came up with this alternative in Rails: class Item < ActiveRecord::Base def active=(value) self.set_old(''active'', self.active) write_attribute(:active, value) end def after_update if !get_old(''active'') and self.active Notifier::deliver_item_approved(self)
2004 Sep 10
0
Should FLAC join Xiph?
Josh Coalson <xflac@yahoo.com> wrote: > That is the question I put before you all tonight :) > > (Short background, Xiph is the corp behind Vorbis and Ogg, > among other things; see http://xiph.org/about.html . I > think Emmett is here now so correct any of this if it's > wrong.) > > I've been talking a little with Emmett Plant and Monty about > this.