search for: addr3

Displaying 10 results from an estimated 10 matches for "addr3".

Did you mean: addr
2008 Dec 15
2
Duplicates among columns of a data frame
Dear list, I have a data frame of survey respondents, a little like this: set.seed(20081215) n <- 100 dat <- data.frame(id=1:100, addr1=sample(LETTERS, n, replace=TRUE), addr2=sample(LETTERS, n, replace=TRUE), addr3=sample(LETTERS, n, replace=TRUE)) head(dat) id addr1 addr2 addr3 1 1 R H Q 2 2 H C K 3 3 I P S 4 4 A H L 5 5 P Q P I wish to detect potential duplicates in the data frame. In my example, people can have up to three addresses. I...
2008 Sep 06
0
Tab control using FXRuby
...UT_FILL_Y) addr2= FXDataTarget.new("") FXTextField.new(addr,20, addr2, FXDataTarget::ID_VALUE, FRAME_SUNKEN|LAYOUT_FILL_X|LAYOUT_FILL_Y) addr2.connect(SEL_COMMAND) do puts "addr2 contains #{addr2.value}" main.setPosition(-50, -50) end FXLabel.new(addr, "Addr3" , nil,LABEL_NORMAL|LAYOUT_FILL_X|LAYOUT_FILL_Y) addr3= FXDataTarget.new("") FXTextField.new(addr,20, addr3, FXDataTarget::ID_VALUE, FRAME_SUNKEN|LAYOUT_FILL_X|LAYOUT_FILL_Y) addr3.connect(SEL_COMMAND) do puts "addr3 contains #{addr3.value}" main.setPosition...
2011 Feb 21
0
[LLVMdev] [PATCH] OpenCL support - update on keywords
The problem is that we use the ordering private, global, constant and local, and this is the same ordering that is used on Apple as well. As we already have OpenCL binaries out in public, making the change is problematic as we want to keep backward compatibility at all costs. Thanks, Micah > -----Original Message----- > From: Anton Lokhmotov [mailto:Anton.Lokhmotov at arm.com] > Sent:
2011 Feb 21
3
[LLVMdev] [PATCH] OpenCL support - update on keywords
> > > > +enum OpenCLAddressSpace { > > > > + OPENCL_PRIVATE = 0, > > > > + OPENCL_GLOBAL = 1, > > > > + OPENCL_LOCAL = 2, > > > > + OPENCL_CONSTANT = 3 > > > > +}; > -----Original Message----- > From: Villmow, Micah [mailto:Micah.Villmow at amd.com] > > Anton, > Would there be any issue with switching
2008 Dec 24
1
Driver removal notification: al175
Hi Kirill, just to notify you that your al175 driver is being removed from the NUT tree, as of 2.4.0-pre1. if you wish to see it entering the tree again, please contact the Development mailing list to talk about it. Merry Christmas and happy New Year. Arnaud -- Linux / Unix Expert R&D - Eaton - http://www.eaton.com/mgeops Network UPS Tools (NUT) Project Leader -
2007 Oct 11
0
display problem with to_csv
...39;,'''' as ''Suffix'',m.member_company_name as ''Company'' , `department` as ''Department'',`title` as ''Job Title'', `addr1` as ''Business Street'', `addr2` as ''Business Street1'',`addr3` as ''Business Street2'',`addr4` as ''Business Street3'', `address_city` as ''Business City'',`address_state` as ''Business State'',`address_postalcode` as ''Business Postal Code'',c.c_name as ''Business Cou...
2018 Jul 31
2
GlobalISel design update and goals
...pect the orderings. How to achieve the same thing remains an >> open question for GlobalISel. > > I don't get this problem. > GISel has a sequential IR, the order is already modeled here. %t1 = load %addr1 :: (load 4 from @a) %t2 = load %addr2 :: (load 4 from @a + 4) store %t1 %addr3 :: (store 4 to @b) store %t2 %addr4 :: (store 4 to @b + 4) MIR specifies the order: load @a -> load @a+4 -> store @b -> store @b+4 but the dependencies are actually: load @a -> store @b load @a+4 -> store @b+4 We only have a representation of the former at the moment and have to...
2006 Feb 09
6
gcc4 compiler warnings
Hi all! The following files emits warnings when compiled with gcc 4.0: al175.c bcmxcp_ser.c belkinunv.c cyberpower.c everups.c powercom.c solis.c All warnings seem to be of this variety: everups.c:38: warning: pointer targets in passing argument 2 of 'ser_get_char' differ in signedness I suggest that those who fiddles with those drivers fixes the warnings and verifies that it works
2018 Aug 03
2
GlobalISel design update and goals
...; open question for GlobalISel. >> >> >> I don't get this problem. >> GISel has a sequential IR, the order is already modeled here. >> >> >> %t1 = load %addr1 :: (load 4 from @a) >> %t2 = load %addr2 :: (load 4 from @a + 4) >> store %t1 %addr3 :: (store 4 to @b) >> store %t2 %addr4 :: (store 4 to @b + 4) >> >> MIR specifies the order: >> load @a -> load @a+4 -> store @b -> store @b+4 >> but the dependencies are actually: >> load @a -> store @b >> load @a+4 -> store @b+4 >>...
2018 Jul 30
9
GlobalISel design update and goals
Hi all, Over the past few months we’ve been doing work on the foundations for the next stages of GlobalISel development. In terms of changes from this time last year, the IR translator, the legalizer, and instruction selector have seen moderate to major changes. The most significant of these was the change to the legalizer API, allowing targets to use predicates to express legality, which gives