Displaying 7 results from an estimated 7 matches for "begi".
Did you mean:
begin
2014 Apr 13
2
Adding an external library to Xapian
It is there:
https://github.com/sidmutha/xapian/blob/master/xapian-core/api/Makefile.mk#L53
On an other note, I'm trying to run ./bootstrap from the cloned repo. But
it gives an error saying "unknown option -C" followed by "Bootstrap failed".
*Siddhant Mutha*
Undergraduate Student
Department of Computer Science and Engineering
IIT Madras
Chennai
2006 Sep 12
5
32E (64bit) VMX keyboard is out of control, if given an addition ''hde''
Hi,
This issue only happens on my IA32E VMX domain. IA32 VMX domain is okay.
I am trying VBD disk in IA32E VMX domain. I used following disk configuration to create an IA32E VMX domain.
disk = [ ''file:/mnt/disk1.img,hda,w'', ''file:/mnt/disk2.img,hde,w'' ]
After creating VMX, its keyboard can not be used properly. For example, if pressing
2014 Apr 13
2
Adding an external library to Xapian
...:add_term(std::string term) {
> struct trie_node *curr_node = &root;
> - for (int i = 0; i < term.size(); ++i) {
> + for (unsigned int i = 0; i < term.size(); ++i) {
> for (vector<trie_node *>::iterator it =
> curr_node->children.begi
> it != curr_node->children.end(); ++it) {
> - if (*it->value == term[i]) {
> + if ((*it)->value == term[i]) {
> curr_node = *it;
> break;...
2017 Oct 16
0
Download data from NASA for multiple locations - RCurl
...the following:
>
> ###
> dput(head(x,15))
> c("Metadata for Requested Time Series:", "", "prod_name=GLDAS_NOAH025_3H_v2.0",
> "param_short_name=Tair_f_inst", "param_name=Near surface air temperature",
> "unit=K", "begin_time=1970-01-01T00", "end_time=1979-12-31T21",
> "lat= 42.36", "lon=-71.06", "Request_time=2017-10-15 22:20:03 GMT",
> "", "Date&Time Data", "1970-01-01T00:00:00\t267.769",
> "1970-01-01T0...
2017 Oct 16
1
Download data from NASA for multiple locations - RCurl
...> > dput(head(x,15))
> > c("Metadata for Requested Time Series:", "", "prod_name=GLDAS_NOAH025_3H_
> v2.0",
> > "param_short_name=Tair_f_inst", "param_name=Near surface air
> temperature",
> > "unit=K", "begin_time=1970-01-01T00", "end_time=1979-12-31T21",
> > "lat= 42.36", "lon=-71.06", "Request_time=2017-10-15 22:20:03 GMT",
> > "", "Date&Time Data", "1970-01-01T00:00:00\t267.769",
> > "...
2017 Oct 15
2
Download data from NASA for multiple locations - RCurl
...uestion:
The output looks like the following:
###
dput(head(x,15))
c("Metadata for Requested Time Series:", "",
"prod_name=GLDAS_NOAH025_3H_v2.0",
"param_short_name=Tair_f_inst", "param_name=Near surface air temperature",
"unit=K", "begin_time=1970-01-01T00", "end_time=1979-12-31T21",
"lat= 42.36", "lon=-71.06", "Request_time=2017-10-15 22:20:03 GMT",
"", "Date&Time Data", "1970-01-01T00:00:00\t267.769",
"1970-01-01T03:00:00\t264.595&q...
2012 Aug 23
1
GotoIf redirection to label not working correctly
...s:
[internal]
exten => _3XX,1,NoOp()
same => n,Set(E=${EXTEN})
same => n,Set(${E}_VMCONTEXT=${HOTDESK_INFO(vmcontext,${E})})
same => n,Set(USER_LOCATION=${HOTDESK_USER_STATUS(${E})})
same => n,GotoIf($[${ODBCROWS} < 1]?notloggedin)
same => n,Dial(SIP/${USER_LOCATION},20,wWU(blf-begincall^${E}^INUSE)b(blf-begincall^s^1(${E}^RINGING)))
same => n,Voicemail(${E}@${${E}_VMCONTEXT},b)
same => n,Hangup()
same => n(notloggedin),Set(LOGGED_OFF=1)
same => n,Voicemail(${E}@${${E}_VMCONTEXT},u)
same => n,Hangup()
In both Asterisk 10 and Asterisk 11, the GotoIf does not wor...