search for: subtler

Displaying 15 results from an estimated 15 matches for "subtler".

Did you mean: subtle
2008 Jan 25
3
strsignif.c, util.c (PR#10635)
In R 2.6.1, a couple of places (discovered using valgrind) where the requested size of string buffers fails to account correctly for the trailing null byte: 1. In src/appl/strsignif.c, 'f0' and 'form' at l. 108-9 each need at least 1 extra byte. 2. In src/main/util.c, 'out' at l. 1081 needs at least one extra byte. (Remember that the return value of strlen does not
2023 Aug 05
1
Packet Timing and Data Leaks
...m sure this has been addressed (or dismissed) but I'm looking for the > specific section of code that might deal with this. Any pointers? > > Thanks, > > Chris Why would any code "deal with this"? What you're describing is a form of steganography, embedding another subtler, more dangerous message inside the larger, safer, apparent message. Because there are so many ways to hide such data, it's not even theoretically possible to avoid altogether. OpenSSH would be the wrong layer of the stack to manipulate this, especially given the attempts to improve interactive...
2003 Sep 11
2
(structured) programming style
...structured programming, namely that it is not obvious what variables inner is reading or writing. It's not as totally out of control as the use of global variables, but it's still bothersome. In practice, I have many variables and several levels of nesting that come into play. A slightly subtler problem is that some of the variables in outer are just for use by outer, while others are used for communication down the line. One can't tell by quick inspection what's what. I am trying to compensate by commenting the code heavily, but I'd rather not use a style that makes that nec...
2008 Mar 12
3
Different (tree) event behaviors across platforms
Hi all, I''m currently writing a simple outliner application as a tutorial on wxRuby (both will be soon released ;-) ) I tested this application on Windows and Linux and found that the tree event behavior : - is sometime strange on each platform - is also different on each platform Even if I managed to take care of these differences in the application, I''m just wondering if : -
2010 Feb 27
0
[LLVMdev] RegisterPass isAnalysis parameter
...nderstanding how this invocation > can occur if the implementation is invisible. Maybe I should just > chalk this up to template magic... I'm not familiar with this particular code, and haven't looked at the implementation. However, the rule about anonymous namespaces is slightly subtler. You cannot refer to anything in anonymous namespace by name from another file, however, if you have a pointer, say, then you can still use the pointer. I suspect that the template in question registers the pass with the PassManager or something (through a static initialization?). Thus, even though...
2000 Oct 03
1
(fwd) Re: the underscore ("_") in variable name
...dly broken. Bill Venables and I did go down that route at one time, but after we discovered that we just did not stop using "=" where it did not work as assignment, we gave up. "<-" is the preferred assignment operator in S-PLUS 5.x and 6.x, with good reasons. This is much subtler than the inaccurate typing earlier in this thread. (I'll leave John Chambers to comment if `the last version of S' has yet arrived.) -- Brian D. Ripley, ripley at stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford,...
2010 Feb 27
2
[LLVMdev] RegisterPass isAnalysis parameter
On Feb 25, 2010, at 5:45 PM, David A. Greene wrote: > The RegisterPass template takes care of notifying the PassManager > that the pass exists. One of the advantages of PassManager is > that it decouples pass execution from the rest of the infrastructure > so the class need not be visible to anything outside the > implementation > of the pass itself. Even though the
2023 Aug 03
2
Packet Timing and Data Leaks
Howdy all, So, one night over beers I was telling a friend how you could use the timing between key presses on a type writer to extract information. Basically, you make some assumptions about the person typing (touch typing at so many words per second and then fuzzing the parameters until words come out). The I found a paper written back in 2001 talked about using the interpacket timing in
2016 Jul 18
2
RFC: Strong GC References in LLVM
Sorry, I missed this at first but I have one issue here: On Mon, Jul 18, 2016 at 11:55 AM Sanjoy Das via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hi all, > > I think it is time to start getting more concrete here. As a starting > point, I want to send out for review (roughly) the following changes: > > - Add a "gc" address space to the datalayout
2010 Jun 06
5
[PATCH] virtio_net: indicate oom when addbuf returns failure
On Fri, Jun 04, 2010 at 10:28:56AM +0930, Rusty Russell wrote: > This patch is a subset of an already upstream patch, but this portion > is useful in earlier releases. > > Please consider for the 2.6.32 and 2.6.33 stable trees. > > If the add_buf operation fails, indicate failure to the caller. > > Signed-off-by: Bruce Rogers <brogers at novell.com> >
2010 Jun 06
5
[PATCH] virtio_net: indicate oom when addbuf returns failure
On Fri, Jun 04, 2010 at 10:28:56AM +0930, Rusty Russell wrote: > This patch is a subset of an already upstream patch, but this portion > is useful in earlier releases. > > Please consider for the 2.6.32 and 2.6.33 stable trees. > > If the add_buf operation fails, indicate failure to the caller. > > Signed-off-by: Bruce Rogers <brogers at novell.com> >
1999 Mar 02
1
Can't understand error message :-{
I'm sorry if this is a basic question, but I'm stumped. I'm just trying to plot the residuals from a linear model against another variable in the data frame. Here are the lines I'm trying to execute: size <- read.table(file="/u67/abasl70/surveys/annenberg/mega/smschl.dat", header=T) sizef <- data.frame(size, row.names=size$unit) attach(sizef) mschmod <- lm
2012 Aug 15
7
Custom types in environments working .... yes/no/maybe ?
My issue may be related to this bug: http://projects.puppetlabs.com/issues/13858 "Custom types in environments require loading into master''s libdir" However, now I''m not so sure, This was working previously with a given client. However, after trying on a fresh client, it''s failing with: err: Could not run Puppet configuration client: Could not find a
2008 Nov 06
8
<video/> and cross site scripting policy.
It's been brought to my attention that Mozilla will be changing their implementation of <video/> to default deny cross-site requests. (http://www.w3.org/Bugs/Public/show_bug.cgi?id=6104) In other words: <video src="http://someothersite/videos.ogg"/> Will not work by default. It will not work like the <img/> tag does, or like the embed/object tags do which are
2007 Apr 30
25
escape regex code
hello, i wondered if it would not be interesting to have some filters function in puppet like filter_integer(), filter_prelregex, filter_text, filter_email or such so we can validate and make our defines a little more foolproof :) i particulary see filter_regex as usefull in quite a lot of exec that manipulates text files. What do you think about this ? -- Cordialement, Ghislain