search for: descr

Displaying 20 results from an estimated 110 matches for "descr".

Did you mean: desc
2008 Jan 08
0
PwrGSD
...k efficacy boundary Eff.bound.choice <- 1:2 ebc.nms <- c("LanDemets(alpha=0.05, spending=ObrienFleming)", "SC(alpha=0.05, crit=0.90)") n.ec <- length(Eff.bound.choice) ## The following line creates the indexing dataframe, `descr', with one ## line for each possible combination of the selection variables we've ## created. descr <- as.data.frame( cbind(Eff.bound.choice=rep(Eff.bound.choice, each=n.ca*n.me), cens.amt=rep(rep(cens.amt, each=n.me), n.ec)...
2008 Jan 08
0
PwrGSD
...k efficacy boundary Eff.bound.choice <- 1:2 ebc.nms <- c("LanDemets(alpha=0.05, spending=ObrienFleming)", "SC(alpha=0.05, crit=0.90)") n.ec <- length(Eff.bound.choice) ## The following line creates the indexing dataframe, `descr', with one ## line for each possible combination of the selection variables we've ## created. descr <- as.data.frame( cbind(Eff.bound.choice=rep(Eff.bound.choice, each=n.ca*n.me), cens.amt=rep(rep(cens.amt, each=n.me), n.ec)...
2010 Oct 27
2
Merge disparate lists
My two lists look like below Need an R code example that combines the two. l_one "key" 2 1 2 l_two "ndx", "descr" 1, "this" 2, "that" 3, "other" 4, "finis" My goal is a new list that looks like below. ndx descr 2 that 1 this 2 that Thanks, Jim
2005 Apr 21
0
Viral activitiy coming from an IP in your network.
...Thu, 21 Apr 2005 19:49:10 +0200 (CEST) Below is WhoIs information on the subnet block that the IPs are in that send the viral emails: ---------------------------------------------------------------------------------------------- inetnum: 202.56.216.0 - 202.56.216.128 netname: BHARTI-IN descr: Infrastructer descr: Dail Up Pool for Touchnet Haryana descr: Bharti Infotel Ltd. descr: 234 , Okhla Phase III descr: New Delhi descr: India country: IN admin-c: NA40-AP tech-c: NA40-AP mnt-by: MAINT-IN-BBIL status: ASSIGNED NON...
2007 May 06
1
validates_uniqueness_of (with :scope) doesn't seem to work?
I have a master record called ''project'' and a child record called ''agycode''. Obviously, agycode has a project_id FK. I wish to make the "descr" field unique ONLY within the ''project_id'' ''scope''. Here are the key pieces of information Agycode fields (id, project_id, descr) Here''s the declaration in the Agycode.rb validates_uniqueness_of *:descr*, *:scope* => "project_id" Here...
2009 Jan 26
1
ups emerson liebert GTX2 ESP-II serial protocol demo
...source */ #define FALSE 0 #define TRUE 1 #define NCMD 100 /*max number of commands*/ #define MAXAGE 5 /*max seconds to accept data as current*/ #define IsBitSet(val, bit) ((val) & (1 << (bit))) char str[128]; /***************************************************/ typedef struct { char descr[120]; unsigned char type; /*0:measurement, 1:ascii, 2:status*/ unsigned char length; /*for ascii, how many cmds*/ unsigned char rfmt; /*unit divider for measurement, bit position for status*/ unsigned char cmd[6]; /*UPS command bytes*/ unsigned char rbyteH; /*msb result*/ unsigned c...
2011 Mar 16
3
only one puppet client fails with yum
....fedoraproject.org/mirrorlist?repo=testing-epel5&arch=$basearch'', enabled => ''0'', failovermethod => ''priority'', gpgcheck => ''1'', gpgkey => ''file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL'', descr => ''Extra Packages for Enterprise Linux 5 - Testing - $basearch '' } yumrepo { ''epel-testing-debuginfo'': mirrorlist => ''http://mirrors.fedoraproject.org/mirrorlist?repo=testing-debug-epel5&arch=$basearch'', enabled => '...
2005 May 13
17
modeling...
I''ve tried tackling this many ways on my own and can''t find a good solution: Breaking it down to something simplier... Venue has one address Person has one address Address belongs to state Assuming I don''t want to do tables for venue_addresses and person_addresses. What is the best way to model this using rails... big thing here is i want to be able to reuse a
2011 Nov 01
0
package descr: create weighted cross tabulation
hello, using the package "descr" i created a crosstab e.g.: Table <- crosstab(age,question,weight=pond) "age": being a variable that consists of the surveyed data of the ages of children: the values are "6 years", "7 years" and "8 years". "question": is a variable that co...
2007 Apr 26
6
Struggling to define multiple yum/rug repositories
...sled10-i586: {Package{ provider => yum[sled10-i586] }} sles10: {Package{ provider => yum["sles10-i586"] }} sles9-i586: {Package{ provider => yum["sles9-i586"] }} } $server = "puppet.example.com" class yumrepos-suse { yumrepo { sles9-i586: descr => ''SuSE Linux Enterprise Server 9'', enabled => 1, gpgcheck => 0, baseurl => "http://$server/sles9/" } yumrepo { sles10-i586: descr => ''SuSE Linux Enterprise Server 10'', enabled => 1, gpgcheck => 0,...
2009 Dec 04
3
yumrepo is missing name attribute in repo files using puppet-0.24.8-4.el5
I''m using puppet-0.24.8-4.el5 on CentOS 5.4. My problem is yumrepo isn''t writing the "name=" field to the repository files which causes yum to complain with the error: Repository ''local-CentOS-5.4-x86_64'' is missing name in configuration, using id I get this behavior on all of my yumrepo definitions. One of them looks like this: yumrepo {
2011 Sep 10
4
TIP for broken ARIN whois
This works for me on Centos 5.6. It may assist newcomers to the Linux world of Centos. whois 51.51.51.51 produces a normal and conventional display of data. However since ARIN, the North American registrar of IP addresses, "modernised" its WHOIS processing, a query to whois 64.64.64.64 will produce a one line summary of possible matches, which always includes ARIN, but omits the
2006 Jun 09
0
partials and rjs
...erstanding of partials, maybe one of you can help me out. I have a page that initially displayed via the following: <-- in controller --> def find_areas_for_country @country_areas = CountryArea.find(:all, :conditions => ["country_id = :country", params], :order => "descr asc") render :partial => ''country_area'' end <-- my partial --> <%= select :country_area, :id, @country_areas.collect {|c| [c.descr, c.id]}, {:prompt => "-- Select Area --"}, {:name => "country_area_select", :onfiltered=> &quo...
2011 Aug 28
1
Trying to extract probabilities in CARET (caret) package with a glmStepAIC model
Dear developers, I have jutst started working with caret and all the nice features it offers. But I just encountered a problem: I am working with a dataset that include 4 predictor variables in Descr and a two-category outcome in Categ (codified as a factor). Everything was working fine I got the results, confussion matrix etc. BUT for obtaining the AUC and predicted probabilities I had to add " classProbs = TRUE," in the trainControl. Thereafter everytime I run train I get this messa...
2006 Apr 26
3
drop downs
...ction => @country_areas) end *********** form <tr> <td><label for="country">Country</label></td> <td><select id="country" name="country"><%= options_from_collection_for_select(@countries, "id", "descr") %> </select></td> </tr> <%= observe_field(:country, :update => "country_area", :url => { :action => :find_areas_for_country }, :with => "''country=''+value") %&...
2003 Jun 15
2
dvd+rw-tools ported to FreeBSD (Sony 500A DVD[+/-]R[W] support)
I just finished up a port of Andy Polyakov's excellent dvd+rw-tools to FreeBSD, and he has incorporated the patches into his release: http://fy.chalmers.se/~appro/ http://fy.chalmers.se/~appro/linux/DVD+RW/ http://fy.chalmers.se/~appro/linux/DVD+RW/tools/ (version 5.8.4.4.4) These tools support DVD-R, DVD-RW, DVD+R, and DVD+RW format dvd burners, including the popular Sony
2009 Dec 29
1
SUN_LIBUSB
...t be able to receive anything. After some snooping around I found this bit of code in libusb.c libusb_get_interrupt(). #ifdef SUN_LIBUSB /* usleep(timeout * 1000); */ return 0; #else /* FIXME: hardcoded interrupt EP => need to get EP descr for IF descr */ ret = usb_interrupt_read(udev, 0x81, (char *)buf, bufsize, timeout); if (ret > 0) { upsdebugx(6, " ok"); } else { upsdebugx(6, " none (%i)", re...
2020 Oct 16
3
[libnbd PATCH] info: Add support for new 'qemu-nbd -A' qemu:allocation-depth
...ounterpart qemu patches land upstream, although it looks like I've got positive review. info/nbdinfo.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/info/nbdinfo.c b/info/nbdinfo.c index 24ec129..1afdf98 100644 --- a/info/nbdinfo.c +++ b/info/nbdinfo.c @@ -780,6 +780,13 @@ extent_description (const char *metacontext, uint32_t type) case 1: return "dirty"; } } + else if (strcmp (metacontext, "qemu:allocation-depth") == 0) { + switch (type & 3) { + case 0: return "unallocated"; + case 1: return "local"; + case 2:...
2005 Dec 23
4
OO model style: inheritance
...RSET=latin1; DROP TABLE IF EXISTS `galleries`; CREATE TABLE `galleries` ( `id` int(11) NOT NULL auto_increment, `node_id` int(11) NOT NULL default ''0'', `user_id` int(11) NOT NULL default ''0'', `title` varchar(255) NOT NULL default '''', `descr` text NOT NULL, PRIMARY KEY (`id`), KEY `user_key` (`user_id`), KEY `node_key` (`node_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; DROP TABLE IF EXISTS `images`; CREATE TABLE `images` ( `id` int(11) NOT NULL auto_increment, `user_id` int(11) NOT NULL default ''0'', `ga...
2007 Jul 17
1
Yumrepo''s subscribe ran before package require Yumrepo?
...efore the packages that require that Yumrepo are installed/created? Abe ---- class common-yum { yumrepo { base: name => "base", baseurl => " http://admin001/yum_reorg/$operatingsystem/\$releasever/base/\$basearch/", descr => "$operatingsystem \$releasever - \$basearch - base", enabled => 1, enablegroups => 1, exclude => "*perl*", gpgcheck => 0, require => [ File["/etc/yum.repos.d/CentOS-Base.rep...