Home
last modified time | relevance | path

Searched refs:timeoutDate (Results 1 – 6 of 6) sorted by relevance

/dports/devel/sope2/SOPE/sope-appserver/NGObjWeb/
H A DWOServerSessionStore.m49 NSDate *timeoutDate; field
55 - (NSDate *)timeoutDate; method
219 NSDate *timeOutDate = [info timeoutDate];
270 if ([_session respondsToSelector:@selector(timeoutDate)]) {
271 self->timeoutDate = [(id)_session timeoutDate];
276 self->timeoutDate = (timeOut > 0.0)
280 self->timeoutDate = RETAIN(self->timeoutDate);
291 [self->timeoutDate release];
298 - (NSDate *)timeoutDate { method
299 return self->timeoutDate;
/dports/devel/sope/SOPE/sope-appserver/NGObjWeb/
H A DWOServerSessionStore.m49 NSDate *timeoutDate; field
55 - (NSDate *)timeoutDate; method
219 NSDate *timeOutDate = [info timeoutDate];
270 if ([_session respondsToSelector:@selector(timeoutDate)]) {
271 self->timeoutDate = [(id)_session timeoutDate];
276 self->timeoutDate = (timeOut > 0.0)
280 self->timeoutDate = RETAIN(self->timeoutDate);
291 [self->timeoutDate release];
298 - (NSDate *)timeoutDate { method
299 return self->timeoutDate;
/dports/lang/fpc-source/fpc-3.2.2/packages/cocoaint/src/gamekit/
H A DGKTurnBasedMatch.inc77 function timeoutDate: NSDate; message 'timeoutDate';
163 function timeoutDate: NSDate; message 'timeoutDate';
/dports/www/firefox-legacy/firefox-52.8.0esr/browser/modules/
H A DDirectoryLinksProvider.jsm473 * and returns an object containing a use flag and the timeoutDate milliseconds
476 * @return object {use: true or false, timeoutDate: milliseconds or null}
483 return {use: false, timeoutDate: link.startTime};
491 // otherwise link is still ok, but we need to set timeoutDate
492 return {use: true, timeoutDate: link.endTime};
494 // if we are here, the link is ok and no timeoutDate needed
903 let {use, timeoutDate} = this._testLinkForCampaignTimeLimits(suggestedLink);
905 if (timeoutDate && (!nextTimeout || nextTimeout > timeoutDate)) {
906 nextTimeout = timeoutDate;
/dports/x11-toolkits/gnustep-gui/libs-gui-gui-0_28_0/Source/
H A DNSPasteboard.m2039 NSDate *timeoutDate;
2081 timeoutDate = [NSDate dateWithTimeIntervalSinceNow: 5.0];
2084 && [timeoutDate timeIntervalSinceNow] > 0.0)
2088 beforeDate: timeoutDate];
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/repl/
H A Dreplication_coordinator_impl.cpp2919 auto timeoutDate = _repl->_replExecutor->now() + catchupTimeout; in start_inlock() local
2920 auto status = _repl->_replExecutor->scheduleWorkAt(timeoutDate, timeoutCB); in start_inlock()