Home
last modified time | relevance | path

Searched refs:_timestamp (Results 1 – 25 of 906) sorted by relevance

12345678910>>...37

/dports/math/vampire/vampire-4.5.1/Lib/
H A DArrayMap.hpp125 ASS_NEQ(e._timestamp,_timestamp); in insert()
127 e._timestamp=_timestamp; in insert()
143 e._timestamp=_timestamp; in set()
154 ASS_EQ((*this)[index]._timestamp,_timestamp); in get()
165 if((*this)[index]._timestamp!=_timestamp) { in get()
181 return (*this)[index]._timestamp==_timestamp; in find()
196 if((*this)[index]._timestamp==_timestamp) { in find()
211 ASS((*this)[index]._timestamp==_timestamp); in remove()
227 if(e._timestamp!=_timestamp) { in getValuePtr()
228 e._timestamp=_timestamp; in getValuePtr()
[all …]
H A DDHMap.hpp165 unsigned oldTS=_timestamp; in reset()
166 _timestamp++; in reset()
173 _timestamp=1; in reset()
301 e->_info.timestamp=_timestamp; in insert()
328 e->_info.timestamp=_timestamp; in findOrInsert()
357 e->_info.timestamp=_timestamp; in findOrInsert()
387 e->_info.timestamp=_timestamp; in getValuePtr()
579 _timestamp=1; in expand()
685 unsigned _timestamp; member in Lib::DHMap
708 _timestamp(map._timestamp) {} in IteratorBase()
[all …]
/dports/security/py-dfdatetime/dfdatetime-20210509/dfdatetime/
H A Dposix_time.py45 self._timestamp = timestamp
50 return self._timestamp
103 if self._timestamp is None:
107 self._timestamp)
138 self._timestamp = timestamp
143 return self._timestamp
197 self._timestamp = timestamp
207 if self._timestamp is None:
243 self._timestamp = timestamp
248 return self._timestamp
[all …]
H A Dapfs_time.py31 if (self._timestamp is not None and self._timestamp >= self._INT64_MIN and
32 self._timestamp <= self._INT64_MAX):
34 decimal.Decimal(self._timestamp) /
59 if (self._timestamp is None or self._timestamp < self._INT64_MIN or
60 self._timestamp > self._INT64_MAX):
70 if (self._timestamp is None or self._timestamp < self._INT64_MIN or
71 self._timestamp > self._INT64_MAX):
H A Dhfs_time.py44 self._timestamp = timestamp
49 return self._timestamp
61 if (self._timestamp is not None and self._timestamp >= 0 and
62 self._timestamp <= self._UINT32_MAX):
64 decimal.Decimal(self._timestamp) - self._HFS_TO_POSIX_BASE)
100 self._timestamp = self._GetNumberOfSecondsFromElements(
102 self._timestamp += self._HFS_TO_POSIX_BASE
112 if (self._timestamp is None or self._timestamp < 0 or
113 self._timestamp > self._UINT32_MAX):
117 self._timestamp)
H A Dwebkit_time.py44 self._timestamp = timestamp
49 return self._timestamp
60 if (self._timestamp is not None and self._timestamp >= self._INT64_MIN and
61 self._timestamp <= self._INT64_MAX):
63 decimal.Decimal(self._timestamp) /
104 self._timestamp = timestamp
114 if (self._timestamp is None or self._timestamp < self._INT64_MIN or
115 self._timestamp > self._INT64_MAX):
119 self._timestamp, definitions.MICROSECONDS_PER_SECOND)
H A Dfiletime.py47 self._timestamp = timestamp
52 return self._timestamp
64 if (self._timestamp is not None and self._timestamp >= 0 and
65 self._timestamp <= self._UINT64_MAX):
67 decimal.Decimal(self._timestamp) / self._100NS_PER_SECOND)
111 self._timestamp = timestamp
121 if (self._timestamp is None or self._timestamp < 0 or
122 self._timestamp > self._UINT64_MAX):
125 timestamp, remainder = divmod(self._timestamp, self._100NS_PER_SECOND)
H A Duuid_time.py52 self._timestamp = timestamp
57 return self._timestamp
69 if (self._timestamp is not None and self._timestamp >= 0 and
70 self._timestamp <= self._UINT60_MAX):
72 decimal.Decimal(self._timestamp) / self._100NS_PER_SECOND)
116 self._timestamp = timestamp
126 if (self._timestamp is None or self._timestamp < 0 or
127 self._timestamp > self._UINT60_MAX):
130 timestamp, remainder = divmod(self._timestamp, self._100NS_PER_SECOND)
H A Djava_time.py35 if (self._timestamp is not None and self._timestamp >= self._INT64_MIN and
36 self._timestamp <= self._INT64_MAX):
38 decimal.Decimal(self._timestamp) /
53 if (self._timestamp is None or self._timestamp < self._INT64_MIN or
54 self._timestamp > self._INT64_MAX):
H A Dcocoa_time.py44 self._timestamp = timestamp
49 return self._timestamp
60 if self._timestamp is not None:
62 decimal.Decimal(self._timestamp) - self._COCOA_TO_POSIX_BASE)
104 self._timestamp = timestamp
114 if self._timestamp is None:
118 int(self._timestamp))
124 (self._timestamp % 1) * definitions.MICROSECONDS_PER_SECOND)
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/repl/
H A Doptime.h73 OpTime() : _timestamp(Timestamp(0, 0)), _term(kUninitializedTerm) {} in OpTime()
74 OpTime(Timestamp ts, long long term) : _timestamp(std::move(ts)), _term(term) {} in OpTime()
77 return _timestamp; in getTimestamp()
81 return _timestamp.getSecs(); in getSecs()
109 return _timestamp.isNull(); in isNull()
116 return _timestamp == rhs._timestamp;
119 return std::tie(_term, _timestamp) == std::tie(rhs._term, rhs._timestamp);
130 return _timestamp < rhs._timestamp;
133 return std::tie(_term, _timestamp) < std::tie(rhs._term, rhs._timestamp);
158 Timestamp _timestamp;
/dports/devel/hadoop/jetty-6.1.14/modules/util/src/main/java/org/mortbay/thread/
H A DTimeout.java117 if (task._timestamp>_expiry) in expired()
148 if (task==_head || task._timestamp>_expiry) in tick()
185 if (task._timestamp!=0) in schedule()
188 task._timestamp=0; in schedule()
193 task._timestamp = _now+delay; in schedule()
198 if (last._timestamp <= task._timestamp) in schedule()
272 long _timestamp=0; field in Timeout.Task
284 return _timestamp; in getTimestamp()
291 if (t!=null && t._now!=0 && _timestamp!=0) in getAge()
292 return t._now-_timestamp; in getAge()
[all …]
/dports/devel/hadoop2/jetty-6.1.14/modules/util/src/main/java/org/mortbay/thread/
H A DTimeout.java117 if (task._timestamp>_expiry) in expired()
148 if (task==_head || task._timestamp>_expiry) in tick()
185 if (task._timestamp!=0) in schedule()
188 task._timestamp=0; in schedule()
193 task._timestamp = _now+delay; in schedule()
198 if (last._timestamp <= task._timestamp) in schedule()
272 long _timestamp=0; field in Timeout.Task
284 return _timestamp; in getTimestamp()
291 if (t!=null && t._now!=0 && _timestamp!=0) in getAge()
292 return t._now-_timestamp; in getAge()
[all …]
/dports/astro/xtide/xtide-2.15.3/libxtide/
H A DDate.cc28 _timestamp(timestamp) { in Date()
29 _timestamp.floorDay (timezoneLocalVar); in Date()
35 _timestamp.nextDay (timezoneLocalVar); in operator ++()
41 return _timestamp.date (timezoneLocalVar); in date()
46 tm tempTm (_timestamp.tmStruct(timezoneLocalVar)); in dateStruct()
56 _timestamp.printDate (text_out, timezoneLocalVar); in print()
61 _timestamp.printCalendarDay (text_out, timezoneLocalVar); in printCalendarDay()
66 _timestamp.printCalendarHeading (text_out, timezoneLocalVar); in printCalendarHeading()
/dports/devel/py-aiortc/aiortc-1.2.1/src/aiortc/
H A Dmediastreams.py77 _timestamp: int
93 self._timestamp += samples
94 wait = self._start + (self._timestamp / sample_rate) - time.time()
98 self._timestamp = 0
103 frame.pts = self._timestamp
117 _timestamp: int
124 self._timestamp += int(VIDEO_PTIME * VIDEO_CLOCK_RATE)
125 wait = self._start + (self._timestamp / VIDEO_CLOCK_RATE) - time.time()
129 self._timestamp = 0
130 return self._timestamp, VIDEO_TIME_BASE
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/libosmium/test/t/osm/
H A Dtest_object_comparisons.cpp86 …de>(osmium::builder::add_node(buffer, _id( 0), _version(2), _timestamp("2016-01-01T00:0…
87 …de>(osmium::builder::add_node(buffer, _id( 1), _version(2), _timestamp("2016-01-01T00:0…
88 …de>(osmium::builder::add_node(buffer, _id( 10), _version(2), _timestamp("2016-01-01T00:0…
89 …de>(osmium::builder::add_node(buffer, _id( 10), _version(3), _timestamp("2016-01-01T00:0…
90 …de>(osmium::builder::add_node(buffer, _id( 12), _version(2), _timestamp("2016-01-01T00:0…
91 …de>(osmium::builder::add_node(buffer, _id( 12), _version(2), _timestamp("2016-01-01T00:0…
92 …de>(osmium::builder::add_node(buffer, _id( 15), _version(1), _timestamp("2016-01-01T00:0…
93 …de>(osmium::builder::add_node(buffer, _id(10000000000LL), _version(2), _timestamp("2016-01-01T00:0…
99 …t<osmium::Node>(osmium::builder::add_node(buffer, _id(1), _version(2), _timestamp("2016-01-01T00:0…
100 …t<osmium::Node>(osmium::builder::add_node(buffer, _id(1), _version(2), _timestamp("2016-01-01T00:0…
[all …]
/dports/deskutils/myitcrm/MyITCRM-0.2.9.3/include/swift/lib/classes/Swift/Mime/Headers/
H A DDateHeader.php28 private $_timestamp; variable in Swift_Mime_Headers_DateHeader
82 return $this->_timestamp;
95 $this->clearCachedValueIf($this->_timestamp != $timestamp);
96 $this->_timestamp = $timestamp;
110 if (isset($this->_timestamp))
112 $this->setCachedValue(date('r', $this->_timestamp));
/dports/net-mgmt/pandorafms_console/pandorafms_console-6.0SP2/include/swiftmailer/classes/Swift/Mime/Headers/
H A DDateHeader.php28 private $_timestamp; variable in Swift_Mime_Headers_DateHeader
82 return $this->_timestamp;
95 $this->clearCachedValueIf($this->_timestamp != $timestamp);
96 $this->_timestamp = $timestamp;
110 if (isset($this->_timestamp))
112 $this->setCachedValue(date('r', $this->_timestamp));
/dports/www/bolt/bolt-2.2.24/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/
H A DDateHeader.php23 private $_timestamp; variable in Swift_Mime_Headers_DateHeader
88 return $this->_timestamp;
101 $this->clearCachedValueIf($this->_timestamp != $timestamp);
102 $this->_timestamp = $timestamp;
118 if (isset($this->_timestamp)) {
119 $this->setCachedValue(date('r', $this->_timestamp));
/dports/devel/flyspray/flyspray-0.9.9.7_4/includes/external/swift-mailer/classes/Swift/Mime/Headers/
H A DDateHeader.php27 private $_timestamp; variable in Swift_Mime_Headers_DateHeader
83 return $this->_timestamp;
96 $this->clearCachedValueIf($this->_timestamp != $timestamp);
97 $this->_timestamp = $timestamp;
111 if (isset($this->_timestamp))
113 $this->setCachedValue(date('r', $this->_timestamp));
/dports/www/phpmyfaq/phpmyfaq/src/libs/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/
H A DDateHeader.php23 private $_timestamp; variable in Swift_Mime_Headers_DateHeader
88 return $this->_timestamp;
101 $this->clearCachedValueIf($this->_timestamp != $timestamp);
102 $this->_timestamp = $timestamp;
118 if (isset($this->_timestamp)) {
119 $this->setCachedValue(date('r', $this->_timestamp));
/dports/www/typo3-9/typo3_src-9.5.31/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/
H A DDateHeader.php23 private $_timestamp; variable in Swift_Mime_Headers_DateHeader
88 return $this->_timestamp;
101 $this->clearCachedValueIf($this->_timestamp != $timestamp);
102 $this->_timestamp = $timestamp;
118 if (isset($this->_timestamp)) {
119 $this->setCachedValue(date('r', $this->_timestamp));
/dports/www/kanboard/kanboard-1.2.21/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/
H A DDateHeader.php23 private $_timestamp; variable in Swift_Mime_Headers_DateHeader
88 return $this->_timestamp;
101 $this->clearCachedValueIf($this->_timestamp != $timestamp);
102 $this->_timestamp = $timestamp;
118 if (isset($this->_timestamp)) {
119 $this->setCachedValue(date('r', $this->_timestamp));
/dports/www/webtrees/webtrees-1.7.18/webtrees/vendor/swiftmailer/swiftmailer/lib/classes/Swift/Mime/Headers/
H A DDateHeader.php23 private $_timestamp; variable in Swift_Mime_Headers_DateHeader
88 return $this->_timestamp;
101 $this->clearCachedValueIf($this->_timestamp != $timestamp);
102 $this->_timestamp = $timestamp;
118 if (isset($this->_timestamp)) {
119 $this->setCachedValue(date('r', $this->_timestamp));
/dports/www/itop/web/lib/swiftmailer/lib/classes/Swift/Mime/Headers/
H A DDateHeader.php23 private $_timestamp; variable in Swift_Mime_Headers_DateHeader
88 return $this->_timestamp;
101 $this->clearCachedValueIf($this->_timestamp != $timestamp);
102 $this->_timestamp = $timestamp;
118 if (isset($this->_timestamp)) {
119 $this->setCachedValue(date('r', $this->_timestamp));

12345678910>>...37