search for: relation

Displaying 20 results from an estimated 58284 matches for "relation".

2005 Feb 02
1
Re: one step closer to Flash MX 2004 installation
As one last option, try installing Internet Explorer - the installer might be depending on stuff that it provides. It may simply be a deficiency in Wine. File a bug report, and please post your experiences in the AppDB page for it here: http://appdb.winehq.org/appview.php?versionId=2294 If you want to maintain the app and test it with new wine versions, feel free. Thanks, Scott Ritchie On
2006 Apr 29
2
Seeing performance problems with has_many :through relation
Greetings all, I am looking for some insight from some of the more experienced with has_many :through relationships as I am having a hard time reconciling the performance I am seeing. I have 2 tables that are linked together via has_many :through Table 1: urls ( there are about 7,000 records ) 2 fields, id and url Table 2: phrases ( there are about 87,000 records ) 2 fields, id and phrase (w/ an index d...
2008 May 06
3
DO NOT REPLY [Bug 5440] New: 'relative' test fails on SunOs 5.8
https://bugzilla.samba.org/show_bug.cgi?id=5440 Summary: 'relative' test fails on SunOs 5.8 Product: rsync Version: 3.0.2 Platform: Sparc OS/Version: SunOS Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org ReportedBy: brianegge@yahoo.com
2011 Aug 16
3
Bayesian Relative Survival Analysis in R?
Hi all, May i know does R has packages or code to run "Bayesian Relative Survival Analysis"? I have look through Bayesian Survival Analysis(2001) by Joseph George Ibrahim<http://www.google.com/search?tbo=p&tbm=bks&q=inauthor:%22Joseph+George+Ibrahim%22>, Ming-Hui Chen<http://www.google.com/search?tbo=p&tbm=bks&q=inauthor:%22Ming-Hui+Chen%22>, Debajyoti
2005 Aug 10
1
[LLVMdev] Relative addressing
The destination register and each of the source registers can be relatively addressed by some special "address registers": a0, a1, a2, a3. suppose a0 = 4, a1 = 2, the instruction add r[a0], r[a1], r7 equals to: r4 = r2 + r7 How should the instruction be defined in TableGen *.td file? If an opcode is defined for each variant (like X86InstrInfo.td) there will be eight opcodes
2005 Mar 04
3
optimization
...[0;37mSELECT * FROM people WHERE id = 1 LIMIT 1 [4;33mSkill Load (0.094000) [1;37mSELECT * FROM skills WHERE name = ''SQL'' [4;35mPerson Load (0.203000) [0;37mSELECT * FROM people WHERE id = 1 LIMIT 1 [4;33mPerson Load (0.141000) [1;37mSELECT people.* FROM people JOIN relations ON relations.to_id = people.id WHERE relations.from_id = 1 AND (relations.relationship = ''romantic'' OR relations.relationship = ''friend'') [4;35mPerson Load (0.140000) [0;37mSELECT people.* FROM people JOIN relations ON relations.to_id = people.id WHERE relat...
2013 Mar 28
1
undefined method 'sanitize_limit' for #<ActiveRecord::Relation:0x2aaaad35d720>
I am trying to upgrate rails from 3.0 to 3.1, while updating rails version I am getting following error rake aborted! undefined method `sanitize_limit'' for #<ActiveRecord::Relation:0x2aaaad35d720> /some_package/lib/ruby/gems/1.8/gems/activerecord-3.1.12/lib/active_record/relation.rb:460:in `method_missing'' /some_package/lib/ruby/gems/1.8/gems/activerecord-3.1.12/lib/active_record/relation/query_methods.rb:208:in `build_arel'' /some_package/lib/ruby/gems/...
2012 Feb 29
1
can't convert Fixnum into String in relativity
good day i read about relativity gem but when i try to use it and make a test file and build it gives me an error =test.rb= <pre> require ''relativity'' opens_at = DayTime.new(9) #=> 09:00:00 closes_at = DayTime.new(12,30) #=> 12:30:00 </pre> <pre> /home/start/.rvm/gems/ruby-1.9.2-p290/gems/relativity-0.0.8/lib/ relativity/day_time/new.rb:24:in
2013 Nov 26
2
[LLVMdev] llvm-dwarfdump offsets
llvm-dwarfdump currently outputs the offset of each DIE relative to the entire debug_info section. But type/DIE references within a unit are relative to that unit. Should we emit unit-relative offsets instead? I've prototyped this and end up with output something like this: 0x00000051: DW_TAG_base_type [24] DW_AT_name [DW_FORM_strp] ( .debug_str[0x00000051] =
2018 Oct 04
3
help with samba and iptables
Hi community, i have a samba server that work's great, but my friends of IT security said that is vulnerable without a firewall,  i try to set an iptables firewall using the official documentation but is not working (obviously), this ti my config: #!/bin/sh echo n Aplicando Reglas de Firewall... ## FLUSH de reglas iptables -F iptables -X iptables -Z iptables -t nat -F ## Establecemos
2007 Dec 19
1
lattice: axes drawn when relation='free' or relation='sliced' but not when relation='same'
...<- list(draw=T , labels=c(0, '.5', '1', '1.5') , at=c(0, .5, 1, 1.5) , tck=c(.4, 0) , cex=.7 , alternating=2 , relation='same' , rot=90) fig1 <- xyplot( [...], scales=list(x=xaxs, y=yaxs)) I want this to draw ticks and labels on the left-hand side of each panel. Instead, I get ticks on the left-hand side of only the panels in the leftmost column, and labels only on the right-h...
2010 May 18
4
scaling with relative units in plots or retrieving axes limits in plots
Dears, a way to define x and y positions in plots in relative numbers (e.g in fractions between 0 and 1 referring to relative positions inside the plot region) would really help me. One example I would need this to would be to add text via text() to a plot always at a defined spot, e.g the upper left corner. Until now I always determined maximum x and y values and used those, but defining
2012 Aug 01
3
[LLVMdev] TableGen related question for the Hexagon backend
...on of ADDrr instruction, executed when p0 is true ADDrr_np : if(!p0) r1 = add(r2, r3) --> predicated version of ADDrr instruction, executed when p0 is false Currently, we rely on switch tables to transform between formats. However, we would like to have a different mechanism to represent these relationships instead of switch tables. I am thinking of modeling these relations in HexagonInstrInfo.td file and use TableGen to generate a table with the information. Idea is to have a new class, say Relations, with some members of type 'Instruction' each representing a specific relation between i...
2006 Jun 23
2
polymorphic challenge
Hello All, I have a little challenge and I am not sure if this is even possible I am working on a dating/event site and few functionalities are similar that I want to centralize them. We have users which can have - favorite users - interest list - blocked users All these relations are like; User <-> Relation <-> User I was thinking I could have a class called Relation (with a table relations) and use through + polymorphic features. Something in this range; create_table :relations do |t| t.column :user_id, :integer t.column :relationable_type, :s...
2006 Apr 07
4
Wine 0.9.11 and Visual Foxpro 9
G'day I am trying to install Visual FoxPro 9 with wine. I have been following the instructions from "http://www.paulmcnett.com/vfp/wine/". I have had to slightly modify the paths used for the symlinks because the format of version 9 appears to differ from that of version 8. Or it's because they didn't lend me the original disks. Basically an extra directory level called
2012 Jun 06
3
problem about set operation and computation after split
hi, I met some problems in R, plz help me. 1. How to do a intersect operation among several groups in one list, without a loop statement? (I think It may be a list) create data: myData <- data.frame(product = c(1,2,3,1,2,3,1,2,2), year=c(2009,2009,2009,2010,2010,2010,2011,2011,2011),value=c(1104,608,606,1504,508,1312,900,1100,800)) mySplit<- split(myData,myData$year)
2012 Aug 02
0
[LLVMdev] TableGen related question for the Hexagon backend
On Aug 1, 2012, at 1:53 PM, Jyotsna Verma <jverma at codeaurora.org> wrote: > > Currently, we rely on switch tables to transform between formats. However, > we would like to have a different mechanism to represent these relationships > instead of switch tables. I am thinking of modeling these relations in > HexagonInstrInfo.td file and use TableGen to generate a table with the > information. That would be a good idea. X86 could also use some help with opcode mapping tables. > Idea is to have a new class, say...
2011 Nov 24
2
understanding all.equal() output: "Mean relative difference"
Dear all How should one parse all.equal() output? I'm specifically referring to the 'mean relative difference' messages. For example, > all.equal(pi, 355/113) [1] "Mean relative difference: 8.491368e-08" But I'm not sure how to understand these messages. When they're close to 0 (or 1xe-16), then it's intuitive. But when they're big, > all.equal(1, 4)
2011 Feb 10
2
Samba4 and iptables
Hello everybody, I have a running an installation of Samba4 as AD. All is working fine, but when I start the firewall, the clients have problems to login. By my firewall-rules from the past, I had opened the ports 137:139 and 445 for samba and new for bind the port 53. The clients (WinXP) seems to have problems to read and write from/to the home directories. Maybe samba4 need additional or
2010 Nov 25
1
How to change value of y axis from log relative Hazard to relative Hazard
http://r.789695.n4.nabble.com/file/n3058505/file.csv file.csv Hi, Rusers I have a problem in making a rcspline.plot with a Hmisc package. My data is in the upload attachment. My programme as follows: library(Hmisc) A<-read.csv("file.csv",header=TRUE) attach(A)