Home
last modified time | relevance | path

Searched refs:time_limit (Results 1 – 25 of 1619) sorted by relevance

12345678910>>...65

/dports/games/crafty/crafty-25.2_1/
H A Dtime.c176 if (time_used < time_limit) in TimeCheck()
272 time_limit = in TimeSet()
308 time_limit = in TimeSet()
312 time_limit *= 1.2; in TimeSet()
313 if (time_limit <= 0) in TimeSet()
314 time_limit = 5; in TimeSet()
340 time_limit += extra; in TimeSet()
355 time_limit /= 10; in TimeSet()
361 time_limit = Min(time_limit, absolute_time_limit); in TimeSet()
370 if (time_limit <= 1) { in TimeSet()
[all …]
/dports/security/nmap/nmap-7.91/nselib/
H A Dunpwdb.lua223 limited_iterator = function(iterator, time_limit, count_limit, label)
224 time_limit = (time_limit and time_limit > 0) and time_limit
240 if time_limit and os.time() - start >= time_limit then
241 stdnse.verbose1("%s: Time limit %s exceeded.", label, datetime.format_time(time_limit))
255 usernames = function(time_limit, count_limit)
263 time_limit = time_limit or timelimit()
268 return true, limited_iterator(iterator, time_limit, count_limit, "usernames")
278 passwords = function(time_limit, count_limit)
286 time_limit = time_limit or timelimit()
291 return true, limited_iterator(iterator, time_limit, count_limit, "passwords")
/dports/math/py-or-tools/or-tools-9.2/ortools/bop/
H A Dbop_solver.cc81 std::unique_ptr<TimeLimit> time_limit =
83 return SolveWithTimeLimit(time_limit.get());
87 CHECK(time_limit != nullptr);
99 ? InternalMultithreadSolver(time_limit)
100 : InternalMonothreadSolver(time_limit);
104 CHECK(time_limit != nullptr);
109 while (!time_limit->LimitReached()) {
139 CHECK(time_limit != nullptr);
145 std::unique_ptr<TimeLimit> time_limit =
147 return SolveWithTimeLimit(first_solution, time_limit.get());
[all …]
H A Dbop_lns.cc116 LearnedInfo* learned_info, TimeLimit* time_limit) { in Optimize() argument
119 CHECK(time_limit != nullptr); in Optimize()
141 sat_params.set_max_time_in_seconds(time_limit->GetTimeLeft()); in Optimize()
169 sat::SatSolver* sat_solver, TimeLimit* time_limit) { in UseLinearRelaxationForSatAssignmentPreference() argument
186 NestedTimeLimit nested_time_limit(time_limit, time_limit->GetTimeLeft(), in UseLinearRelaxationForSatAssignmentPreference()
234 LearnedInfo* learned_info, TimeLimit* time_limit) { in Optimize() argument
237 CHECK(time_limit != nullptr); in Optimize()
249 time_limit->AdvanceDeterministicTime( in Optimize()
263 while (!time_limit->LimitReached() && in Optimize()
342 params.set_max_time_in_seconds(time_limit->GetTimeLeft()); in Optimize()
[all …]
H A Dbop_fs.cc162 LearnedInfo* learned_info, TimeLimit* time_limit) { in Optimize() argument
164 CHECK(time_limit != nullptr); in Optimize()
172 sat_params.set_max_time_in_seconds(time_limit->GetTimeLeft()); in Optimize()
230 LearnedInfo* learned_info, TimeLimit* time_limit) { in Optimize() argument
232 CHECK(time_limit != nullptr); in Optimize()
293 sat_propagator_->SolveWithTimeLimit(time_limit); in Optimize()
449 LearnedInfo* learned_info, TimeLimit* time_limit) { in Optimize() argument
451 CHECK(time_limit != nullptr); in Optimize()
527 NestedTimeLimit nested_time_limit(time_limit, time_limit->GetTimeLeft(), in Solve()
535 LearnedInfo* learned_info, TimeLimit* time_limit) { in ComputeLowerBoundUsingStrongBranching() argument
[all …]
/dports/net-p2p/ktorrent/ktorrent-21.12.3/plugins/infowidget/
H A Dstatustab.cpp51 time_limit->setMinimum(0.0f); in StatusTab()
52 time_limit->setMaximum(10000000.0f); in StatusTab()
53 time_limit->setSingleStep(0.05f); in StatusTab()
134 time_limit->setValue(0.0); in changeTC()
160 if (!time_limit->hasFocus()) in update()
258 if (time_limit->isEnabled() && use_time_limit->isChecked() && time_limit->value() == time) in maxSeedTimeUpdate()
263 time_limit->setValue(time); in maxSeedTimeUpdate()
266 … if (!time_limit->isEnabled() && !use_time_limit->isChecked() && time_limit->value() != 0.00f) in maxSeedTimeUpdate()
271 time_limit->setValue(0.00f); in maxSeedTimeUpdate()
281 time_limit->setEnabled(on); in useTimeLimitToggled()
[all …]
/dports/mail/postfix-current/postfix-3.7-20211107/src/util/
H A Dpoll_fd.c148 int poll_fd_bsd(int fd, int request, int time_limit, in poll_fd_bsd() argument
187 if (time_limit >= 0) { in poll_fd_bsd()
189 tv.tv_sec = time_limit; in poll_fd_bsd()
220 #define HANDLE_SYSV_POLL_ERROR(fd, req, time_limit, true_res, false_res) \ argument
221 return (poll_fd_bsd((fd), (req), (time_limit), (true_res), (false_res)))
223 #define HANDLE_SYSV_POLL_ERROR(fd, req, time_limit, true_res, false_res) \ argument
229 int poll_fd_sysv(int fd, int request, int time_limit, in poll_fd_sysv() argument
249 switch (poll(&pollfd, 1, time_limit < 0 ? in poll_fd_sysv()
250 WAIT_FOR_EVENT : time_limit * 1000)) { in poll_fd_sysv()
253 HANDLE_SYSV_POLL_ERROR(fd, request, time_limit, in poll_fd_sysv()
[all …]
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/scontrol/
H A Dupdate_step.c51 uint32_t time_limit = NO_VAL; in _get_step_time() local
61 time_limit = resp->job_steps[i].time_limit; in _get_step_time()
70 return time_limit; in _get_step_time()
211 uint32_t step_current_time, time_limit; in scontrol_update_step() local
217 time_limit = time_str2mins(val); in scontrol_update_step()
218 if (time_limit == NO_VAL) { in scontrol_update_step()
232 time_limit += step_current_time; in scontrol_update_step()
236 time_limit, step_current_time); in scontrol_update_step()
240 time_limit = step_current_time - in scontrol_update_step()
241 time_limit; in scontrol_update_step()
[all …]
/dports/ports-mgmt/synth/synth-2.12/src/
H A Dportscan-buildcycle-ports.adb180 time_limit : execution_limit := max_time_without_output (phase); variable
182 return exec_phase (id => id, phase => phase, time_limit => time_limit);
191 time_limit : execution_limit := max_time_without_output (phase); variable
195 time_limit => time_limit,
204 time_limit : execution_limit;
240 result := generic_execute (id, command, timed_out, time_limit);
253 time_limit'Img & " minutes) ###");
269 time_limit : execution_limit := max_time_without_output (build); variable
274 time_limit => time_limit,
296 time_limit : execution_limit := max_time_without_output (deinstall); variable
[all …]
H A Dportscan-buildcycle-pkgsrc.adb87 time_limit : execution_limit;
116 result := generic_execute (id, command, timed_out, time_limit);
129 time_limit'Img & " minutes) ###");
145 time_limit : execution_limit := max_time_without_output (phase); variable
147 return exec_phase (id => id, phase => phase, time_limit => time_limit);
156 time_limit : execution_limit := max_time_without_output (build); variable
161 time_limit => time_limit,
184 time_limit : execution_limit := max_time_without_output (deinstall); variable
194 time_limit => time_limit,
/dports/sysutils/py-salt/salt-3004.1/salt/modules/
H A Dgentoolkitmod.py83 time_limit=0, argument
141 if time_limit != 0:
142 time_limit = cli.parseTime(time_limit)
152 time_limit=time_limit,
179 time_limit=0, argument
225 if time_limit != 0:
226 time_limit = cli.parseTime(time_limit)
235 time_limit=time_limit,
/dports/devel/aegis/aegis-4.25.D510/libaegis/change/test/
H A Drun_list.cc42 bool progress_flag, time_t time_limit, in project_test_run_list() argument
55 up.get(), progress_flag, (long)time_limit)); in project_test_run_list()
72 time_limit, in project_test_run_list()
85 time_t time_limit, const nstring_list &variable_assignments, in change_test_run_list_inner() argument
124 time_limit, in change_test_run_list_inner()
235 if (time_limit) in change_test_run_list()
257 time_limit, in change_test_run_list()
267 (long)time_limit)); in change_test_run_list()
287 time_limit, in change_test_run_list()
304 if (time_limit) in change_test_run_list()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/child_accounts/time_limits/web_time_limit_error_page/
H A Dweb_time_limit_error_page.cc25 base::string16 GetTimeLimitMessage(base::TimeDelta time_limit) { in GetTimeLimitMessage() argument
28 /* cutoff */ 3, time_limit); in GetTimeLimitMessage()
34 base::TimeDelta time_limit, in GetWebTimeLimitErrorPage() argument
54 GetTimeLimitMessage(time_limit))})); in GetWebTimeLimitErrorPage()
70 base::TimeDelta time_limit, in GetWebTimeLimitChromeErrorPage() argument
79 return GetWebTimeLimitErrorPage(block_header, block_message, time_limit, in GetWebTimeLimitChromeErrorPage()
83 std::string GetWebTimeLimitAppErrorPage(base::TimeDelta time_limit, in GetWebTimeLimitAppErrorPage() argument
94 return GetWebTimeLimitErrorPage(block_header, block_message, time_limit, in GetWebTimeLimitAppErrorPage()
/dports/devel/aegis/aegis-4.25.D510/libaegis/project/
H A Dinvento_walk.cc48 time_t time_limit, bool maximum) in project_change_inventory_get() argument
66 if (when <= time_limit) in project_change_inventory_get()
81 time_limit, in project_change_inventory_get()
128 if (when > time_limit) in project_change_inventory_get()
143 project_change_inventory_get(sub_pp, result, time_limit, false); in project_change_inventory_get()
178 time_t time_limit = project_completion_timestamp(pp); in project_inventory_walk() local
179 if (time_limit > limit) in project_inventory_walk()
180 time_limit = limit; in project_inventory_walk()
189 project_change_inventory_getr(ppp, result, time_limit, false); in project_inventory_walk()
/dports/math/cgal/CGAL-5.3/demo/Polyhedron/Plugins/Mesh_3/
H A DOptimization_plugin_cgal_code.cpp282 double time_limit; member
349 odt_->set_time_limit(p_.time_limit); in operator ()()
377 p.time_limit = time_limit; in cgal_code_odt_mesh_3()
396 double time_limit; member
463 lloyd_->set_time_limit(p_.time_limit); in operator ()()
491 p.time_limit = time_limit; in cgal_code_lloyd_mesh_3()
510 double time_limit; member
638 p.time_limit = time_limit; in cgal_code_perturb_mesh_3()
652 double time_limit; member
739 exude_->set_time_limit(p_.time_limit); in operator ()()
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/math/tools/
H A Dhypergeometric_1F1_map_neg_b_fwd_recurrence.cpp63 double time_limit = 10.0; in main() local
78time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
107 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
111time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b… in main()
130time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b - 1)… in main()
158time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
172 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
176time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b… in main()
/dports/devel/boost-python-libs/boost_1_72_0/libs/math/tools/
H A Dhypergeometric_1F1_map_neg_b_fwd_recurrence.cpp63 double time_limit = 10.0; in main() local
78time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
107 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
111time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b… in main()
130time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b - 1)… in main()
158time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
172 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
176time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b… in main()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/libs/math/tools/
H A Dhypergeometric_1F1_map_neg_b_fwd_recurrence.cpp63 double time_limit = 10.0; in main() local
78time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
107 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
111time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b… in main()
130time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b - 1)… in main()
158time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
172 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
176time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b… in main()
/dports/devel/boost-libs/boost_1_72_0/libs/math/tools/
H A Dhypergeometric_1F1_map_neg_b_fwd_recurrence.cpp63 double time_limit = 10.0; in main() local
78time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
107 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
111time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b… in main()
130time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b - 1)… in main()
158time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
172 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
176time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b… in main()
/dports/devel/hyperscan/boost_1_75_0/libs/math/tools/
H A Dhypergeometric_1F1_map_neg_b_fwd_recurrence.cpp63 double time_limit = 10.0; in main() local
78time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
107 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
111time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b… in main()
130time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b - 1)… in main()
158time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
172 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
176time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b… in main()
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/plugins/sched/builtin/
H A Dbuiltin.c148 uint32_t max_nodes, min_nodes, req_nodes, time_limit; in _compute_start_times() local
209 if (job_ptr->time_limit == INFINITE) in _compute_start_times()
210 time_limit = 365 * 24 * 60 * 60; in _compute_start_times()
211 else if (job_ptr->time_limit != NO_VAL) in _compute_start_times()
212 time_limit = job_ptr->time_limit * 60; in _compute_start_times()
215 time_limit = job_ptr->part_ptr->max_time * 60; in _compute_start_times()
217 time_limit = 365 * 24 * 60 * 60; in _compute_start_times()
223 last_job_alloc = job_ptr->start_time + time_limit; in _compute_start_times()
/dports/www/piwigo/piwigo/include/smarty/libs/sysplugins/
H A Dsmarty_internal_method_compilealltemplates.php29 * @param int $time_limit
34 …emplates(Smarty $smarty, $extension = '.tpl', $force_compile = false, $time_limit = 0, $max_errors… argument
36 return $this->compileAll($smarty, $extension, $force_compile, $time_limit, $max_errors);
45 * @param int $time_limit set maximum execution time
51 …protected function compileAll(Smarty $smarty, $extension, $force_compile, $time_limit, $max_errors… argument
55 @set_time_limit($time_limit);
/dports/mail/postfixadmin33-lite/postfixadmin-postfixadmin-3.3.10/lib/smarty/libs/sysplugins/
H A Dsmarty_internal_method_compilealltemplates.php29 * @param int $time_limit
38 $time_limit = 0, argument
41 return $this->compileAll($smarty, $extension, $force_compile, $time_limit, $max_errors);
50 * @param int $time_limit set maximum execution time
60 $time_limit, argument
66 @set_time_limit($time_limit);
/dports/mail/postfixadmin33/postfixadmin-postfixadmin-3.3.10/lib/smarty/libs/sysplugins/
H A Dsmarty_internal_method_compilealltemplates.php29 * @param int $time_limit
38 $time_limit = 0, argument
41 return $this->compileAll($smarty, $extension, $force_compile, $time_limit, $max_errors);
50 * @param int $time_limit set maximum execution time
60 $time_limit, argument
66 @set_time_limit($time_limit);
/dports/mail/postfixadmin/postfixadmin-d3bc1551/lib/smarty/libs/sysplugins/
H A Dsmarty_internal_method_compilealltemplates.php29 * @param int $time_limit
38 $time_limit = 0, argument
41 return $this->compileAll($smarty, $extension, $force_compile, $time_limit, $max_errors);
50 * @param int $time_limit set maximum execution time
60 $time_limit, argument
66 @set_time_limit($time_limit);

12345678910>>...65