Home
last modified time | relevance | path

Searched refs:pointInTime (Results 1 – 22 of 22) sorted by relevance

/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/SQLAdmin/
H A DCloneContext.php25 public $pointInTime; variable in Google_Service_SQLAdmin_CloneContext
65 public function setPointInTime($pointInTime) argument
67 $this->pointInTime = $pointInTime;
71 return $this->pointInTime;
/dports/sysutils/chaoskube/chaoskube-0.22.0/util/
H A Dutil.go33 func (tp TimePeriod) Includes(pointInTime time.Time) bool {
34 isAfter := TimeOfDay(pointInTime).After(tp.From)
35 isBefore := TimeOfDay(pointInTime).Before(tp.To)
43 return TimeOfDay(pointInTime).Equal(tp.From)
125 func TimeOfDay(pointInTime time.Time) time.Time {
126 …return time.Date(0, 0, 0, pointInTime.Hour(), pointInTime.Minute(), pointInTime.Second(), pointInT…
H A Dutil_test.go68 pointInTime time.Time
145 suite.Equal(tt.expected, tt.timeOfDay.Includes(tt.pointInTime))
185 pointInTime time.Time
199 suite.Equal(tt.expected, TimeOfDay(tt.pointInTime))
/dports/www/gitea/gitea-1.16.5/vendor/github.com/olivere/elastic/v7/
H A Dsearch_source.go46 pointInTime *PointInTime // pit member
375 func (s *SearchSource) PointInTime(pointInTime *PointInTime) *SearchSource {
376 s.pointInTime = pointInTime
617 if s.pointInTime != nil {
618 src, err := s.pointInTime.Source()
H A Dsearch_request.go418 func (s *SearchRequest) PointInTime(pointInTime *PointInTime) *SearchRequest {
419 s.searchSource = s.searchSource.PointInTime(pointInTime)
H A Dsearch.go157 func (s *SearchService) PointInTime(pointInTime *PointInTime) *SearchService {
158 s.searchSource = s.searchSource.PointInTime(pointInTime)
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/repl/
H A Dread_concern_args.cpp149 Timestamp pointInTime; in initialize() local
151 bsonExtractTimestampField(readConcernObj, kAtClusterTimeFieldName, &pointInTime); in initialize()
155 _pointInTime = LogicalTime(pointInTime); in initialize()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/storage/wiredtiger/
H A Dwiredtiger_snapshot_manager.cpp82 Status WiredTigerSnapshotManager::setTransactionReadTimestamp(Timestamp pointInTime, in setTransactionReadTimestamp() argument
87 readTSConfigString, sizeof(readTSConfigString), "read_timestamp=%llx", pointInTime.asULL()); in setTransactionReadTimestamp()
H A Dwiredtiger_snapshot_manager.h78 Status setTransactionReadTimestamp(Timestamp pointInTime, WT_SESSION* session) const;
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/
H A Dread_concern.cpp259 auto pointInTime = readConcernArgs.getArgsPointInTime(); in waitForReadConcern() local
260 if (pointInTime) { in waitForReadConcern()
261 fassertStatusOK(39345, opCtx->recoveryUnit()->selectSnapshot(pointInTime->asTimestamp())); in waitForReadConcern()
/dports/science/paje/Paje_1.97/SpaceTimeViewer/
H A DDrawView.m624 NSDate *pointInTime;
630 pointInTime = XtoTIME(point.x);
631 return [pointInTime isLaterThanDate:selectionStartTime]
632 && [pointInTime isEarlierThanDate:selectionEndTime];
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/surface/sql/instances/
H A Dclone.py75 clone_context.pointInTime = args.point_in_time.strftime(
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/history/view/
H A Dhistory_view_message.h69 bool pointInTime(
H A Dhistory_view_element.h300 virtual bool pointInTime(
H A Dhistory_view_element.cpp916 bool Element::pointInTime( in pointInTime() function in HistoryView::Element
H A Dhistory_view_message.cpp1266 const auto inDate = pointInTime( in textState()
1854 bool Message::pointInTime( in pointInTime() function in HistoryView::Message
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/history/view/media/
H A Dhistory_view_location.cpp284 if (_parent->pointInTime(fullRight, fullBottom, point, InfoDisplayType::Image)) { in textState()
H A Dhistory_view_media_unwrapped.cpp370 if (_parent->pointInTime(fullRight, fullBottom, point, InfoDisplayType::Background)) { in textState()
H A Dhistory_view_media_grouped.cpp424 if (_parent->pointInTime(fullRight, fullBottom, point, InfoDisplayType::Image)) { in textState()
H A Dhistory_view_photo.cpp465 if (_parent->pointInTime(fullRight, fullBottom, point, InfoDisplayType::Image)) { in textState()
H A Dhistory_view_gif.cpp865 …if (_parent->pointInTime(fullRight, fullBottom, point, isRound ? InfoDisplayType::Background : Inf… in textState()
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/third_party/apis/sqladmin/v1beta4/
H A Dsqladmin_v1beta4_messages.py298 pointInTime = _messages.StringField(5) variable in CloneContext