search for: chosen

Displaying 20 results from an estimated 4142 matches for "chosen".

2013 Dec 02
7
Stuck trying to boot Xen 4.3 on Arm Midway
...0 0x800000 xen.bin ext2load scsi 0 0x1000000 vmlinuz setenv kernsize $filesize ext2load scsi 0 0x2000000 initrd.img setenv initsize $filesize # Tried dtuart=/soc/serial@fff36000 as well without setenv bootargs "sync_console console=dtuart dtuart=serial" fdt addr 0x1000 fdt resize fdt set /chosen bootargs \"$bootargs\" fdt mknod /chosen modules # Tried with <1> and <2> for both as I was not sure wnether those numbers # are related to number of modules fdt set /chosen/modules \#address-cells <1> fdt set /chosen/modules \#size-cells <1> fdt mknod /chosen/modu...
2016 Oct 19
4
SSH Weak Ciphers
...lly I would be more concerned whether or not to enable ECDSA > algorithms (https://blog.cr.yp.to/20140323-ecdsa.html). > > Regards, > Leonard. > For web server ECDSA certs is currently a concern because the only curves with popular support across browsers have parameters that were chosen for undocumented reasons. That doesn't mean they are vulnerable but there is a question. OpenSSH uses Curve25519 for ECDSA which has documented reasons for the parameters chosen and thus are far less likely to be nefariously chosen. At least that's my understanding of the situation, whi...
2006 Jun 26
0
[klibc 16/43] sparc64: transmit arch-specific options to kinit via /arch.cmd
...m-specific configuration commands which don't come from + * the actual kernel command line. Write them into a file in rootfs + * so kinit can pick them up. + */ +static int __init set_arch_init_commands(void) +{ + int fd = sys_open("/arch.cmd", O_WRONLY|O_CREAT|O_APPEND, 0666); + int chosen; + u32 cl, sv, gw; + char buffer[256]; + int len = 0; + + if (fd < 0) + return fd; + + buffer[0] = 'r'; + buffer[1] = root_flags ? 'o' : 'w'; + buffer[2] = '\n'; + len = 3; + +#ifdef CONFIG_BLK_DEV_RAM + len += min((int)(sizeof buffer - 1 - len), + snprintf(b...
2010 Jan 31
1
permutation analysis with randomly chosen subsets of a matrix
Hello, here is the problem: I want to demonstrate that, on average, the Pearson's correlations of a specified subset of genes from a huge list (>18,000 columns) are higher than any randomly chosen subset of that list. I would therefore like to do a number of tests between that specified subset and randomly chosen ones from the "mother" list. How could I do that? What would be an appropriate statistical test? Thank you for your help! Gabriele Zoppoli, MD Ph.D. Fellow, Experimen...
2010 Nov 07
3
help! kennard-stone algorithm in soil.spec packages does not work for my dataset!!!
...there is R packages soil.spec to implement it. but when I used it to my dataset, it does not work, who can help me, how reasons is it, below, it is my code, and my data in the attachment. ks<-ken.sto(x,per="TRUE",per.n=0.3,va="FALSE",sav="FALSE") ks % results $`Chosen sample names` NULL $`Chosen row number` integer(0) $`Chosen calibration sample names` [1] "NULL" $`Chosen calibration row number` [1] "NULL" $`Chosen validation sample names` [1] "NULL" $`Chosen validation row number` [1] "NULL" attr(,"class")...
2006 Aug 08
2
Javascript - multiple select selectboxes
...wont read all of the selected values. Here is an example of the javascript working, but when you submit the array is not passed across for the codes. Anyone work with this sort of thing before? <html> <head> <SCRIPT language="JavaScript"> function setOptions(chosen) { var selectBox = document.addCodes.codes; selectBox.options.length = 0; var len = data[chosen].length; for(i=0; i<len; i++) { selectBox.options[selectBox.options.length] = new Option(data[chosen][i], data[chosen][i]); } } data = ne...
2005 May 24
3
equal-cost multipath in 2.6.7
...picked for different destination addresses. All is fine. Now if one of the nexthop goes down (arp entry times out and arp request doesnt get a response), does it remove the nexthop from contention and only use the remaining two from this point on ? What about the flows for which this nexthop was chosen in the recent past. Would they move to a different nexthop ? Can anyone please point me to implementation details about how a nexthop is chosen and what is the algorithm used in case of multipath routes and how to fine-tune the behaviour. Thanks. Darshan.
2019 Feb 15
4
Can we disable diffie-hellman-group-exchange-sha1 by default?
Also, how are default moduli shipped with OpenSSH for use in diffie-hellman-group-exchange-sha1/sha256 chosen? Are they chosen randomly by developers or are they chosen for security properties? If they are random, why not use moduli from RFC 7919 instead, like Mozilla recommends? On Fri, Feb 15, 2019 at 3:48 AM Mark D. Baushke <mdb at juniper.net> wrote: > > Yegor Ievlev <koops1997 at gmail...
2009 Feb 12
1
remember chosen label and re-use for next boot
Hi, I have just converted from grub (legacy) and am now using extlinux, which makes me a very happy camper by the way :-) There is one thing I am missing though, grub has the possibility to remember the chosen label and re-use that as default for the next boot. Is there something I missed in the documentation (would not be the first time ;-)) or is such a feature intentionally left out? I can probably work around this by tweaking my extlinux.conf in an init script and move "MENU default" to...
2008 Jul 01
0
cohort sampling
...s can do better. Assume variables 'time' = follow-up time for each subject, status = 1 if there was an event at the last follow-up, and x1, x2 are covariates. Assume time>0 for all subjects. n <- length(time) casetime <- unique(time[status==1]) # all the event times chosen <- rep(0,n) # marks the case and control groups for (i in casetime) { cases <- (time==i & status==1) potential <- (1:n)[!cases & chosen==0 & time >=i] #potential controls new.control <- sample(potential, 50) # sample 50 of them chos...
2011 Jan 17
1
how to cut a multidimensional array along a chosen dimension and store each piece into a list
Dear R-Helpers, I wonder whether there is a function which cuts a multiple dimensional array along a chosen dimension and then store each piece (still an array of one dimension less) into a list. For example, arr <- array(seq(1*2*3*4),dim=c(1,2,3,4)) # I made a point to set the length of the first dimension be 1to test whether I worry about drop=F option. brkArrIntoListAlong <- function(arr,alon...
2009 May 14
1
KNN script: Identity of specific K samples chosen?
I am currently doing some prediction work using the knn script in the 'class' package. Does anyone know a way of having R return the IDs (sample IDs, or column IDs of the training matrix) of the 'k' samples that are chosen by the algorithm as being nearest to a given test sample? I have searched/read everything I can about the script, however have not found anything other than the ability to output the proportion of 'k' samples agreeing with the final prediction (which is also quite useful). However I would...
2009 Oct 21
1
megatec_usb and "fry's" UPS
...usb/input/hid-core.c: v2.6:USB HID core driver Sep 15 15:00:35 hera kernel: ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 Sep 15 15:00:35 hera kernel: ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004 Sep 15 15:00:35 hera kernel: usb usb1: configuration #1 chosen from 1 choice Sep 15 15:00:35 hera kernel: hub 1-0:1.0: USB hub found Sep 15 15:00:35 hera kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 Sep 15 15:00:35 hera kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004 Sep 15 15:00:35 hera kernel: usb...
2009 Oct 20
1
megatec_usb and "fry's" UPS
...usb/input/hid-core.c: v2.6:USB HID core driver Sep 15 15:00:35 hera kernel: ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1 Sep 15 15:00:35 hera kernel: ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004 Sep 15 15:00:35 hera kernel: usb usb1: configuration #1 chosen from 1 choice Sep 15 15:00:35 hera kernel: hub 1-0:1.0: USB hub found Sep 15 15:00:35 hera kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2 Sep 15 15:00:35 hera kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00, driver 10 Dec 2004 Sep 15 15:00:35 hera kernel: usb...
2007 Mar 24
3
USB printer not working in a Linux domU
...PCI: Enabling device 0000:00:1f.4 (0000 -> 0001) PCI: Setting latency timer of device 0000:00:1f.4 to 64 uhci_hcd 0000:00:1f.4: UHCI Host Controller uhci_hcd 0000:00:1f.4: new USB bus registered, assigned bus number 2 uhci_hcd 0000:00:1f.4: irq 10, io base 0x0000e800 usb usb2: configuration #1 chosen from 1 choice hub 2-0:1.0: USB hub found hub 2-0:1.0: 2 ports detected usb 1-2: new full speed USB device using uhci_hcd and address 2 usb 1-2: configuration #1 chosen from 1 choice hub 1-2:1.0: USB hub found hub 1-2:1.0: 4 ports detected usb 1-2.2: new full speed USB device using uhci_hcd and addr...
2005 Oct 24
1
Error in step() (or stepAIC) for Cox model
Hello all, I am trying to use stepwise procedure to select covariates in Cox model and use bootstrap to repeat stepwise selection, then record how many times variables are chosen by step() in bootstrap replications. When I use step() (or stepAIC) to do model selection, I got errors. Here is the part of my code for (j in 1:mm){ #<--mm=10 for (b in 1:nrow(reg.bs)){ #<--bootstrap 10 times mi<-data.frame(tlfup,cen,complete(imp,j)) #<--completed data sets aft...
2009 May 24
1
subset dataframe by number of rows of equal values
...4,4,4), year=c(2000,2001,2000,2001,2002,2003,2000,2003,2001,2002,2003,2004,2005,2006),code=c(10,10,11,11,11,11,12,12,13,13,13,13,13,13)) choose I want to subset it to obtain another one with those observations for which there more than 2 observations in the column ?code?. So I want a dataframe ?chosen? like this: chosen<-data.frame(firm=c(2,2,2,2,4,4,4,4,4,4),year=c(2000,2001,2002,2003,2001,2002,2003,2004,2005,2006),code=c(11,11,11,11,13,13,13,13,13,13)) chosen I?ve tried split() and then nrow() but I got nothing. Could anyone help me with this? Thanks Cec?lia (Universidade de Aveiro ? Po...
2013 Jan 08
6
Why is localhost self-signed cert a CA cert?
...rstboot has the X509v3 extensions set as a CA cert (eg basicConstraint CA:TRUE). I was once very involved in PKIX and legal issues on certificate policy. Having the localhost cert being a CA cert, thus allowed to sign other certs, MAY have legal implications in the USofA and EU. Why was this chosen? Why is not -extensions v3_req used in the certificate creation? Oh you can see this for yourself with: openssl x509 -in /etc/pki/certs/localhost.crt -text -nameopt multiline -noout|more
2010 Feb 01
0
working with taxonomic trees: sampling
...Brachiomonaswestiana In total I have 115 (unique) classes, containing 733 orders, containing 16 185 families, etc What I am trying to do is to obtain a subtree represented by let's say n1 random classes, containing n2 random orders (but restricted to those that belong to the classes chosen earlier), containing n3 random families etc and all the way down to species, where the number of species will be n5. So the elements I chose at each subsequent level will be defined by elements that are already chosen at the level above. If I randomly chose lets say 3 classes A,B and C I w...
2018 Aug 06
3
Re: [PATCH nbdkit] protocol: Implement NBD_OPT_GO.
On 08/06/2018 09:31 AM, Nir Soffer wrote: > Eric, can you point us to the part of the spec allowing ignoring the export > name sent by the client? Nothing in the NBD spec requires the server to reject unknown export names. So nbdkit never rejects export names (which means it behaves as if all names work, regardless of whether or not it was the name it was configured with, since it