search for: query1

Displaying 14 results from an estimated 14 matches for "query1".

Did you mean: query
2002 Apr 29
1
I: Problem
...rw xx yu de qw ww zzp where aa is a node that has a path with aa, one with bb, and one with cc. bb has a path with xx, dd has a path with cv, one with st, ... In my experiment I have more or less 100 lines. My nodes are Web pages. I have another file that gives me a wich nodes are related with the query1 query1 0 aa 1 query1 0 cc 0 query1 0 dd 0 query1 0 cv 1 query1 0 rw 0 query1 0 qw 0 query1 0 ww 1 The query1 is not related with all the nodes of the scattered matrix but only with someone. The third column gives me which node is related with query1. This is the most important column. The second...
2002 Apr 15
8
Problem
Hello! If I have a matrix as 1 2 2 3 and I want to change the value 2 in 0, what can I do? Thank you -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !)
2007 Jul 28
1
Query1
Hi, I am facing problem in configuring D-channel for TE120P card.I did the following things /etc/zaptel.conf span=1,1,0,ccs,hdb3 bchan=1-15,17-31 dchan=16 /etc/asterisk/zaptel.conf group=1 signalling=pri_cpe
2006 Dec 18
2
AGI Help Please
...= str_replace("\"","",$env); $s = split(": ",$env); $agi[str_replace("agi_","",$s[0])] = trim($s[1]); if (($env == "") || ($env == "\n")) { break; } } // main program $clid = $agi[callerid]; connect_db(); $query1 = "SELECT * FROM cdr WHERE dst = '$clid' "; $query_result1 = @mysql_query($query1); $row_count = mysql_num_rows($query_result1); $row1 = @mysql_fetch_array ($query_result1); fputs($stdout,"There have been\n"); fputs($stdout,"$row_count calls made\n"); fflush(...
2015 Sep 11
0
xapian-core-1.0.23 compiled on Interix / Eric Lindblad
...tc \ --localstatedir=/var \ --mandir=/usr/man \ --docdir=/usr/doc/$PKGNAM-$VERSION \ --disable-static \ --enable-backend-remote=no $ gmake check PASS: btreetest PASS: quartztest Running test: weight1... FAILED ./apitest backend none: 36 tests passed, 1 failed. Running test: scaleweight1... FAILED query1: Xapian::Query(pad:(pos=1)) Running test: collapsekey2... SKIPPED Running test: metadata5... SKIPPED Running test: adddoc5... SKIPPED Running test: adddoc6... SKIPPED Running test: crashrecovery1... SKIPPED Running test: nomoredocids1... SKIPPED Running test: synonymitor1... SKIPPED Running test:...
2015 Sep 11
1
xapian 1.0.x compiled on Interix / Eric Lindblad
...tc \ --localstatedir=/var \ --mandir=/usr/man \ --docdir=/usr/doc/$PKGNAM-$VERSION \ --disable-static \ --enable-backend-remote=no $ gmake check PASS: btreetest PASS: quartztest Running test: weight1... FAILED ./apitest backend none: 36 tests passed, 1 failed. Running test: scaleweight1... FAILED query1: Xapian::Query(pad:(pos=1)) Running test: collapsekey2... SKIPPED Running test: metadata5... SKIPPED Running test: adddoc5... SKIPPED Running test: adddoc6... SKIPPED Running test: crashrecovery1... SKIPPED Running test: nomoredocids1... SKIPPED Running test: synonymitor1... SKIPPED Running test:...
2003 Nov 12
2
Media Negotiation Failed
Hi, I have this scenario Cisco 5300 (public ip. 200.47.xx.xx) <---> Asterisk (public ip: 64.76.xx.xx) <--> Cisco 3600 (public ip: 64.76.xx.xx , same network than * ) When a calls comes in Cisco 5300, this send this calls with SIP to *, asterisk plays a welcome message and resend call to Cisco 3600 that have 4 analog lines connected... but after cisco play welcome message and when
2010 Jul 21
0
[PATCH] RFC: Advanced Storage Configuration
...;${vgname}" | cut -f1)" fi rc=1 if [ -n "$devices" ]; then @@ -531,15 +575,29 @@ check_existing_hostvg() # - remove LVM volumes and groups wipe_lvm_on_disk() { - local dev=${1-"$HOSTVGDRIVE"} + local devs=${1-"$HOSTVGDRIVE"} + local query1= + local query2= unmount_logging - local part_delim="p" - if [[ "$dev" =~ "/dev/sd" ]]; then - part_delim="" - fi - for vg in $(pvs -o vg_uuid --noheadings "$dev" "$dev${dev_delim}[0-9]"* 2>/dev/null|sort -u);...
2007 Feb 02
1
Working demo of search engine using boolean query.
...->enquire(); #------------------------------------------------------------------------------# my @primary_terms = split ' ', $primary_terms; my @secondary_terms = split ' ', $secondary_terms; #------------------------------------------------------------------------------# my $query1 = Search::Xapian::Query->new( OP_OR, @primary_terms ); my $query2 = Search::Xapian::Query->new( OP_OR, @secondary_terms ); my $boolean_query = Search::Xapian::Query->new( OP_AND, $query1, $query2 ); $enq->set_query( $boolean_query ); #--------------------------------------------------...
2003 Nov 10
5
OT : For the SQL gurus..
SQL help needed.. If I have a MySQL table with dialing codes and a corresponding description (see below) and I want to lookup the best match for a phone number.. What would the SQL look like to do it? or would it take more than just SQL to get to the best result? Thanks.. Later.. Example numbers, (random end digits so I don't know who's they are.) 00442085673456 - UK London
2006 Apr 14
0
Calling variables dynamically
...pt that imports and compares results from various IR (information retrieval systems). Each imported file will contain results for multiple (50+) queries, each query can have 2000+ results. My immediate task is to import the files and assign the scores for each query to its own variable (e.g. File1-Query1, File1-Query2, etc) I've written code that reads in the data files and enters them as variables: res.paths <-file.path(choose.files("c:/res/*.*")) num.files<- NROW(res.paths) for (j in 1: num.files) { assign(paste("res",j, sep=""), read.table(res.paths[j])...
2006 Apr 14
0
Calling variables dynamically [Broadcast]
...results from various IR (information retrieval systems). Each > imported file will contain results for multiple (50+) > queries, each query can have 2000+ results. > > My immediate task is to import the files and assign the > scores for each query to its own variable (e.g. File1-Query1, > File1-Query2, etc) > > I've written code that reads in the data files and enters > them as variables: > > res.paths <-file.path(choose.files("c:/res/*.*")) > num.files<- NROW(res.paths) > for (j in 1: num.files) { > assign(paste("res"...
2006 Aug 17
8
Creating queries..
Hi, I am trying to implement a few queries now. What are good ways to do this? Right now, I have a list page that does sorting and can carry out a generic pagination request. @user_result_pages, @user_results = paginate(:user_results, :per_page => 20, :conditions => @condition, :order_by => @sort_order) I create @sort_order earlier in the list function. The problem I am having is
2006 Nov 30
3
newbie: new_data_frame <- selected set of rows
...work: for(i in distances[1:5]) top_five[i,] <- my_dataframe[i,] 2) after I got top_five I woul like to get the index of my query entry, something along Pythons top_five.index('query_string') 3) possibly combine values in distances with row names from my_dataframe: row_1 distance_from_query1 row_2 distance_from_query2 Thank you very much for your help Darek Kedra