search for: determ

Displaying 20 results from an estimated 58 matches for "determ".

Did you mean: deter
2006 Apr 07
0
"action pass random determ/netrand reclassify --value--": granularity problems
...leaving eth0. I already wrote some scripts, and I can measure the overload ratio, decide when congestion occurs locally, and modify any filter from C code in runtime with system calls. Problem is, from what I get from the /doc library from the newest iproute2 package, when using ACTIONS with DETERM or NETRAND, followed by a value, that number is an INTEGER, and thus it says: action drop random netrand ok 10 --> allow 1 out 10 randomly and action drop random determ ok 2 --> deterministically accept every second packet This seems to behave like: every nth, so I can'...
2012 Apr 16
2
[LLVMdev] Determing C Types
What is the best way to determine the type of an arbitrary int? For example, find whether it is a char, short, int, long, long, etc? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120416/2a04054c/attachment.html>
2012 Apr 16
0
[LLVMdev] Determing C Types
So what I would like to do is redefine the widths for the types, making the type widths more portable and less target dependent, is this possible within llvm? On Mon, Apr 16, 2012 at 2:32 PM, Ryan Taylor <ryta1203 at gmail.com> wrote: > What is the best way to determine the type of an arbitrary int? For > example, find whether it is a char, short, int, long, long, etc? > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120416/4686cb7e/attachment.html>
2015 Aug 11
0
[PATCH v2 07/17] v2v: factor out determing the guest firmware
Signed-off-by: Roman Kagan <rkagan@virtuozzo.com> --- v2v/v2v.ml | 45 +++++++++++++++++++++++++-------------------- 1 file changed, 25 insertions(+), 20 deletions(-) diff --git a/v2v/v2v.ml b/v2v/v2v.ml index c6a567a..c1bce1b 100644 --- a/v2v/v2v.ml +++ b/v2v/v2v.ml @@ -399,6 +399,30 @@ let do_convert g inspect source keep_serial_console = guestcaps +let get_target_firmware inspect
2008 Jul 22
1
determing font type in expression
Dear R-Maillist members, I would like to label the y-axis of a plot with a mathematical expression "sed.rate mm a-1", where the "-1" is printed subscript. I am using font.lab=15 for the x-axis. However, when plotting the y-axis with the expression-function it appears in a different font. Does anybody knows how to use font.lab=15 in the expression as well? Cheers Thomas
2005 Jan 23
1
Determing the pfifo backlog
Greetings -- in the "Linux Advanced Routing & Traffic Control HOWTO" chapter 14.1 on bfifo/pfifo it says that: "you can use this qdisc to determine the backlog on your interface". But it does not say exactly how. Command [#tc -s qdisc ls] outputs the number of packets sent so far but it does not output any info about the backlog. My first question is whether a command exists that provides info about the backlog. My second question i...
2012 Apr 16
0
[LLVMdev] Determing C Types
...at I would like to do is redefine the widths for the types, making > the type widths more portable and less target dependent, is this possible > within llvm? > > > > On Mon, Apr 16, 2012 at 2:32 PM, Ryan Taylor <ryta1203 at gmail.com> wrote: > > What is the best way to determine the type of an arbitrary int? For > example, find whether it is a char, short, int, long, long, etc? > > > > _______________________________________________ > > LLVM Developers mailing list > > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > > http://lis...
2012 Apr 16
1
[LLVMdev] Determing C Types
...fine the widths for the types, making >> the type widths more portable and less target dependent, is this possible >> within llvm? >> > >> > On Mon, Apr 16, 2012 at 2:32 PM, Ryan Taylor <ryta1203 at gmail.com> >> wrote: >> > What is the best way to determine the type of an arbitrary int? For >> example, find whether it is a char, short, int, long, long, etc? >> > >> > _______________________________________________ >> > LLVM Developers mailing list >> > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu...
2006 Jul 05
4
degrading gracefully - how to tell if JS is enabled?
Is there a RoR best practice wrt determing in a visitor''s browser has JS disabled? Is there even a way to find out? I''ve got a couple of pages in my app that are not going to degrade gracefully at all. I really need to point a visitor who has JS disabled down a seperate path. Any ideas? Thanks, Bill --------------...
2012 Apr 16
2
[LLVMdev] Determing C Types
...m> wrote: > So what I would like to do is redefine the widths for the types, making the type widths more portable and less target dependent, is this possible within llvm? > > On Mon, Apr 16, 2012 at 2:32 PM, Ryan Taylor <ryta1203 at gmail.com> wrote: > What is the best way to determine the type of an arbitrary int? For example, find whether it is a char, short, int, long, long, etc? > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listin...
2012 Feb 20
3
How to determine a subset of a binary strings?
Hi, I need some neat ways of determing a subset of binary strings. For example, x=c(0,0,1), y=c(0,1,1), z=c(0,1,0). So x is a subset of y and z is also a subset of y, but x is not a subset of z. I tried to search R functions and packages but no hits. Any ideas? Best, Jing -- Jing Tang, PhD Senior Researcher Finnish Insti...
2007 Mar 27
1
"Groups" in XYPLOT
...m not sure I'm barking up the right tree here, but would I need to make use of groups to plot two separate datasets within ONE panel in xyplot? The desired end result is a single xy plot of two separate (but similar in values and ranges). Full code follows, xyplot code at bottom #########Determine Frequencies ##########coastal_slope #needs the maptools package to read ESRI grid require(maptools) #import the flow slope grid basin.map <- readAsciiGrid("C:/R_PLots/coastal_slp.asc", colname="slope") basin_slope <- (basin.map$slope) #read the slopes into a dataframe f...
2009 Sep 12
4
Normal distribution
 Dear All   let me go one step further by asking you if you could help me show that the distribution of this data in normal.  have a little idea (by trial and error) but i seem to not fully understand how its done.   H<-rnorm(100, mean=50000, sd=3000) par(las=1) hist(H, breaks=seq(40000, 60000, 1000), freq=F) f<- function(x) exp(-(x-5000)^2/18000000)/sqrt(18000000*pi)  x<- seq(40000,
2001 Oct 16
1
Defeating Timing Attacks Patch for OpenSSH 2.9.9p2 and 2.9p2
...and Roel Jonkman of Silicon Defense. These changes cause SSH to send packets unless request not to, exactly every 50 ms. IF no data is ready to be sent, SSH will send a bogus packet with 16 bytes of data (which is the same size as most keystrokes). Thus someone performing timing analysis cannot determine the inter keystroke timing of a user. SSH will send bogus data for about 1 second after the last keystroke. This both increases the difficulty of determining exact password lengths and conserves bandwidth when a user is idle (e.g. taking a coffee break). Both the Server and the Client exhibit...
2001 Oct 06
1
Defeating Timing Attacks
...and Roel Jonkman of Silicon Defense. These changes cause SSH to send packets unless request not to, exactly every 50 ms. IF no data is ready to be sent, SSH will send a bogus packet with 16 bytes of data (which is the same size as most keystrokes). Thus someone performing timing analysis cannot determine the inter keystroke timing of a user. SSH will send bogus data for about 1 second after the last keystroke. This both increases the difficulty of determining exact password lengths and conserves bandwidth when a user is idle (e.g. taking a coffee break). Both the Server and the Client exhibit...
2008 Sep 09
4
Help with 'spectrum'
...hereas a more common scaling is 2? and range (-0.5, 0.5] (e.g., Bloomfield) or 1 and range (-?, ?]. Forgive my ignorance but I am having a hard time interpreting this. Does this mean that in the spectrum output every element of the $spec array is scaled by 1/frequency(x)? I am having a hard time determing what is meant by 'frequency'.Say I define a time series for a year with samples for every day. I input a 'frequency' of 365 (which in my mind is the period). On the output of 'spectrum' would this mean that every element of the $spec array is scaled by 1/365? There is a c...
2006 Jun 20
1
Determine the data type of a function to an argument
Hello All: How can I determing the "types" of args passed to an R function? For example, given the following: calculate <- function(...) { args <- list(...) argName = names(args) if (arg1 == character) cat("arg1 is a character") else...
2008 Dec 24
1
selecting a subset of a matrix based on a value occurring in 5 records
...new matrix. Values in the matrix are numbers, such that if a word >does not occur in a record the cell contains a zero, whereas if it >occurs 7 times there is a value of 7 for that record. It is the >number of records rather than the than the column total that is the >criteria for determing inclusion into the matrix. Any suggestions on how I might reduce the size of this matrix so as to include only those columns in which a word occurs at least in 5 records is much appreciated, regards Bob
2018 Jul 30
2
trace in uniroot() ?
..., extendInt="yes", trace=TRUE) ) When extendInt is set, then there is some information output, but trace alone produces nothing. I looked at the source code -- it is in R-3.5.1/src/library/stats/R/nlm.R and calls zeroin2 code from R-3.5.1/src/library/stats/src/optimize.c as far as I can determing. My code inspection suggests trace does not show the iterations of the rootfinding, and only has effect when the search interval is allowed to be extended. It does not appear that there is any mechanism to ask the zeroin2 C code to display intermediate work. This isn't desperately important...
2006 Mar 30
5
packet marking: only a ratio, not all
Hi all! In short: Anybody wrote a patch for DSMARK to make it capable of marking only a ratio (a given arg to the tc command) of the packets it gets? Say, 20%? Or, do I have to hack into the source? Alternatives, like a filter spitting packets to 2 different DSMARK based on this ratio? In long: I''m a hungarian univ student involved in a project (RMD-QoS stuff) which needs