search for: corespond

Displaying 20 results from an estimated 65 matches for "corespond".

Did you mean: correspond
2003 Mar 16
0
Subject: [tcng] X:Y to tcng corespondence !
> Message: 8 > Date: Fri, 14 Mar 2003 21:49:49 +0200 > From: raptor <raptor@tvskat.net> > To: lartc@mailman.ds9a.nl > Subject: [LARTC] [tcng] X:Y to tcng corespondence ! > > Is there a easy way that I to get class-id<----->tcng-class-path conversation.... and vs. versa.. > > --__--__-- There are couple files can be created by tcc: # cat a.tc dev "s0e0" { egress { drop if ip_proto == 30; class (<>)...
2006 Mar 15
7
matrix indexing
Can someone please give me a pointer here. I have two matrices matA A B C 1 5 2 4 2 2 4 3 3 1 2 4 matB A B C 1 TRUE FALSE TRUE 2 FALSE TRUE TRUE 3 FALSE FALSE FALSE how do I extract all the values from matA where the coresponding entry in matB == TRUE (or FALSE), perferably in vector form. Many thanks tom
2019 Oct 05
3
Differences between CentOS 7.x and CentOS 8.x OS
...;>>> between CentOS 7.x and CentOS 8.x OS. I look forward to hearing from you >>>> and thanks in advance. >>>> >>> In short, CentOS 7.x is based on Fedora 19 while CentOS 8 is based on >>> Fedora 28. Most of what is in those Fedora's is also in coresponding >>> CentOS version. Fedora's might be much easier to compare. > <snip> > >> This sort of cuts across two discussion threads but I found this one >> first.? Silly question: has anyone tried using the Mate or Xfce >> Fedora 28 spins as package sources wit...
2019 Oct 03
4
Differences between CentOS 7.x and CentOS 8.x OS
Hi, I will appreciate it if someone can help me understand the differences between CentOS 7.x and CentOS 8.x OS. I look forward to hearing from you and thanks in advance. Best Regards, Kaushal
2019 Oct 04
2
Differences between CentOS 7.x and CentOS 8.x OS
...n help me understand the differences >> between CentOS 7.x and CentOS 8.x OS. I look forward to hearing from you >> and thanks in advance. >> > In short, CentOS 7.x is based on Fedora 19 while CentOS 8 is based on > Fedora 28. Most of what is in those Fedora's is also in coresponding > CentOS version. Fedora's might be much easier to compare. > > > >> Best Regards, >> >> Kaushal >> _______________________________________________ >> CentOS mailing list >> CentOS at centos.org >> https://lists.centos.org/mailman/listinf...
2003 Oct 22
2
High frequency time-series
...===================== ......... > I have a series of hourly rainfall and quarterly flow > measurements (i.e. 4 times an hour) of a catchment ........ > Maybe time series are easier, but in > > ts(data = NA, start = X,... > > X should be a number or a vector. how does this coresponds to a > data and hour (e.g. april 26,2002, 15:00:00)? If your observations are equidistant, e.g. you've got 24 hourly measurements per day, you could do something like this for the above example: R> rain <- ts(rain, start = c(26, 15), freq = 24) R> flow <- ts(flow, star...
2007 Sep 10
1
downloading an src.rpm?
Hello, I've got the rpmforge repo configured as a 3rd party repo. There's an rpm that i'd like to get the coresponding src.rpm, install it, and recompile it. How would i do this with yum? Thanks. Dave.
2005 Sep 12
1
Can't see windows shares by name
Hello all, I am having a small problem with a bsd box of mine. Using the file manager in kde, I can type \\ip_address and get prompted for a username and password for the coresponding server on my domain. However, When I type, \\servername, I again get prompted for a username and password, but it gets rejected. I think it is having problems looking up the name ... which is kind of strange to me as I can ping the server by name. Does any one have an idea how to fix this...
2010 Jan 24
2
fetching columns from another file
..." "0.9946130" "0.9938905" "0.9945572" "0.9945285" [6,] "3594_f_at" "3371_f_at" "0.9946130" "0.9938905" "0.9945572" "0.9945285" Now, I wish to pick column 1&2 from 'ptable' and their coresponding columns from 'table' and store it in a variable. I did following and got error > PCC=apply(ptable[,c(1,2)],1,function(x)table[x[1],x[2]]) Error in FUN(newX[, i], ...) : subscript out of bounds I was expecting something like this >head(PCC) [1,] "3813_f_at" "3884_f_a...
2002 Apr 26
3
different data series on one graph
...nction does not support add=TRUE... Furthermore I'm not sure what's the best format for input data. Now it are two data frames with a time (POSIXct) and a rainfall/flow part. Maybe time series are easier, but in ts(data = NA, start = X,... X should be a number or a vector. how does this coresponds to a data and hour (e.g. april 26,2002, 15:00:00)? Thanks, Wouter Buytaert Institute for Land and Water Management Katholieke Universiteit Leuven --------------------------------------------------------------- -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-he...
2014 Feb 19
1
Dovecot, mysql, and quota
...the quota table i'd like to have the username field linked to my virtual_users table username field, so I don't have to set up two tables both with the same username information in it. Can someone check me on this design so that if I delete a virtual user out of the virtual_users table the coresponding row in the quota table is also eliminated? My second question has to do with global and per user quotas. If I have something like this: CREATE TABLE quota ( username varchar(100) not null, bytes bigint not null default 262144, messages integer not null default 0, primary key (username)...
2009 Feb 13
1
Add columns to data frame automatically
Hello fellows: I've een trying to set up a function that performs 100 loops producing the coresponding 100 series. I want to save all those datasets in a dataframe, so I wrote this... prep <- function() # Clase[1]/Categoria[2]/Phi[3]/Rf[4] peso <- c(.0,.03,.3,.6) # Extension del calculo for (i in 1:100) { # Calculos de todas las curvas # Variables (Valor Base) abase <- Al...
2010 Mar 30
1
dataframe in loop
...dno) y$key<-paste(y.crspfundno$crsp_fundno) v.fundno<-intersect(g$key,y$key) (using intersect to get crsp_fundno of G-style mutual funds which is still alive.) v.fundno What i need to do next is using the v.fundno I got to query from another table "Monthly_return" to get the mret coresponding to every v.fundno. I have only a basic idea of the code: for (i in 1:length(v.fundno)){ gmret<-sqlQuery(channel,paste("select mret from Monthly_returns where crsp_fundno =",test[i],'and caldt > 19900630 order by caldt')) } The loop doesn't work:( I realize it might...
2013 Dec 26
1
tests with metadata module
...919 killed with signal 6 (core dumps disabled) I logged imap sessions in roundcube and I have: A0003 GETMETADATA "*" (/private/vendor/kolab/folder-type /shared/vendor/kolab/folder-type) On a similar server with the "old" metadata plugin, I have here listed all folders with coresponding annotations. How I can debug further? This is a test server so I can stress it. -- Mihai B?dici http://mihai.badici.ro -----------------------------------------
2006 Sep 20
2
Defining function in template files?
...However, running this gives on a node with "apt-stable" class included gives: lycastus:~# puppetd --test err: Could not retrieve configuration: Failed to parse template etc/apt/sources.list.erb: bad value for range in file /etc/puppet/manifests/classes/apt.pp at line 11 Line 11 coresponds to the line in apt.pp holding: content => template("$conffile.erb") I can run this code as a stand-alone ruby program and it works. Am I doing something wrong or is this not supported? Also, is there any good documentation on ERB beyond what is here: http://www.ruby-doc.org/std...
2004 Sep 17
1
R CMD check does not checks for superfluous documentation (PR#7231)
Hi! Due to package maintenance I have removed some functions but forgot to update the coresponding Rd files. If R CMD check is checking for missing documentation entries why it does not check for documentation entries which tell the user about nonexisting funcitons? In my opinion checking for documentation entries that document non-existing functions is much more important than the other wa...
2010 Mar 24
3
string problems in R
...undno) y$key<-paste(y.crspfundno$crsp_fundno) v.fundno<-intersect(g$key,y$key) (using intersect to get crsp_fundno of G-style mutual funds which is still alive.) v.fundno What i need to do next is using the v.fundno I got to query from another table "Monthly_return" to get the mret coresponding to every v.fundno. I have only a basic idea of the code: for (i in 1:length(v.fundno)){ gmret<-sqlQuery(channel,"select mret from Monthly_returns where crsp_fundno = toString(v.fundno[i])") } gmret R gave me an error with undefined function "toString" I know there should b...
2010 Aug 24
0
[LLVMdev] help converting llvm metadata into dwarf tags
...uctions are converted into MachineInstr during instruction selection time. At this point you need to transfer your custom metadata to MachineInstr. See how DebugLoc is transfered (in CodeGen/SelectionDAG directory). 2) At AsmPrint time, while emitting your assembly instructions you have access to coresponding MachineInstr and any custom metadata attached with it. > > I've found the tag definitions in include/llvm/Support/Dwarf.h and added my > own. > lib/CodeGen/AsmPrinter/DwarfDebug.cpp seems to be the only place that emits > dwarf data into the assembly stream. > See have Dw...
2006 Jul 07
4
How to add Asia token analyzer to ferret simply?
Hi,David Can you give me an example of how to add analyzer to ferret to Asian languages? My web application will have to support multi language search,which means,for example,both Chinese and English will be searched through the form. Currently,I have decided to use the simple token principles,which means that every Chinese character will be a token,although this is not so well in some
2006 Dec 10
5
TDM2400
I have one TDM2404E digium card on asterisk box, after configuring the zaptel and zapata configuration files, I am getting these errors when reloading asterisk: ast_unregister_indication_country: Removed default indication country 'us' setup_zap: Ignoring signalling setup_zap: Ignoring answeronpolarityswitch unable to recognize channel 13-5 what is the reason for that? Thanks,