search for: sytax

Displaying 20 results from an estimated 29 matches for "sytax".

Did you mean: syntax
2011 Aug 08
1
Reshape2 sytax
Hi Hadley et all, I am struggling with reshape2 and melt works and melt_check (filtered151) seems fine My cast command was acast (filtered151, Time ~ Species ~ Number) > melt_check (filtered151) Using time, Species as id variables $id [1] "time" "Species" $measure [1] "Number" When I execute cast the data matrix is in the correct order but the data
2015 Dec 09
2
CentOS 6, bareos, kerberos?
After upgradeding to bareos 15.2, which also has a web ui, thereby making it usable (since the command line tool, bconsole, does not have a paging mechanism, and its sytax for choosing files to restore is, let us say, arcane), I've got another question: is *anyone* using bareos with kerberos? I see that they have in alpha(?) tls support, which isn't a great idea, given the recent vulnerabilities.... If you've figured out how to use kerberos, rather than h...
2005 Apr 18
2
nls error in formula
...meric data (2500-60000) > y <- Noss ## numeric data (0-1.2) > A <- 0.8 > B <- 0.6 > C <- 1/40000 > nls( y ~ A-B*exp(-C*x)) Error in match.call(definition, call, expand.dots) : .Primitive... is not a function I'm not sure if the error is due to the formula sytax or something else. I'll appreciate any help Sylvia _________________________________________________________ Do You Yahoo!? La mejor conexi??n a internet y 25MB extra a tu correo por $100 al mes. http://net.yahoo.com.mx
2006 Jan 11
3
How do you do a custom sql call in rails?
...re account_id = 12345 select current_number from customer_number_sequences where account_id = 12345 commit So my question is how if it all can I integrate this into my @customer.save call??? Should I add a before_create method to the Customer model and do a custom sql call? If so what is the sytax on this call? self.connection.select(...)? Should I just use the find_by_sql() method? Any insight would be greatly appreciated. Thanks, Zack --- Schema snip --- create table accounts ( id int unsigned not null auto_increment, ... primary key (id) ) engine=innodb; create table customer...
2003 Jan 13
1
tftpd-hpa filename remapping
...feature is not working. I look in the logfile and it has an entry in there for tftpd. remap: input: startup-config Jan 13 21:47:50 proxy in.tftpd[25438]: remap: done Jan 13 21:47:50 proxy in.tftpd[25438]: RRQ from 192.168.0.12 filename startup-config I think that I don't have the remap_file sytax correct. the following it what I have in there currently. # This file defines name remapping for incoming router configs # It will rename the startup-config to the ip address of the Router # sending the config to the tftpd server r startup-config/startup The documentation also mentions being able...
2004 Jul 17
1
Using a group variable for a group of extension to dial
...mber based upon the context. Essentually, I want to be able to designate 3 people as sales and have my IVR handoff and ring their extensions in order. Then maybe I will ahve a couple of people I group together and have them ring if someone selects 2 on the IVR for tech support. Someone used some sytax that employed something like ($GROUP1, GROUP2, GROUP3) that accomplished this but I cannot find any reference to it after googling since ysterday. Does anyone know how to accomplish this task? Thanks, Wiley -------------- next part -------------- An HTML attachment was scrubbed... URL: http://...
2002 Aug 26
3
winex 2.1 source
I read on transgaming.com that you can download winex 2.1 with CVS tag winex-2-1, but what is the exact complete syntax to use to download the winex 2.1 source code?
2006 Sep 14
2
newbie: if statement with multiple conditions
...o be way too easy, but I can''t seem to find an example online... Is it possible to have an "if" statement with multiple conditions? For example: if variable1 == "THIS" or "THAT" or "THOSE" end I''m assuming Ruby has a much more elegant sytax to accomodate this. Thanks! -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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-/JY...
2004 Apr 06
2
Syntax Question
...ying various station IDs. That is, if I had a simpler structure I could formulate a logical index which would have something along the lines of as.numeric(st[st[1]=="KSEA"][4]) and it would return 47.62139. Somewhere I'm getting all bollixed up with the indexing and keep getting sytax errors. As you can see, the list is quite long (20K+) and I don't wish to have to look up each coordinate by hand. TIA Clint -- Clint Bowman INTERNET: clint at ecy.wa.gov Air Quality Modeler INTERNET: clint at math.utah.edu Department of Ecology VOICE: (360) 407-6815 PO Box 47600 F...
2002 Jun 12
6
Rcmd on Windows
Hi there, I was tryting to use "Rcmd SHLIB --help" on Windows RGui. However it always gives me sytax error message. I wonder whether you have any suggestion. Thanks in advance! Best, Yunda -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[u...
2004 Nov 29
1
root ownership on some profile files cause login errors
...g) profiles on my Network Appliance (which itself is an SMB/PDC client). A previous admin here left this commented section: #[profiles] # path = /var/lib/samba/profiles # path = /netapp/profiles ??? # read only = no # create mask = 0600 # directory mask = 0700 So, is this the sytax for masks? Do I add "create mask = 0744" -OR- "force create mask = 0744"? Where do I put it? Anywhere in smb.conf? Should the mask be 0077? (it's a mask, not chown notation, right??) PS, When I had Windows login trouble, these perms tweaks fixed it: /home/profiles# cho...
2004 Jul 17
1
Using a group variable for a group ofextension to dial
...ntext. Essentually, I want to be able to designate 3 > people as sales and have my IVR handoff and ring their extensions in > order. Then maybe I will ahve a couple of people I group together and > have them ring if someone selects 2 on the IVR for tech support. > Someone used some sytax that employed something like ($GROUP1, GROUP2, > GROUP3) that accomplished this but I cannot find any reference to it > after googling since ysterday. Does anyone know how to accomplish > this task? > > Thanks, > Wiley > -- Seth Remington SaberLogic, LLC 661-B Weber Driv...
2009 Jul 23
3
how to predict dynamic model in R
I have a dynamic time series model like this: dyn$lm( y ~ lag(y,-1) + x + lag(x,-1)+lag(x,-2) ) I need to do an out of sample forecast with this model. Is there any way I can do this with R? It would be greatly appreciated if some one can give me an example. Thanks. Harry [[alternative HTML version deleted]]
2004 Jul 17
1
Using a group variable for a groupofextension to dial
...le to designate 3 > > people as sales and have my IVR handoff and ring their extensions in > > order. Then maybe I will ahve a couple of people I group together > > and > > > have them ring if someone selects 2 on the IVR for tech support. > > Someone used some sytax that employed something like ($GROUP1, > > GROUP2, > > GROUP3) that accomplished this but I cannot find any reference to it > > after googling since ysterday. Does anyone know how to accomplish > > this task? > > > > Thanks, > > Wiley > > >...
2013 Sep 17
0
[LLVMdev] [patch] alias instruction for Intel syntax
this patch prints out alias instruction for Intel sytax in diasm code. thanks. Jun diff --git a/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp b/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp index e7e7b15..b9f78a5 100644 --- a/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp +++ b/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp @@ -39,7...
2015 Dec 09
0
CentOS 6, bareos, kerberos?
On Wed, Dec 09, 2015 at 09:22:29AM -0500, m.roth at 5-cent.us wrote: > After upgradeding to bareos 15.2, which also has a web ui, thereby making > it usable (since the command line tool, bconsole, does not have a paging > mechanism, and its sytax for choosing files to restore is, let us say, > arcane), I've got another question: is *anyone* using bareos with > kerberos? I see that they have in alpha(?) tls support, which isn't a > great idea, given the recent vulnerabilities.... If you've figured out how > to use ker...
2006 Apr 04
0
Parsing a SQL file directly into activerecord::executemethod - Not a vamp I swear
...lobals = (ActiveRecord::StatementInvalid) SET @rightnow =3D current_timestamp; It appears that Active Record is parsing each statement for validity and = does not like comments. (And maybe something else here..) =20 Is there a way to force it to simply issue the command and quit worrying = about sytax? I''ve looked through the Rails source a bit.. Can''t seem to really find = where it is actually doing a syntax check. Maybe the error is actually = from MYSQL? B --------------------------- Brian Corrigan --------------------------- -----Original Message----- From: rails-boun...
2002 Jun 14
0
Rcmd on Windows (fwd)
...have done wrong? Thanks a lot for any suggestion! Best, Yunda On Wed, 12 Jun 2002, Uwe Ligges wrote: > > > Yunda Huang wrote: > > > > Hi there, > > > > I was tryting to use "Rcmd SHLIB --help" on Windows RGui. However it always > > gives me sytax error message. I wonder whether you have any suggestion. > > Thanks in advance! > > You have to call Rcmd from the windows shell, not within R (if I > understood right). > It works for me on R-1.5.0 (patched), WinNT4.0. Do you have installed a > recent version of perl? > Pl...
2006 Apr 04
0
Parsing a SQL file directly intoactiverecord::executemethod - Not a vamp I swear
...lobals = (ActiveRecord::StatementInvalid) SET @rightnow =3D current_timestamp; It appears that Active Record is parsing each statement for validity and = does not like comments. (And maybe something else here..) =20 Is there a way to force it to simply issue the command and quit worrying = about sytax? I''ve looked through the Rails source a bit.. Can''t seem to really find = where it is actually doing a syntax check. Maybe the error is actually = from MYSQL? B --------------------------- Brian Corrigan --------------------------- -----Original Message----- From: rails-boun...
2006 Aug 01
3
Rails Application Failed to start properly
Hi all, I have created a new application and Its working fine in my local system and also in the server. But after some days I have added one new controller(projects) in the admin module so that the admin can manage the projects. Its also working good. All the things are working in the application but in the admin module, admin should see the list of users and if the admin click on