search for: _temp

Displaying 15 results from an estimated 15 matches for "_temp".

Did you mean: temp
2009 Mar 25
4
Manual sort in a for loop
...numbers in the code). I have been able to carry out each re-arrangement without the use of the 'for' loop, but cannot seem to successfully execute the statements when incorporated into the loop. The code I have is as follows: table_year=1951 for (i in (paste("arunoff_",year,"_temp",sep=""))) { assign(paste("arunoff_",table_year, sep=""),paste("arunoff_",table_year,"_temp")[c(10,7,9,5,4,12,1,3,2,8,11,6),]) table_year = table_year+1 } The error I get is: Error in paste("arunoff_",...
2006 May 02
3
file_column : _temp field always nil
Hi, I''m trying to set up file_column to upload attachments for emails. My view has <td align="left"><%= file_column_field ''to_do'', ''attachment'' %></td> and the attachment_temp hidden field is generated. When I inspect tthe params on saving the form the attachment_temp param is always an empty string. Also, when I was setting this up I got a no method error attachment_temp on save and had to (temporarily I hope) add that field to the table. The to_do model has '...
2006 Mar 20
1
FileColumn question
Can someone please help me with this. I have an Images table :- create table images ( id integer unsigned not null auto_increment primary key, image varchar(200) not null default '''' )ENGINE=InnoDB default CHARSET=latin1; And a car table :- create table cars ( id integer unsigned not null auto_increment primary key, user_id integer unsigned not null, title varchar(100) not
2010 Jul 04
5
dovecot-1.2.12 fails to build on Solaris 8 and 10
configure fails with : configure: error: Unsupported off_t type I am not too sure what off_t is needed but this is a pretty standard thing. My configure line : ./configure --build=i386-pc-solaris2.10 --host=i386-pc-solaris2.10 --prefix=/opt/csw --with-zlib --with-ssl=openssl --with-storages=mbox,maildir --with-libiconv-prefix=/opt/csw Yes, the openssl libs are in /opt/csw/lib Not sure what
2013 Oct 29
2
Problem Building opus-1.0.3 on Microsoft Visual Studio 2012
I am using mvs 2012 but the .sln provided is of msv 2010 so on opening .sln it tries to update libraries which is successful but I am unable to build (compile) it as it gives series of errors. I am pretty new to these things so can anyone tell me if I am doing anything wrong or how to create(.lib and .dll) files so I can use them in my project. Please forgive me if I have asked something foolish.
2013 Oct 29
0
Problem Building opus-1.0.3 on Microsoft Visual Studio 2012
...fatal: No names found, cannot describe anything. > 1> The system cannot find the file C:\Users\user\Desktop\mUOn\Audio. > 1> #define OPUS_VERSION ""="> "C:\Users\user\Desktop\mUOn\Audio > Processing Libraries\opus-1.0.3\opus-1.0.3\celt\..\win32\version.h"_temp > 1> The syntax of the command is incorrect. The problem may be the space character in the directory path. Try renaming 'Audio Processing Libraries' to just 'Audio' or building opus-1.0.3 directly from your home directory. -r
2010 Jun 25
3
Thunderbird problem
Hello Some users had occasionally a problem with Thunderbird , some random emails with attachement(s) cannot be read anymore the email appears empty and TB seems to enter in an infinite loop saying it is downloading the message The only solution I found was : 1 - stop thunderbird on the client machine 2 - remove the .imap user's directory 3 - restart thunderbird on the client machine
2010 Dec 14
1
Installing R-packages in Windows
Hi there, I have the following problem and I hope somebody might help me. First of all: I am using WinXP SP3 (english and/or german) with R in Version 2.10.0. Now I am trying to install some packages but unfortunately I am getting a weird error. No matter which package I am trying to install - I nearly get the same error. It looks like this:
2009 Aug 04
0
Writing a NetCDF file in R
...e may be NAs). Here is my code so far: # READ IN NetCDF FILES FROM DISK library(ncdf) year <- 1986:1995 file_list <- paste("mrunoff-",year,".nc", sep="") file_list start <- 1986 for (i in file_list) { assign(paste("netcdf_",start,"_temp", sep=""),open.ncdf(i)) start = start+1 } # Start converting 10 files into 1 latitude <- get.var.ncdf(netcdf_1986_temp, "Lat") longitude <- get.var.ncdf(netcdf_1986_temp, "Lon") month <- get.var.ncdf(netcdf_1986_temp, "Mon")...
2009 Aug 05
0
ncdf package problem - put.var.ncdf
...below. Here is my code so far: # READ IN NetCDF FILES FROM DISK library(ncdf) year <- 1986:1995 file_list <- paste("mrunoff-",year,".nc", sep="") file_list start <- 1986 for (i in file_list) { assign(paste("netcdf_",start,"_temp", sep=""),open.ncdf(i)) start = start+1 } # Start converting 10 files into 1 latitude <- get.var.ncdf(netcdf_1986_temp, "Lat") longitude <- get.var.ncdf(netcdf_1986_temp, "Lon") month <- get.var.ncdf(netcdf_1986_temp, "Mon"...
2008 Oct 15
2
[LLVMdev] LLVM 2.4 problem? (resend)
...fer to members of the same namespace or to members, not by inheritance, of the same class; and --when both names denote functions, the function types are identical for purposes of overloading; and --when both names denote function templates, the signatures (_temp.over.link_) are the same. We know that they cannot have linkage across translation units because: --When a name has external linkage, the entity it denotes can be referred to by names from scopes of other translation units or from other scopes of the same translation unit....
2008 Oct 15
0
[LLVMdev] LLVM 2.4 problem? (resend)
On Oct 15, 2008, at 6:58 AM, Tatu Vaajalahti wrote: >> Yes, but why do you think they should get a different address? I can >> understand that it is surprising that they do, but determining >> whether >> this is legal or not requires reading the language standard. >> Hopefully >> a language lawyer can chime in and say whether this transform is >>
2008 Oct 15
4
[LLVMdev] LLVM 2.4 problem? (resend)
On 15.10.2008, at 16.43, Duncan Sands wrote: >> True, but note that it is the address of a variable that is used, not >> the value. > > Yes, but why do you think they should get a different address? I can > understand that it is surprising that they do, but determining whether > this is legal or not requires reading the language standard. > Hopefully > a language
2008 Oct 16
0
[LLVMdev] LLVM 2.4 problem? (resend)
On Oct 15, 2008, at 6:29 PM, Mike Stump wrote: > On Oct 15, 2008, at 1:09 PM, David Vandevoorde wrote: >> On Oct 15, 2008, at 3:53 PM, Mike Stump wrote: >> [...] >>> Objects are defined like so: >>> >>> Two pointers of >>> the same type compare equal if and only if they are both null, >>> both >>> point to the same object or
2008 Oct 15
3
[LLVMdev] LLVM 2.4 problem? (resend)
On Oct 15, 2008, at 1:09 PM, David Vandevoorde wrote: > On Oct 15, 2008, at 3:53 PM, Mike Stump wrote: > [...] >> Objects are defined like so: >> >> Two pointers of >> the same type compare equal if and only if they are both null, >> both >> point to the same object or function, or both point one past the >> end >> of the same array.