search for: userdefin

Displaying 17 results from an estimated 17 matches for "userdefin".

Did you mean: userdef
2002 Feb 01
9
[Bug 94] Userdefineable identification string
http://bugzilla.mindrot.org/show_bug.cgi?id=94 ------- Additional Comments From jprondak at visualmedia.com 2002-02-02 09:15 ------- Created an attachment (id=17) Patch to sshd to allow a userdefinable identification string ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2016 May 16
2
ipmitool and CentOS 7
On Dells running CentOS 6, we could use this command ipmitool delloem lcd set mode userdefined "$(uname -n | sed -e 's/\..*//' )" to set the little LCD screen to display the system name, In the latest sevens, it fails, and gives me usage for the command... which displays exactly that syntax. Anyone have a clue? mark
2002 Jul 01
1
chi square residuals
...d freq N = sum(obs) actual.row.sum=sum of freq in the row actual.col.sum=sum of freq in the column and I don't succeed in trying to calculate these 2 last parameters.... here is the code I wrote, inspired by an email from Mark Myatt on 16 Apr 2001 "twoWay" <- function(x=NA, y=NA, userDefined=NA ) { # if (is.na(userDefined)){ result <- chisq.test(table(x,y)) } else{ result <- chisq.test(userDefined) } # print(result) obs <- result$observed exp <- result$expected chi.table <- ((obs - exp)...
2002 Jul 02
1
subscript out of bounds
...iduals # Brett Presnell <presnell at stat.ufl.edu> # tot <- sum(tab) rp <- apply(tab, 1, sum) / tot cp <- apply(tab, 2, sum) / tot mu <- tot * ( rp %o% cp ) norm(tab - mu) / sqrt( mu * ( (1 - rp) %o% (1 - cp) ) ) } "twoWay" <- function(x=NA, y=NA, userDefined=NA ) { # adapted from Mark Myatt <mark at myatt.demon.co.uk> if (is.na(userDefined)){ result <- chisq.test(table(x,y)) } else{ result <- chisq.test(userDefined) } # print(result) obs <- result$observed exp <- result$expected chi.table <- ((obs - exp)^2...
2016 May 17
2
ipmitool and CentOS 7
...ipmitool and CentOS 7 From: m.roth at 5-cent.us Date: Mon, May 16, 2016 16:57 To: "CentOS" <centos at centos.org> -------------------------------------------------------------------------- On Dells running CentOS 6, we could use this command ipmitool delloem lcd set mode userdefined "$(uname -n | sed -e 's/\..*//' )" to set the little LCD screen to display the system name, In the latest sevens, it fails, and gives me usage for the command... which displays exactly that syntax. Anyone have a clue? --------------------------- Following myself up: it worked...
2005 Jun 07
0
user-defined spatial correlation structure in geeglm/geese
...eese in geepack) allowing for residual spatial correlation . Several questions: 1. Are GEE’s the right choice? 2. How can I specify a user-defined spatial (exponential) correlation structure in geeglm or geese? I did not really get this from the help-sites. I guess I need to set corstr = "userdefined" and zcor = Zcor, with Zcor being in some way the specified correlation matrix – but how? I earlier specified spatial exponential correlation structures in glmmPQL, but it seems that this does not work in the same way for geeglm or geese. Do I need to use the function genZcor? 3. Makes it s...
2003 Mar 04
3
Distinctive ringing
Hi All... Can Asterick detect distinctive ringing on a POTS line and answer with different configurations? Thanks...
2002 Feb 16
1
Build 3.2.3a on RedHat 7.2
Hi, I have asked this question earlier, but did not receive an answer.... I'm trying to build 3.2.3a on a RedHat 7.2, but during configuring I get an error: #### ./configure .... .... .... checking for test rutines... configure: error: cant find test code. Aborting config #### Does any one have any clue about what is going wrong???? Regards/Casper
2002 Feb 16
0
[Fwd: Re: Build 3.2.3a on RedHat 7.2]
...e in a file. So maybe you can check this. Maybe there are some header-files missing, which should be documented in config.log. To avoid these problems my RH 7.2 installation contains nearly all packages, especially these for kernel-development (if you install RH you have this option, when you do an userdefined install) and other development things, even if I'm not going to develop something, cause my knowledge auf C(++) is very poor. Hope that helps a bit. Peter Casper Pedersen wrote: >Hi, > >I have asked this question earlier, but did not receive an answer.... > >I'm t...
2003 Feb 08
0
[Bug 45] Feature: only count packets that get matched in a chain
...Comments From laforge@netfilter.org 2003-02-08 13:08 ------- I'm sorry, but this doesn't fit into the architecture/design of iptables. The counters beahve exactly like they are meant to behave. The counters indicate how often a particular rule has matched. And if a rule that jumps to a userdefined chain is matched, the counter is incremented. Everything else would be confusing. The numbers you need can easily be calculated afterwards in userspace by parsing the iptables output. ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching som...
2004 Jul 09
14
Layer 7 netfilter not working
Hello there! I am trying to get traffic shaping working on my Linux router (debian woody 3r02) and for some things I wanted to use the layer 7 packet classifier, but I can''t get it to work. Here is what I did: -downloaded the patches from http://l7-filter.sourceforge.net -downloaded the kernel 2.6.7 source -downloaded the iptables 1.2.11 source -patched kernel (layer7 patch and some
2011 Jul 07
0
[LLVMdev] Improving Garbage Collection
...to a specific field of an object. "Base": The root is related to an object whose canonical address is found as the ref-type parameter. Example: the root points to some array element contained within the object. Any tag value starting from UserDefined and beyond can be defined and used by the high-level language and its associated GC implementation. */ typedef enum { PrtGcTagDefault = 0, PrtGcTagOffset = 1, PrtGcTagBase = 2, PrtGcTagUserDefined = 3 } PrtGcTag; /* Points to executable code. It is "unsigned char *" so that arith...
2011 Jul 07
4
[LLVMdev] Improving Garbage Collection
On 07.07.2011 08:31, Nate Fries wrote: > On 7/6/2011 6:24 PM, Talin wrote: >> The LLVM code generators and analysis passes have a much more >> thorough knowledge of SSA value lifetimes than frontends do, and >> therefore could avoid spilling and reloading of values when it wasn't >> needed. > Although this would indeed be nice, it is not done by similar >
2011 Jan 26
8
[PATCH 1/8] staging: hv: Convert camel cased variables in connection.c to lower cases
Signed-off-by: Haiyang Zhang <haiyangz at microsoft.com> Signed-off-by: Hank Janssen <hjanssen at microsoft.com> --- drivers/staging/hv/channel.c | 48 ++++++------ drivers/staging/hv/channel_mgmt.c | 48 ++++++------ drivers/staging/hv/connection.c | 154 ++++++++++++++++++------------------ drivers/staging/hv/vmbus_drv.c | 2 +-
2011 Jan 26
8
[PATCH 1/8] staging: hv: Convert camel cased variables in connection.c to lower cases
Signed-off-by: Haiyang Zhang <haiyangz at microsoft.com> Signed-off-by: Hank Janssen <hjanssen at microsoft.com> --- drivers/staging/hv/channel.c | 48 ++++++------ drivers/staging/hv/channel_mgmt.c | 48 ++++++------ drivers/staging/hv/connection.c | 154 ++++++++++++++++++------------------ drivers/staging/hv/vmbus_drv.c | 2 +-
2007 Jun 19
38
ZFS Scalability/performance
Hello, I''m quite interested in ZFS, like everybody else I suppose, and am about to install FBSD with ZFS. On that note, i have a different first question to start with. I personally am a Linux fanboy, and would love to see/use ZFS on linux. I assume that I can use those ZFS disks later with any os that can work/recognizes ZFS correct? e.g. I can install/setup ZFS in FBSD, and later use
2011 Jul 07
2
[LLVMdev] Improving Garbage Collection
...** an object.**** "Base": The root is related to an object whose canonical address is found as**** the ref-type parameter. Example: the root points to some array element**** contained within the object.**** Any tag value starting from UserDefined and beyond can be defined and used**** by the high-level language and its associated GC implementation. **** */**** typedef enum { PrtGcTagDefault = 0, PrtGcTagOffset = 1, PrtGcTagBase = 2, PrtGcTagUserDefined = 3 } PrtGcTag;**** ** ** /* Points to executable code. It is "unsigned...