Home
last modified time | relevance | path

Searched refs:timeslice (Results 1 – 25 of 344) sorted by relevance

12345678910>>...14

/dports/sysutils/lnav/lnav-0.10.1/test/
H A Dtest_sql_time_func.sh13 Column timeslice('2015-08-07 12:01:00', 'before fri'): (null)
20 Column timeslice('2015-08-07 11:59:00', 'after fri'): (null)
27 Column timeslice('2015-08-07 11:59:00', 'fri'): 2015-08-07 00:00:00.000
34 Column timeslice('2015-08-07 12:01:00', 'before 12pm'): (null)
55 Column timeslice('2015-08-07 11:59:00', 'after 12pm'): (null)
68 Column timeslice('2015-02-01T05:10:00'): 2015-02-01 05:00:00.000
81 Column timeslice('2015-08-07 12:01:00', '8 am'): (null)
95 Column timeslice('2015-08-07 08:01:33', '8 am'): (null)
102 Column timeslice(null, null): (null)
109 Column timeslice(null): (null)
[all …]
/dports/misc/xfce4-weather-plugin/xfce4-weather-plugin-0.11.0/panel-plugin/
H A Dweather-data.c330 if (timeslice == NULL || timeslice->location == NULL || units == NULL) in get_data()
333 loc = timeslice->location; in get_data()
591 g_assert(timeslice != NULL && timeslice->location != NULL); in calculate_symbol()
592 if (G_UNLIKELY(timeslice == NULL || timeslice->location == NULL)) in calculate_symbol()
827 old_ts = get_timeslice(wd, timeslice->start, timeslice->end, &index); in merge_timeslice()
1027 if (timeslice && difftime(timeslice->end, end_t) == 0 in find_smallest_incomplete_interval()
1028 && difftime(timeslice->end, timeslice->start) != 0) { in find_smallest_incomplete_interval()
1051 xml_time *timeslice; in find_point_data() local
1064 if (G_UNLIKELY(timeslice == NULL) || timeslice_is_interval(timeslice)) in find_point_data()
1186 xml_time *timeslice; in get_point_data_for_day() local
[all …]
H A Dweather-parsers.c112 xml_time *timeslice; in get_timeslice() local
121 if (timeslice && in get_timeslice()
122 timeslice->start == start_t && timeslice->end == end_t) { in get_timeslice()
125 return timeslice; in get_timeslice()
328 xml_time *timeslice; in make_timeslice() local
339 return timeslice; in make_timeslice()
349 xml_time *timeslice; in parse_time() local
372 if (! timeslice) { in parse_time()
377 timeslice->end = end_t; in parse_time()
832 xml_time *timeslice; in xml_weather_free() local
[all …]
H A Dweather-debug.c343 weather_dump_timeslice(const xml_time *timeslice) in weather_dump_timeslice() argument
349 if (G_UNLIKELY(timeslice == NULL)) in weather_dump_timeslice()
353 start = format_date(timeslice->start, "%c", TRUE); in weather_dump_timeslice()
354 end = format_date(timeslice->end, "%c", TRUE); in weather_dump_timeslice()
356 loc = weather_dump_location((timeslice) ? timeslice->location : NULL, in weather_dump_timeslice()
375 xml_time *timeslice; in weather_dump_weatherdata() local
390 timeslice = g_array_index(wd->timeslices, xml_time *, i); in weather_dump_weatherdata()
391 tmp = weather_dump_timeslice(timeslice); in weather_dump_weatherdata()
H A Dweather-data.h110 gboolean timeslice_is_interval(xml_time *timeslice);
112 gchar *get_data(const xml_time *timeslice,
149 const xml_time *timeslice);
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/level_zero/tools/source/sysman/scheduler/
H A Dscheduler_imp.cpp17 uint64_t timeslice = 0, timeout = 0, heartbeat = 0; in setExclusiveMode() local
23 result = pOsScheduler->setTimesliceDuration(timeslice); in setExclusiveMode()
37 uint64_t timeslice = 0; in getCurrentMode() local
42 result = pOsScheduler->getTimesliceDuration(timeslice, false); in getCurrentMode()
46 if (timeslice > 0) { in getCurrentMode()
70 uint64_t timeout = 0, timeslice = 0; in getTimesliceModeProperties() local
75 result = pOsScheduler->getTimesliceDuration(timeslice, getDefaults); in getTimesliceModeProperties()
79 pConfig->interval = timeslice; in getTimesliceModeProperties()
109 uint64_t timeslice = 0; in setTimeoutMode() local
110 result = pOsScheduler->setTimesliceDuration(timeslice); in setTimeoutMode()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/level_zero/tools/source/sysman/scheduler/linux/
H A Dos_scheduler_imp.cpp62 ze_result_t LinuxSchedulerImp::getTimesliceDuration(uint64_t &timeslice, ze_bool_t getDefault) { in getTimesliceDuration() argument
69 …sfsAccess->read(engineDir + "/" + engineName + "/" + defaultTimesliceDurationMilliSecs, timeslice); in getTimesliceDuration()
71 …t = pSysfsAccess->read(engineDir + "/" + engineName + "/" + timesliceDurationMilliSecs, timeslice); in getTimesliceDuration()
74 timeslice = timeslice * milliSecsToMicroSecs; in getTimesliceDuration()
75 timesliceVec[i] = timeslice; in getTimesliceDuration()
86 timeslice = timesliceVec[0]; in getTimesliceDuration()
139 ze_result_t LinuxSchedulerImp::setTimesliceDuration(uint64_t timeslice) { in setTimesliceDuration() argument
140 timeslice = timeslice / milliSecsToMicroSecs; in setTimesliceDuration()
143 … = pSysfsAccess->write(engineDir + "/" + engineName + "/" + timesliceDurationMilliSecs, timeslice); in setTimesliceDuration()
/dports/emulators/darcnes/darcnes/
H A Dui_x.c210 void (*timeslice)(void *) = NULL; variable
215 if (!timeslice) { in set_timeslice()
219 timeslice = proc; in set_timeslice()
225 timeslice = NULL; in unset_timeslice()
231 if (timeslice) { in emulation_timeslice()
232 timeslice(timeslice_data); in emulation_timeslice()
235 if ((system_flags == F_NONE) && timeslice) { in emulation_timeslice()
H A Dui_allegro.c206 void (*timeslice)(void *) = NULL; variable
211 timeslice = proc; in set_timeslice()
217 timeslice = NULL; in unset_timeslice()
222 while ((!(system_flags & F_QUIT)) && timeslice) { in run_system()
224 timeslice(timeslice_data); in run_system()
H A Dui_svga.c263 void (*timeslice)(void *) = NULL; variable
268 timeslice = proc; in set_timeslice()
274 timeslice = NULL; in unset_timeslice()
279 while ((!(system_flags & F_QUIT)) && timeslice) { in run_system()
280 timeslice(timeslice_data); in run_system()
H A Dui_gtk.c15 void (* timeslice )( void* ); variable
58 timeslice = NULL; in main()
222 timeslice = proc; in set_timeslice()
228 timeslice = NULL; in unset_timeslice()
235 if( timeslice ) in emulate_timeslice()
237 timeslice( timeslice_data ); in emulate_timeslice()
/dports/games/trigger-rally/trigger-rally-0.6.6.1/src/PSim/
H A Dsim.cpp164 const float timeslice = 0.004; in tick() local
170 while(t >= timeslice) in tick()
173 t -= timeslice; in tick()
177 vehicle[i]->tick(timeslice); in tick()
181 body[i]->tick(timeslice); in tick()
/dports/misc/rump/buildrump.sh-b914579/src/sys/kern/
H A Dsched_m2.c204 l->l_sched.timeslice = ts_map[lwp_eprio(l)]; in sched_newts()
275 KASSERT(l->l_sched.timeslice >= min_ts); in sched_oncpu()
276 KASSERT(l->l_sched.timeslice <= max_ts); in sched_oncpu()
277 spc->spc_ticks = l->l_sched.timeslice; in sched_oncpu()
305 spc->spc_ticks = l->l_sched.timeslice; in sched_tick()
333 spc->spc_ticks = l->l_sched.timeslice; in sched_tick()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/userguide/java/org/apache/commons/math3/userguide/filter/
H A DCannonballExample.java59 private final double timeslice; field in CannonballExample.Cannonball
64 …public Cannonball(double timeslice, double angle, double initialVelocity, double measurementNoise,… in Cannonball() argument
65 this.timeslice = timeslice; in Cannonball()
107 slicedGravity[i] *= timeslice; in step()
114 slicedVelocity[i] = velocity[i] * timeslice; in step()
/dports/games/gemrb/gemrb-0.9.0/gemrb/plugins/OpenALAudio/
H A DAmbientMgrAL.cpp136 ieDword timeslice = 0; in tick() local
138 timeslice = SCHEDULE_MASK(game->GameTime); in tick()
143 uint64_t newdelay = source->tick(ticks, listener, timeslice); in tick()
171 uint64_t AmbientMgrAL::AmbientSource::tick(uint64_t ticks, Point listener, ieDword timeslice) in tick() argument
178 if (!(ambient->getFlags() & IE_AMBI_ENABLED) || !(ambient->getAppearance() & timeslice)) { in tick()
/dports/textproc/angle-grinder/angle-grinder-0.18.0/tests/structured_tests/
H A Dtimeslice_2.toml1 query = """* | json | timeslice(ts)"""
7 Error: Expected a duration for the timeslice (e.g. 1h)
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/level_zero/tools/source/sysman/scheduler/windows/
H A Dos_scheduler_imp.h15 ze_result_t getTimesliceDuration(uint64_t &timeslice, ze_bool_t getDefault) override;
18 ze_result_t setTimesliceDuration(uint64_t timeslice) override;
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/test/java/org/apache/commons/math3/filter/
H A DKalmanFilterTest.java256 private double timeslice;
258 public Cannonball(double timeslice, double angle, double initialVelocity) {
259 this.timeslice = timeslice;
290 slicedGravity[i] *= timeslice;
297 slicedVelocity[i] = velocity[i] * timeslice;
/dports/sysutils/bareos18-client/bareos-Release-18.2.12/docs/manuals/source/manually_added_config_directive_descriptions/
H A Dfd-client-AllowBandwidthBursting.rst.inc1 … bursting e.g. when from a certain timeslice not all bandwidth is used this bandwidth can be used …
/dports/sysutils/bareos19-client/bareos-Release-19.2.11/docs/manuals/source/manually_added_config_directive_descriptions/
H A Dfd-client-AllowBandwidthBursting.rst.inc1 … bursting e.g. when from a certain timeslice not all bandwidth is used this bandwidth can be used …
/dports/sysutils/bareos19-server/bareos-Release-19.2.11/docs/manuals/source/manually_added_config_directive_descriptions/
H A Dfd-client-AllowBandwidthBursting.rst.inc1 … bursting e.g. when from a certain timeslice not all bandwidth is used this bandwidth can be used …
/dports/sysutils/bareos-client/bareos-Release-20.0.3/docs/manuals/source/manually_added_config_directive_descriptions/
H A Dfd-client-AllowBandwidthBursting.rst.inc1 … bursting e.g. when from a certain timeslice not all bandwidth is used this bandwidth can be used …
/dports/sysutils/bareos18-server/bareos-Release-18.2.12/docs/manuals/source/manually_added_config_directive_descriptions/
H A Dfd-client-AllowBandwidthBursting.rst.inc1 … bursting e.g. when from a certain timeslice not all bandwidth is used this bandwidth can be used …
/dports/sysutils/bareos18-traymonitor/bareos-Release-18.2.12/docs/manuals/source/manually_added_config_directive_descriptions/
H A Dfd-client-AllowBandwidthBursting.rst.inc1 … bursting e.g. when from a certain timeslice not all bandwidth is used this bandwidth can be used …
/dports/sysutils/bareos-traymonitor/bareos-Release-20.0.3/docs/manuals/source/manually_added_config_directive_descriptions/
H A Dfd-client-AllowBandwidthBursting.rst.inc1 … bursting e.g. when from a certain timeslice not all bandwidth is used this bandwidth can be used …

12345678910>>...14