search for: target1

Displaying 20 results from an estimated 33 matches for "target1".

Did you mean: target
2011 Jun 13
3
combine the data frames into comma separated list.
Hi R users, I am new to R and am trying to merge data frames in the following way. Suppose I have n data frames each with two fields. Field 1 is common among data frames but may have different entries. Field 2 is different. Data frame 1: Src Target1 1 aaa 1 bbb 1 ccc 2 aaa 3 ddd Data frame 2: Src Target2 2 aaaa 3 dddd 4 bbbb 4 eeee 4 ffff Data frame 3: Src Target3 1 xx 3 yy 5 zz 6 tt 6 uu And so on... I want to convert this into...
2020 Jun 11
2
Issue with __attribute__((constructor)) and -Os -fno-common
...=arm-linux-gnueabihf -Os -S ctor.c \ -o /dev/stdout | grep init_fn .p2align 2 @ -- Begin function init_fn .type init_fn,%function .code 32 @ @init_fn init_fn: .size init_fn, .Lfunc_end0-init_fn .long init_fn(target1) .addrsig_sym init_fn $ clang --target=arm-linux-gnueabihf -fno-common -S ctor.c \ -o /dev/stdout | grep init_fn .p2align 2 @ -- Begin function init_fn .type init_fn,%function .code 32 @ @init_fn init_fn: .size...
2020 Jun 12
2
Issue with __attribute__((constructor)) and -Os -fno-common
...| grep init_fn >> .p2align 2 @ -- Begin function init_fn >> .type init_fn,%function >> .code 32 @ @init_fn >> init_fn: >> .size init_fn, .Lfunc_end0-init_fn >> .long init_fn(target1) >> .addrsig_sym init_fn >> $ clang --target=arm-linux-gnueabihf -fno-common -S ctor.c \ >> -o /dev/stdout | grep init_fn >> .p2align 2 @ -- Begin function init_fn >> .type init_fn,%function >> .code 32...
2017 Oct 21
1
Skip error in downloading file in loop
I am trying to download data from NASA web-service. I am using the following code; for( i in 1:8) { target1 <- paste0(" https://hydro1.gesdisc.eosdis.nasa.gov/daac-bin/access/timeseries.cgi?variable=NLDAS:NLDAS_FORA0125_H.002:TMP2m&location=GEOM:POINT( ", cities[i, "lon_nldas"], ",%20", cities[i,"lat_nldas"], ")&...
2006 Apr 17
6
DO NOT REPLY [Bug 3692] New: regression: symlinks are created as hardlinks with --link-dest
...ug 9 02:01:36 2005 socket0 550268 srw-rw---- 2 moo moo 0 Aug 4 02:05:00 2005 sockethard1 550268 srw-rw---- 2 moo moo 0 Aug 4 02:05:00 2005 sockethard2 550273 -rw-r----- 1 moo moo 0 Apr 16 21:47:16 2006 source0 550269 lrwxr-x--- 1 moo moo 7 Apr 16 21:57:12 2006 target1 -> source0 ## ok, now copy 0 to 1 using 0 as a reference... # the use of 0 as a reference when initializing the # first copy is valid though perhaps confusing. it also # happens to make writing backup scripts easier by # eliminating some initialization logic. [] rsync -Haxv --delete --link...
2011 Apr 01
2
Need help with an issue after upgrading to 4.1.0
...y cat: /sys/bus/scsi/devices/host4/model: No such file or directory cat: /sys/bus/scsi/devices/host4/type: No such file or directory cat: /sys/bus/scsi/devices/host4/rev: No such file or directory cat: /sys/bus/scsi/devices/host4/scsi_level: No such file or directory cat: /sys/bus/scsi/devices/target1:0:0/vendor: No such file or directory cat: /sys/bus/scsi/devices/target1:0:0/model: No such file or directory cat: /sys/bus/scsi/devices/target1:0:0/type: No such file or directory cat: /sys/bus/scsi/devices/target1:0:0/rev: No such file or directory cat: /sys/bus/scsi/devices/target1:0:0/scsi_...
2011 Jun 14
1
[Resolved] combine the data frames into comma separated list.
Hi Thanks Gabor for your suggestion. I am posting the code that worked for me. dataframe1 = data.frame(cbind(Src = c(1,1,1,2,3), Target1 = c('aaa','bbb','ccc','aaa','ddd'))); #must be data frame dataframe2 = data.frame(cbind(Src = c(2,3,4,4,4), Target2 = c('aaaa','dddd','bbbb','eeee','ffff'))); dataframe3 = data.frame(cbind(Src = c(1,3,5,6,6), Target3 =...
2018 Jan 31
0
systemd-udevd not applying ATTR to block device at boot
...ATTRS{d3cold_allowed}=="0" looking at parent device '/devices/pci0000:00': KERNELS=="pci0000:00" SUBSYSTEMS=="" DRIVERS=="" # udevadm info -q all -a /dev/sdb looking at device '/devices/pci0000:00/0000:00:04.0/virtio1/host1/target1:0:1/1:0:1:0/block/sdb': KERNEL=="sdb" SUBSYSTEM=="block" DRIVER=="" ATTR{ro}=="0" ATTR{size}=="786432000" ATTR{stat}==" 219 0 12776 101 16 0 4096 63 0 66 16...
2017 Apr 07
2
[Bug 1144] New: set add always returns false or otherwise ends evaluation
...ate shouldn't add elements, only update them if they are present; but the notation in the wiki regarding the only difference between add and update being the treatment of the timeouts implies that the set update is working correctly or otherwise always returns true. table ip example { set target1 { type ipv4_addr flags timeout elements = { 8.8.8.8 expires 23h59m53s, 192.168.100.1 expires 23h59m52s} } set target2 { type ipv4_addr flags timeout elements = { 192.168.100.1 expires 23h59m59s, 8.8.8.8 expires 23h59m53s} } chain out...
2017 Oct 15
0
Download data from NASA for multiple locations - RCurl
...information to each of the data files > from the cities data.frame. I have been doing the following for a single > file: Didn't seem that difficult: library(downloader) # makes things easier for Macs, perhaps not needed # if not used will need to use download.file for( i in 1:5) { target1 <- paste0("https://hydro1.gesdisc.eosdis.nasa.gov/daac-bin/access/timeseries.cgi?variable=GLDAS2:GLDAS_NOAH025_3H_v2.0:Tair_f_inst&startDate=1970-01-01T00&endDate=1979-12-31T00&location=GEOM:POINT(", cities[i, "lon"], &qu...
2012 Nov 19
1
how to make the volume's format to qcow2 when creating volume
...is based on logical(LVM) and iscsi,now I create volume specified the format to "qcow2" *pool.xml* <pool type='logical'> <name>pool_190</name> <source> <device path='/dev/disk/by-path/ip-192.168.0.190:3260-iscsi-iqn.2012-11.com.cloudking:server.target1-lun-1'/> </source> <target> <path>/dev/pool_190</path> </target> </pool> *volume.xml* <?xml version="1.0" encoding="UTF-8" ?> <volume> <name>volume1</name> <capacity unit="GB">1&lt...
2017 Oct 15
2
Download data from NASA for multiple locations - RCurl
Dear all, i am trying to download time-series climatic data from GES DISC (NASA) Hydrology Data Rods web-service. Unfortunately, no wget method is available. Five parameters are needed for data retrieval: variable, location, startDate, endDate, and type. For example: ###
2017 Oct 15
2
Download data from NASA for multiple locations - RCurl
...t; from the cities data.frame. I have been doing the following for a single > > file: > > Didn't seem that difficult: > > library(downloader) # makes things easier for Macs, perhaps not needed > # if not used will need to use download.file > > for( i in 1:5) { > target1 <- paste0("https://hydro1.gesdisc.eosdis.nasa.gov/daac- > bin/access/timeseries.cgi?variable=GLDAS2:GLDAS_NOAH025_ > 3H_v2.0:Tair_f_inst&startDate=1970-01-01T00&endDate=1979-12- > 31T00&location=GEOM:POINT(", > cities[i, "lon"], &g...
2017 Oct 16
0
Download data from NASA for multiple locations - RCurl
...from the cities data.frame. I have been doing the following for a single > > file: > > Didn't seem that difficult: > > library(downloader) # makes things easier for Macs, perhaps not needed > # if not used will need to use download.file > > for( i in 1:5) { > target1 <- paste0("https://hydro1.gesdisc.eosdis.nasa.gov/daac-bin/access/timeseries.cgi?variable=GLDAS2:GLDAS_NOAH025_3H_v2.0:Tair_f_inst&startDate=1970-01-01T00&endDate=1979-12-31T00&location=GEOM:POINT(", > cities[i, "lon"], >...
2004 Oct 08
2
Ext 2/3 overwriting remnant data & use of data blocks - security
...unt /dev/hda2 on / type ext3 (rw) none on /proc type proc (rw) /dev/hda1 on /boot type ext3 (rw) none on /dev/pts type devpts (rw,gid=5,mode=620) none on /dev/shm type tmpfs (rw) //192.168.0.1/data1 on /mnt type smbfs (0) ---- for (( i=0;i<20;i=i+1 )); do echo Pass $i dd if=/dev/urandom of=/tmp/target1 bs=1 count=102400 debugfs /dev/hda2 -R "stat /tmp/target1" 2> /dev/null | tee -a /tmp/log done ---- Here is the "log" file containing debugfs "stat /tmp/target1" for each cycle. (I can see a definate pattern on some of these in which blocks are used, but again I...
2017 Oct 16
1
Download data from NASA for multiple locations - RCurl
...he following for a > single > > > file: > > > > Didn't seem that difficult: > > > > library(downloader) # makes things easier for Macs, perhaps not needed > > # if not used will need to use download.file > > > > for( i in 1:5) { > > target1 <- paste0("https://hydro1.gesdisc.eosdis.nasa.gov/daac- > bin/access/timeseries.cgi?variable=GLDAS2:GLDAS_NOAH025_ > 3H_v2.0:Tair_f_inst&startDate=1970-01-01T00&endDate=1979-12- > 31T00&location=GEOM:POINT(", > > cities[i, "lon"...
2012 May 20
2
Remus network buffering problem
...i/devices/target0:0:0/model: No such file or directory cat: /sys/bus/scsi/devices/target0:0:0/type: No such file or directory cat: /sys/bus/scsi/devices/target0:0:0/rev: No such file or directory cat: /sys/bus/scsi/devices/target0:0:0/scsi_level: No such file or directory cat: /sys/bus/scsi/devices/target1:0:0/vendor: No such file or directory cat: /sys/bus/scsi/devices/target1:0:0/model: No such file or directory cat: /sys/bus/scsi/devices/target1:0:0/type: No such file or directory cat: /sys/bus/scsi/devices/target1:0:0/rev: No such file or directory cat: /sys/bus/scsi/devices/target1:0:0/scsi_leve...
2011 Jan 10
2
[LLVMdev] ARM/MC/ELF Support for pcrel movw/movt coming soon
-llvmcommits On Mon, Jan 10, 2011 at 3:21 PM, Renato Golin <renato.golin at arm.com> wrote: > Btw, I know this is for ELF printing, but can the same infrastructure > you're using to print the hi/lo be used to print relocation in Asm > output? Or is this a completely separate subject? Hi Renato, If I am understanding you correctly, then the answer is no, because .s output
2011 Jan 11
0
[LLVMdev] ARM/MC/ELF Support for pcrel movw/movt coming soon
...ason, That's not entirely true. ;) If you only use the GNU toolchain, that is correct. However, CodeSourcery's GCC changed a bit on how it works for ARM because the ARM toolchain is a bit more strict in build attributes and relocation information. The static constructor symbol relocation (target1) and exception handling table symbols (prel31) are clearly disregarded by gas and subsequently discarded by armlink. > its also yes because sometimes, the asmwriter will sometimes need to > generate sequences like below > > foo: >   movw r0, :lower16:bar-foo >   movt r0, :upper1...
2007 Oct 20
0
centos: infinite loop at boot using mptspi scsi device
...lling centos 5 onto our workgroup server. Our Server is equipped with an external RAID-array using an LSI Logic / Symbios Logic 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI (rev 07) SCSI controller. Unfortunately the Server won't boot with the array connected, but gives the error message: target1:0:2: Domain Validation detected failure, dropping back again and again. The now deleted SuSE 9.2 distribution (kernel 2.6.11), that we used for a long time was working just fine with the array. However Debian 4.0 which uses an 2.6.18 kernel just like CentOS 5 does not. We then tried to use the r...