Home
last modified time | relevance | path

Searched refs:myTime (Results 1 – 25 of 262) sorted by relevance

1234567891011

/dports/sysutils/helm/helm-3.5.2/pkg/time/
H A Dtime_test.go51 var myTime Time
52 err := json.Unmarshal([]byte(testingTimeString), &myTime)
56 if !myTime.Equal(testingTime) {
62 var myTime Time
63 err := json.Unmarshal([]byte(emptyString), &myTime)
67 if !myTime.IsZero() {
68 t.Errorf("expected time to be equal to zero value, got %v", myTime)
75 var myTime Time
76 err := json.Unmarshal([]byte(`"0001-01-01T00:00:00Z"`), &myTime)
80 if !myTime.IsZero() {
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/helm.sh/helm/v3/pkg/time/
H A Dtime_test.go51 var myTime Time
52 err := json.Unmarshal([]byte(testingTimeString), &myTime)
56 if !myTime.Equal(testingTime) {
62 var myTime Time
63 err := json.Unmarshal([]byte(emptyString), &myTime)
67 if !myTime.IsZero() {
68 t.Errorf("expected time to be equal to zero value, got %v", myTime)
75 var myTime Time
76 err := json.Unmarshal([]byte(`"0001-01-01T00:00:00Z"`), &myTime)
80 if !myTime.IsZero() {
[all …]
/dports/math/latte-integrale/latte-version_1_7_6/code/latte/integration/
H A DversusMode.cpp91 float myTime; in main() local
164 myTime = myTimer.get_seconds(); in main()
168 myTime = myTimer.get_seconds() - myTime; in main()
169 oldMult += myTime; in main()
180 myTime = myTimer.get_seconds() - myTime; in main()
192 myTime = myTimer.get_seconds() - myTime; in main()
193 newMult += myTime; in main()
210 myTime = myTimer.get_seconds() - myTime; in main()
211 oldDecomp += myTime; in main()
233 myTime = myTimer.get_seconds() - myTime; in main()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/vdemeester/shakers/
H A Dcommon_test.go22 myTime, err := time.Parse("2006-01-02", "2018-01-01")
30 testCheck(c, Equals, true, "", myTime, myTime)
31 testCheck(c, Equals, true, "", myTime, "2018-01-01")
84 myTime, err := time.Parse("2006-01-02", "2018-01-01")
108 myTime, err := time.Parse("2006-01-02", "2018-01-01")
133 myTime, err := time.Parse("2006-01-02", "2018-01-01")
150 myTime, err := time.Parse("2006-01-02", "2018-01-01")
190 myTime, err := time.Parse("2006-01-02", "2018-01-01")
215 myTime, err := time.Parse("2006-01-02", "2018-01-01")
232 myTime, err := time.Parse("2006-01-02", "2018-01-01")
[all …]
/dports/emulators/stella/stella-6.6/src/gui/
H A DDialogContainer.cxx46 myTime = time / 1000; in updateTime()
57 myClickRepeatTime = myTime + _REPEAT_SUSTAIN_DELAY; in updateTime()
64 myButtonRepeatTime = myTime + _REPEAT_SUSTAIN_DELAY; in updateTime()
80 myAxisRepeatTime = myTime + _REPEAT_SUSTAIN_DELAY; in updateTime()
84 if(myCurrentHatDown.stick != -1 && myHatRepeatTime < myTime) in updateTime()
88 myHatRepeatTime = myTime + _REPEAT_SUSTAIN_DELAY; in updateTime()
276 myLastClick.time = myTime; in handleMouseButtonEvent()
285 myClickRepeatTime = myTime + _REPEAT_INITIAL_DELAY; in handleMouseButtonEvent()
330 myButtonLongPressTime = myTime + _LONG_PRESS_DELAY; in handleJoyBtnEvent()
359 myButtonLongPressTime = myTime + _REPEAT_NONE; in handleJoyAxisEvent()
[all …]
/dports/devel/ticcutils/ticcutils-0.28/src/
H A DTimer.cxx41 long usecs = (myTime.tv_sec + now.tv_sec - startTime.tv_sec) * 1000000 in stop()
42 + myTime.tv_usec + now.tv_usec - startTime.tv_usec; in stop()
44 myTime.tv_sec = div.quot; in stop()
45 myTime.tv_usec = div.rem; in stop()
63 ldiv_t div = ldiv( T.myTime.tv_usec, 1000 ); in operator <<()
64 os << T.myTime.tv_sec << " seconds, " << div.quot << " milliseconds and " in operator <<()
75 timeradd( &(this->myTime), &(rhs.myTime), &(this->myTime) ); in operator +=()
/dports/security/py-fail2ban/fail2ban-0.11.2/fail2ban/server/
H A Dmytime.py43 myTime = None variable in MyTime
69 MyTime.myTime = t
78 if MyTime.myTime is None:
81 return MyTime.myTime
89 if MyTime.myTime is None:
92 return time.gmtime(MyTime.myTime)
100 if MyTime.myTime is None:
102 if MyTime.myTime == MyTime.alternateNowTime:
104 return datetime.datetime.fromtimestamp(MyTime.myTime)
112 if MyTime.myTime is None or x is not None:
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/basic/qa/vba_tests/
H A Dhour.vb26 Dim date1, date2, myTime
30 myTime = "6:25:39 AM"
32 date1 = Hour(myTime)
35 myTime = "6:25:39 PM"
37 date1 = Hour(myTime)
40 myTime = "06:25:39 AM"
42 date1 = Hour(myTime)
/dports/audio/rosegarden/rosegarden-21.06.1/src/commands/segment/
H A DSegmentAutoSplitCommand.cpp79 timeT myTime = (*i)->getAbsoluteTime(); in execute() local
80 int barNo = m_composition->getBarNumber(myTime); in execute()
88 if (myTime <= lastSplitTime) in execute()
104 splitPoints.push_back(AutoSplitPoint(myTime, lastSoundTime, in execute()
106 lastSoundTime = lastSplitTime = myTime; in execute()
130 (m_composition->getBarStartForTime(myTime), lastSoundTime, in execute()
132 lastSplitTime = myTime; in execute()
136 lastSoundTime = std::max(lastSoundTime, myTime + (*i)->getDuration()); in execute()
/dports/devel/staf/src/staf/stafif/
H A DSTAFTimestampInlImpl.cpp376 struct tm myTime = { 0 }; in operator <() local
387 if (myTime.tm_year < rhsTime.tm_year) return true; in operator <()
388 else if (rhsTime.tm_year < myTime.tm_year) return false; in operator <()
390 if (myTime.tm_mon < rhsTime.tm_mon) return true; in operator <()
391 else if (rhsTime.tm_mon < myTime.tm_mon) return false; in operator <()
393 if (myTime.tm_mday < rhsTime.tm_mday) return true; in operator <()
394 else if (rhsTime.tm_mday < myTime.tm_mday) return false; in operator <()
396 if (myTime.tm_hour < rhsTime.tm_hour) return true; in operator <()
399 if (myTime.tm_min < rhsTime.tm_min) return true; in operator <()
400 else if (rhsTime.tm_min < myTime.tm_min) return false; in operator <()
[all …]
/dports/cad/sumo/sumo-1.2.0/src/netedit/additionals/
H A DGNEVariableSpeedSignStep.cpp42myTime = parse<double>(getAdditionalParents().at(0)->getAdditionalChilds().back()->getAttribute(SU…
44 myTime = 0;
52 myTime(time),
62 return myTime; in getTime()
108 return toString(myTime); in getAttribute()
195 myTime = parse<double>(value); in setAttribute()
/dports/lang/tcl85/tcl8.5.19/win/
H A DtclWinNotify.c445 Tcl_Time myTime; in Tcl_WaitForEvent() local
447 myTime.sec = timePtr->sec; in Tcl_WaitForEvent()
448 myTime.usec = timePtr->usec; in Tcl_WaitForEvent()
450 if (myTime.sec != 0 || myTime.usec != 0) { in Tcl_WaitForEvent()
451 (*tclScaleTimeProcPtr) (&myTime, tclTimeClientData); in Tcl_WaitForEvent()
454 timeout = myTime.sec * 1000 + myTime.usec / 1000; in Tcl_WaitForEvent()
/dports/lang/tcl87/tcl8.7a5/win/
H A DtclWinNotify.c434 Tcl_Time myTime; in TclpWaitForEvent() local
436 myTime.sec = timePtr->sec; in TclpWaitForEvent()
437 myTime.usec = timePtr->usec; in TclpWaitForEvent()
439 if (myTime.sec != 0 || myTime.usec != 0) { in TclpWaitForEvent()
440 TclScaleTime(&myTime); in TclpWaitForEvent()
443 timeout = myTime.sec * 1000 + myTime.usec / 1000; in TclpWaitForEvent()
/dports/lang/tcl86/tcl8.6.12/win/
H A DtclWinNotify.c453 Tcl_Time myTime; in Tcl_WaitForEvent() local
455 myTime.sec = timePtr->sec; in Tcl_WaitForEvent()
456 myTime.usec = timePtr->usec; in Tcl_WaitForEvent()
458 if (myTime.sec != 0 || myTime.usec != 0) { in Tcl_WaitForEvent()
459 tclScaleTimeProcPtr(&myTime, tclTimeClientData); in Tcl_WaitForEvent()
462 timeout = myTime.sec * 1000 + myTime.usec / 1000; in Tcl_WaitForEvent()
/dports/deskutils/fbreader/FBReader-0.99.6-freebsdport/fbreader/src/fbreader/
H A DTimeUpdater.cpp28 TimeUpdater::TimeUpdater() : myTime(-1) { in TimeUpdater()
35 if (myTime != minutes) { in run()
36 myTime = minutes; in run()
/dports/cad/opencascade/opencascade-7.6.0/src/TDF/
H A DTDF_Data.cxx52 …n+1<<", DF "<<this<<" had "<<myNbTouchedAtt<<" attribute(s) touched. Time = "<<myTime<<std::endl; \ in IMPLEMENT_STANDARD_RTTIEXT()
96 myTime (0),
135 myTimes.Prepend(myTime); in OpenTransaction()
161 if (myNbTouchedAtt && !(withDelta && delta->IsEmpty())) ++myTime; in Handle()
165 delta->Validity(myTimes.First(),myTime); in Handle()
380 return !aDelta.IsNull() && aDelta->IsApplicable(myTime); in IsApplicable()
419 if (aDelta->IsApplicable(myTime)) { in Handle()
437 myTime = aDelta->BeginTime(); in Handle()
491 anOS<<"; Current tick: "<<myTime<<";"<<std::endl; in Dump()
510 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, myTime) in DumpJson()
/dports/devel/ticcutils/ticcutils-0.28/include/ticcutils/
H A DTimer.h42 myTime.tv_sec=0; myTime.tv_usec=0; in reset()
55 timeval myTime; variable
/dports/x11-toolkits/redkite/redkite-1.3.1/examples/
H A Dtimer.cpp60 , myTime{0}
108 timerLabel->setText(std::to_string(myTime) + "s"); in onShowTime()
109 progressBar->setValue(myTime++); in onShowTime()
115 int myTime; member in PainterExample
/dports/biology/protomol/protomol/framework/integrators/
H A DPaulTrapIntegrator.cpp79 myTime.resize(count); in PaulTrapIntegrator()
81 myTime[i] = tmp[i].first; in PaulTrapIntegrator()
95 if(myTopo->time >= myTime[i] && myTopo->time < myTime[i+1]) { in doDrift()
96 theTemperature = myT[i]+(myTopo->time-myTime[i])/(myTime[i+1]-myTime[i])*(myT[i+1]-myT[i]); in doDrift()
267 report << " : t"<<i<<" = ("<<myTime[i]<<","<<myT[i]<<")\n"; in initialize()
282 parameters.push_back(Parameter("time",Value(myTime),vector<Real>())); in getParameters()
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/apps/razers3/
H A Drazers_window.h136 _proFloat myTime = sysTime(); in _mapSingleReadsToContigWindow() local
145 printf("filter: %f sec\n", sysTime() - myTime); in _mapSingleReadsToContigWindow()
146 myTime = sysTime(); in _mapSingleReadsToContigWindow()
158 printf("verify: %f sec\n", sysTime() - myTime); in _mapSingleReadsToContigWindow()
159 myTime = sysTime(); in _mapSingleReadsToContigWindow()
/dports/math/py-cryptominisat/cryptominisat-5.8.0/src/
H A Dreducedb.cpp182 const double myTime = cpuTime(); in handle_lev2() local
229 , cpuTime()-myTime in handle_lev2()
232 total_time += cpuTime()-myTime; in handle_lev2()
241 double myTime = cpuTime(); in dump_sql_cl_data() local
304 double myTime = cpuTime(); in handle_lev1() local
370 , cpuTime()-myTime in handle_lev1()
373 total_time += cpuTime()-myTime; in handle_lev1()
392 double myTime = cpuTime(); in handle_lev2_predictor() local
450 double predTime = cpuTime() - myTime; in handle_lev2_predictor()
683 , cpuTime()-myTime in handle_lev2_predictor()
[all …]
/dports/math/cryptominisat/cryptominisat-5.8.0/src/
H A Dreducedb.cpp182 const double myTime = cpuTime(); in handle_lev2() local
229 , cpuTime()-myTime in handle_lev2()
232 total_time += cpuTime()-myTime; in handle_lev2()
241 double myTime = cpuTime(); in dump_sql_cl_data() local
304 double myTime = cpuTime(); in handle_lev1() local
370 , cpuTime()-myTime in handle_lev1()
373 total_time += cpuTime()-myTime; in handle_lev1()
392 double myTime = cpuTime(); in handle_lev2_predictor() local
450 double predTime = cpuTime() - myTime; in handle_lev2_predictor()
683 , cpuTime()-myTime in handle_lev2_predictor()
[all …]
/dports/misc/perkeep/perkeep-0.11/clients/android/app/src/main/java/org/camlistore/
H A DUploadApplication.java44 long myTime = getAPKModTime(); in copyGoBinary() local
47 Log.d(TAG, " My Time: " + myTime); in copyGoBinary()
49 if (f.exists() && f.lastModified() > myTime) { in copyGoBinary()
71 f.setLastModified(myTime); in copyGoBinary()
/dports/math/vtk9/VTK-9.1.0/Rendering/LOD/
H A DvtkLODActor.cxx85 float myTime, bestTime, tempTime; in Render() local
112 myTime = this->AllocatedRenderTime; in Render()
123 if (bestTime > myTime) in Render()
139 if (bestTime > myTime && tempTime < bestTime) in Render()
144 if (tempTime > bestTime && tempTime < myTime) in Render()
/dports/audio/milkytracker/MilkyTracker-1.03.00/src/tracker/sdl/
H A DSDL_Main.cpp101 pp_uint32 myTime; member
310 mouseLeft.myTime = PPGetTickCount(); in translateMouseDownEvent()
316 pp_uint32 deltat = PPGetTickCount() - mouseLeft.myTime; in translateMouseDownEvent()
321 mouseLeft.myTime = PPGetTickCount(); in translateMouseDownEvent()
341 mouseMiddle.myTime = PPGetTickCount(); in translateMouseDownEvent()
347 pp_uint32 deltat = PPGetTickCount() - mouseRight.myTime; in translateMouseDownEvent()
352 mouseMiddle.myTime = PPGetTickCount(); in translateMouseDownEvent()
371 mouseRight.myTime = PPGetTickCount(); in translateMouseDownEvent()
377 pp_uint32 deltat = PPGetTickCount() - mouseRight.myTime; in translateMouseDownEvent()
382 mouseRight.myTime = PPGetTickCount(); in translateMouseDownEvent()
[all …]

1234567891011