search for: fist

Displaying 20 results from an estimated 289 matches for "fist".

Did you mean: first
2015 Jun 11
2
[LLVMdev] fatal error: error in backend: 32-bit absolute addressing is not supported in 64-bit mode
...gzilla/show_bug.cgi?id=66509 With assembler errors of the form... natArray.s:1110:2: error: ambiguous instructions require an explicit suffix (could be 'filds', or 'fildl') fild 8(%esi,%edi,2) ^ The gcc/config.log shows that the configure test for the filds and fists mnemonics fails with... configure:24880: checking assembler for filds and fists mnemonics configure:24889: /usr/bin/as -o conftest.o conftest.s >&5 clang -cc1as: fatal error: error in backend: 32-bit absolute addressing is not supported in 64-bit mode configure:24892: $? = 1 configure:...
2006 Sep 15
3
graphics and 'layout' question
Hello, I got stuck with a graphics question: I've 3 figures that I present on a single page (window) via 'layout'. The layout is layout(matrix(c(1,1,2,3), 2, 2, byrow=TRUE)); so that the frst plot spans the both columns in row one. Now I'd like to magnify the fist figure so that it takes 20% more vertical space (i.e. more space for the y-axis). How would I do this in R? thanks a lot for your help, Arne
2013 Jun 18
3
Matching username in ssh_config
...hat user I'm trying to login to a host as. A simple case is: ssh -i rootkey root at host123 vs. ssh -i userkey username at host123 Up until now I have just used a stanza like Host host123 User username IdentityFile userkey But it would be awesome of it was possible to add before that, eg fist match as all other blocks, a stanza looking like: Host root at host123 IdentityFile rootkey So when I type: "ssh host123" it resolves to equivalent of "ssh -i userkey username at host123" And when i type: "ssh root at host123" it would resolve to "ssh -i rootk...
2004 Oct 18
11
how can i log everything?
hi, it''d be very useful to add some kind of "log everything" option to shorewall. currently the logging is useful if you know what you would like to log. but if you don''t know than it''s a problem... another problem that currently it''s not possible to log the nat table. at least i can''t find any way (can''t add logging into masq and
2003 Jul 11
2
Cisco 7960s
Cisco should really be ashamed of this product... While it is physically well constructed, and has excellent sound quality along with a very pleasant user interface, the device has SERIOUS stability issues, unless you run your network with an iron fist... Quite by accident, while configuring my Asterisk system to connect to a Cisco 7960 via SIP in a standard office PBX type arrangement, I discovered something interesting... By screwing around with both the source IP address of a SIP message, along with certain IP addresses in the SIP message it...
2004 Mar 03
3
Trying to put a MS SQL 7.0 database on a samba share
Hi, I have a linux box set up with Samba 3.0 and have configured my shared drives. What I am trying to do is store a MS SQL data base on my Samba share. I can see the drive from my SQL machine but when I try create the database there I get errors like inconsistent file names etc. Fist can this be done and if so how? Thanx Warren
2006 Jan 23
2
Home Test!
Hi everybody! I'm from Argentina, so you'll have to sorry me for my English. I have a Linux box with asterisk and want to buy an ATA. Fist, I thought about the Grandstream HandyTone but I read some reviews which says that it has a lot of echo. Some people recommended me Sipura 2000 but I don't know what to do. Now I just to make some tests at home and see what happens and if it works ok, then I-m planning to install it in other pl...
2008 Jan 04
2
Plot only a subset of all factors in dataframe
Hi all, I have a dataframe called 'table' in which both factors and numerical values are stored. > dim(table) [1] 990 6 The fist 10 lines of table, to get an idea: > table[1:10,] QueryNo Query type Ret Prec Rec 1 1 Sports exact 1 1 0.01 2 5 Office exact 0 NaN 0.00 3 6 Meeting exact 0 NaN 0.00 4 7 Studio exact 0 NaN 0.00 5 9 Building exact 0 NaN 0.00 6...
2007 Oct 26
2
Appending to a textarea with RJS
...e tried doing something to the effect of page[:textboxid].value = "blah" + page[:textboxid].value or page[:textboxid].value = "blah" + $#{''textboxid''}.value and several variants. But I keep getting errors. Or... nothing. Someone please help me before I put my fist through my screen. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe fr...
2003 Sep 03
2
Install the tinc with OpenSSL
Dear tinc stuff I tried to install the tinc. In the Fist Step, I install the OpenSSL-0.9.7b. 1, Go to OpenSSL-0.9.7 directory 2, ./Configure 3, make 4, make test 5, make install 2nd step, Install the tinc-1.0.1 Type "./configre" in the /usr/src/tinc-1.0.1/. Consle showed "checking EVP_EncryptInit_ex... no" and confi...
2013 Jul 05
2
[LLVMdev] Enabling vectorization with LLVM 3.3 for a DSL emitting LLVM IR
...%return > > return: ; preds = %exec_block.return_crit_edge, %block_code > ret void > } > 1) "entry" block is the first block of the function right? 2) do you mean *all* "alloca" in a function always have to be in the fist entry block? Thanks. Stéphane
2019 May 21
2
Debugging Samba is a total PITA and this needs to improve
Sven, Fist fix the smb.conf as i suggested, cap and non caps where it should be. Resolving settings based on the script output looks ok. Fix krb5.conf Then how many DC's are you having? > So, could somebody maybe help with the NT_STATUS_INTERNAL_DB_CORRUPTION > / DRS replication issue? Or wil...
2012 Aug 03
3
Sum two Vectors of different length
...y in one element. As the sample is quite large it would be the same if I ignore the one extra element. There are times though that the missing elements can be 2 or 3 (but always the number is small enough so to be ignored) The major concern is that this "difference" can be either on the fist vector or either on the second vector. If I try to solve that with simple if statements the code gets too much of spaghetti... Is there a simple way when there is this length difference either to a. Ignore the extra elements -or- b. Add the elements missing to the vector with the smaller len...
2009 Oct 03
2
add lines() to 1st plot in layout() after calling 2nd plot()?
...call the above commands in this order: layout(matrix(c(1,2),1)) plot(1:10,main="left plot") plot(10:1,main="right plot") lines(c(3:7,7:3),col="red") but of course now lines() gets added to the "right plot". I Is there any way to make the lines() go to the fist plot ("left plot")? Marianne -- Marianne Promberger PhD, King's College London http://promberger.info R version 2.9.2 (2009-08-24) Ubuntu 9.04
2002 Jul 16
2
selectively aggregate data
I'm shure that this kind of question is asked not for the fist time, but i would be glad if someone of you could help me out I have a data.frame like this : subjnr group block data 1 33 1 1 564.476 2 33 1 1 289.185 3 33 1 1 483.372 4 33 1 1 1461.260 5 33 1 1 315.353 6 33...
2008 Jun 04
5
help understanding why #function(x, y) (if((x-y)>=0) {2^(x-y)} else{-(2^abs(x-y))})# doesn't work like I think it should
...y)} else{-(2^abs(x-y))}) z<-folds(x,y) check<-cbind(x,y,z) View(check) Warning message: In if ((x - y) >= 0) { : the condition has length > 1 and only the first element will be used ### why will it only use the first element and how to I get around this #### ## example 2 making the fist comparison negative ### x1<-c(5,6,4,3,5,3,1) y1<-c(11,6,2,1,7,1,9) folds<-function(x,y) (if((x-y)>=0) {2^(x-y)} else{-(2^abs(x-y))}) z1<-folds(x1,y1) check2<-cbind(x1,y1,z1) View(check2) Warning message: In if ((x - y) >= 0) { : the condition has length > 1 and only the fi...
2013 Jan 21
0
[LLVMdev] LLD vs LLVM coding style...
...haps you should start with specific issues you see. And why you think one way is better than another way. The LLVM family of projects have a range of coding conventions. libc++, lldb, and LLVM core have different styles. That is a good thing. Coding conventions should not be ruled with an iron fist. There needs to be some room for innovation and experimentation so that the conventions can evolve and improve. -Nick
2012 Mar 22
2
Randomly select elements based on criteria
...born (in this case day 46), and "spawn" is the day it was spawned. I want to know if there is a correlation in the day of spawn between fish born the same day but that are unrelated (not from the same family). I want to randomly select two rows but they have to be from different fam. The fist part (random selection), I got it by doing: > ran <- sample(nrow (fish), size=2); ran [1] 9 12 > newfish <- fish [ran,]; newfish fam born spawn 103 136 46 50 106 142 46 85 In this example I got two individuals from different families (good) but I will repeat the p...
2005 Jun 23
3
How fouled-up can you get??
I subscribed, and am getting emails hand over fist. They'll bust my inbox quota if I miss a day. I went to the web site for my subscription and tried to disable delivery; I'll follow this list on gmane or not at all -- and that works with every other mailman list I've tried. It wouldn't let me -- kept reverting to the password scr...
2013 Jul 05
0
[LLVMdev] Enabling vectorization with LLVM 3.3 for a DSL emitting LLVM IR
On Jul 5, 2013, at 10:43 AM, Stéphane Letz <letz at grame.fr> wrote > > 1) "entry" block is the first block of the function right? Yes. > > 2) do you mean *all* "alloca" in a function always have to be in the fist entry block? If you want them converted into ssa variables early on, yes.