search for: xit

Displaying 16 results from an estimated 16 matches for "xit".

Did you mean: it
2007 Sep 30
1
Perl example of using termitrator?
...ing in the blind here) foreach my $match ( @matches ) { my %hit; my %ht; my $doc = $match->get_document(); my $per = $match->get_percent(); my $id = $match->get_docid(); my $bterm = $enq->get_matching_terms_begin($id); for(my $xit=$bterm;$xit != $enq->get_matching_terms_end($id);$xit++) { my $term=$xit; print $term; } Which doesn't really make any sense. Xit is a string and I don't see how incrementing a string will do anything useful. So how do you increment the iterator? I...
2017 May 05
2
tabs ignored in here document
On 5/5/2017 1:41 PM, Robert Moskowitz wrote: > > I just did a test where I created a file, xit, with the here document > in it and ran it with ./xit > > This way, the tabs remained. So the 'problem' is when I am pasting > the same lines (with tabs) into the terminal window. There bash is > interpreting the tabs and not feeding them into the here doc processing. y...
2013 Aug 21
2
Perl interface isn't working in 1.2.x
...my $totTime=0; foreach my $match ( @matches ) { my $doc = $match->get_document(); my $id = $match->get_docid(); my $eterm = $enq->get_matching_terms_end($id); my $bterm = $enq->get_matching_terms_begin($id); my @terms; for(my $xit=$bterm;$xit != $eterm;++$xit) { my $foo ="$xit"; $foo =~s/^Z//; $foo =~s/^A//; push(@terms,$foo); } } What's happening is a seg fault at the "push" because $foo is an empty hash. On the correctly working sy...
2017 May 05
2
tabs ignored in here document
...through cut-n-paste. Cut from my web howto into a terminal window (screen usbtty into the Centos server). Is Terminal suppressing the tabs from the clipboard? I am using Xfce. > > cat <<\EOF > 00-init.conf ... > ... > EOF > >> cat <<EOF>00-init.conf || exit 1 >> ServerAdmin $admin_email >> ServerName $your_host_tld >> <VirtualHost *:80> >> <Directory "/var/www/html"> >> Options Indexes FollowSymLinks >> AllowOverride None >> Require all granted >> &lt...
2013 Aug 26
2
Perl interface isn't working in 1.2.x
On 08/25/2013 05:02 PM, Olly Betts wrote: > So the simple fix is > probably just to install the perl-Search-Xapian RPM instead. Thanks, the Centos 6 repos don't have that rpm and the http://xapian.org/download page seems to only cover the XS bindings, if I am reading this correctly: But I was able to remove the rpm packages and compile and install the core and swig from source.
2017 May 05
0
tabs ignored in here document
...shell from expanding: > > I tried that earlier, and \EOF did not help. And I have env variables > in the here doc I need replaced. If I had to SED the file as a second > step, I would have. But like I said, \EOF did not make a difference. I just did a test where I created a file, xit, with the here document in it and ran it with ./xit This way, the tabs remained. So the 'problem' is when I am pasting the same lines (with tabs) into the terminal window. There bash is interpreting the tabs and not feeding them into the here doc processing. > > I just tried th...
2017 May 05
0
tabs ignored in here document
On 05/05/2017 04:46 PM, John R Pierce wrote: > On 5/5/2017 1:41 PM, Robert Moskowitz wrote: >> >> I just did a test where I created a file, xit, with the here document >> in it and ran it with ./xit >> >> This way, the tabs remained. So the 'problem' is when I am pasting >> the same lines (with tabs) into the terminal window. There bash is >> interpreting the tabs and not feeding them into the here...
2007 Nov 04
1
hierarchical mixed model
I would like to fit a 2-level mixed model: yit=a+a[i]+a[it] +(b+b[i]+b[it])*xit+eps[it] However, the variance of the second level components should depend on the group, i.e. sigma for a[it] and b[it] should be [i] specific. I do not know whether this is conceptually right in the mixed model context... In case it stands, how should the formula look like? Also, the data ar...
2008 Mar 14
2
Disabling a set of tests?
Hi all, Part of the integration test suite involves running against a sandbox on Paypal''s server. Lately that server''s been acting flakely. It doesn''t fail all the time, but enough to confuse people. I made pending some tests that looked like they were repeat offenders, but now I''m seeing the same thing appear elsewhere. Is there any way to disable all the
2010 Apr 02
1
GE lanpor ups monitored with SNMP stop to monitor after upgrade
...2] [162] [162] [162] W. modaddr = [0] 8. get-community = [public] 9. set-community = [public] A. sys-contact = [The contact person for this agent] B. sys-name = [The administrative name of the agent] C. sys-location = [Somethere] D. upsName = [lanproups] E. upsAttachedDev = [xit] F. snmpport = [161] H. telnet server = [on] G. httpport = [80] I. http server = [on] J. telnet/http username = [GE] K. change telnet/http password L. update firmware M. MAC N. reboot O. cardaddr = [0] P. upsaddr = [0] Q. logout S. ethernet = [Auto] GE> ------...
2012 Apr 24
8
[PATCH v2] libxl: prevent xl from running if xend is running.
...int argc, char **argv) case ''N'': dryrun_only = 1; break; + case ''f'': + force_execution = 1; + break; default: fprintf(stderr, "unknown global option\n"); exit(2); @@ -162,6 +169,19 @@ int main(int argc, char **argv) ret = 1; goto xit; } + if (cspec->modifies) { + for (int i = 0; i < sizeof(locks)/sizeof(locks[0]); i++) { + if (!access(locks[i], F_OK) && !force_execution) {...
2009 Nov 18
6
[PATCH 1/3] libxenlight: Clean up logging arrangements
...9;s pid"); return -1; } xs_rm(ctx->xsh, XBT_NULL, libxl_sprintf(ctx, "/local/domain/0/device-model/%d", domid)); ret = kill(atoi(pid), SIGHUP); if (ret < 0 && errno == ESRCH) { - XL_LOG(ctx, XL_LOG_DEBUG, "Device Model already exited\n"); + XL_LOG(ctx, XL_LOG_DEBUG, "Device Model already exited"); ret = 0; } else if (ret == 0) { - XL_LOG(ctx, XL_LOG_DEBUG, "Device Model signaled\n"); + XL_LOG(ctx, XL_LOG_DEBUG, "Device Model signaled"); ret = 0;...
2010 Aug 12
0
[PATCH, v2]: xl: Implement per-API-call garbage-collection lifetime
...file); logfile_w = open(logfile, O_WRONLY|O_CREAT, 0644); free(logfile); null = open("/dev/null", O_RDONLY); if (starting_r) { rc = ERROR_NOMEM; - *starting_r = libxl_calloc(ctx, sizeof(libxl_device_model_starting), 1); - if (!*starting_r) goto xit; + *starting_r = calloc(sizeof(libxl_device_model_starting), 1); + if (!*starting_r) + goto out_close; p = *starting_r; - p->for_spawn = libxl_calloc(ctx, sizeof(libxl_spawn_starting), 1); + p->for_spawn = calloc(sizeof(libxl_spawn_starting), 1)...
2011 Jun 02
48
[PATCH 0/9] libxl: disk configuration handling
This is v3 of my disk series. What were previously patches 01-06 have been applied. These are the tested and updated remainder, addressing the previous comments. 1 Preparatory work. 2-4 The new parser and its documentation. 5-6 Replace old parsers with calls to the new one. 7-8 Two features, one of them essential. 9 Basic test suite for disk string parsing, as adhoc script.
2003 Dec 01
0
No subject
...@echo Could not connect to your HOME directory @echo Windows will not work correctly unless @echo this happens. You MUST log off and try again. @echo . @echo When you have read and UNDERSTOOD this pause :fok <snip some more shares> rem Safer than pause? choice /T:Y,5 Press Y to continue. :xit </extract> > I'll asume that the logon.bat is made from notepad (windows style eol, not > unix's). Yep. > is the share available from the client (the netlogon one)? yes > can you execute it from the client (the logon.bat sitting on the server) > after the logon man...
2005 Jun 19
1
got a question
Hey there, cool product, my family and i are wanting to build a kids streaming educational radio station. This is the perfect thing for it. i did the install (Arch Linux) and apparently i am serving correctly. i built a test play list with four tracks into a file mystream.ogg.m3u when i go on my computer and go to localhost:8000/mystream.ogg.m3u everything works great. but when i go to the