Home
last modified time | relevance | path

Searched refs:max_wait (Results 1 – 25 of 587) sorted by relevance

12345678910>>...24

/dports/devel/p5-Test-TCP/Test-TCP-2.22/lib/Test/
H A DTCP.pm37 my ($host, $port, $max_wait);
41 $max_wait = $_[0]->{max_wait};
45 $max_wait = $sleep * $retry;
47 ($port, $max_wait) = @_;
51 $max_wait ||= 10;
53 Net::EmptyPort::wait_port({ host => $host, port => $port, max_wait => $max_wait })
66 max_wait => 10,
96 …Test::TCP::wait_port({ host => $self->{host}, port => $self->port, max_wait => $self->{max_wait} })
/dports/devel/p5-Test-UNIXSock/Test-UNIXSock-0.4/lib/Test/
H A DUNIXSock.pm38 my ($path, $max_wait);
41 $max_wait = $_[0]->{max_wait};
45 $max_wait = $sleep * $retry;
47 ($path, $max_wait) = @_;
49 $max_wait ||= 10;
50 my $waiter = Net::EmptyPort::_make_waiter($max_wait);
69 max_wait => 10,
92 Test::UNIXSock::wait_unix_sock({ path => $self->path, max_wait => $self->{max_wait} });
/dports/textproc/py-elasticsearch-curator/curator-5.8.4/test/integration/
H A Dtest_reindex.py27 max_wait = 3
46 max_wait = 3
65 max_wait = 3
82 max_wait = 3
118 max_wait = 3
147 max_wait = 3
176 max_wait = 3
226 max_wait = 3
281 max_wait = 3
340 max_wait = 3
[all …]
/dports/devel/p5-Test-TCP/Test-TCP-2.22/lib/Net/
H A DEmptyPort.pm127 my $max_wait = shift;
132 return 0 if $max_wait >= 0 && $waited > $max_wait;
143 my ($host, $port, $max_wait, $proto);
145 …($host, $port, $max_wait, $proto) = ($_[0]->{host}, $_[0]->{port}, $_[0]->{max_wait}, $_[0]->{prot…
149 $max_wait = $sleep * $retry;
151 ($port, $max_wait, $proto) = @_;
154 $max_wait ||= 10;
156 my $waiter = _make_waiter($max_wait);
/dports/devel/p5-Test-TCP/Test-TCP-2.22/t/
H A D12_pass_wait_port_options.t24 is($wait_port_args{max_wait}, 1);
26 is($wait_port_args{max_wait}, 10, 'Default max_wait');
30 is($wait_port_args{max_wait}, 35, 'Backwards compatible max_wait');
72 max_wait => -3,
82 is($wait_port_args{max_wait}, -3);
90 max_wait => -2,
92 is($wait_port_args{max_wait}, -2);
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/common/
H A Drun_command.c113 char **script_argv, int max_wait, in run_command() argument
141 if (max_wait != -1) { in run_command()
156 if (max_wait != -1) { in run_command()
177 if (max_wait != -1) { in run_command()
185 } else if (max_wait != -1) { in run_command()
203 if (max_wait <= 0) { in run_command()
206 new_wait = max_wait - _tot_wait(&tstart); in run_command()
209 __func__, script_type, max_wait); in run_command()
/dports/textproc/py-elasticsearch-curator/curator-5.8.4/curator/validators/
H A Doptions.py18 option_defaults.max_wait(action),
31 option_defaults.max_wait(action),
64 option_defaults.max_wait(action),
81 option_defaults.max_wait(action),
103 option_defaults.max_wait(action),
114 option_defaults.max_wait(action),
132 option_defaults.max_wait(action),
/dports/devel/py-python-dbusmock/python-dbusmock-0.25.0/tests/
H A Dtest_iio_sensors_proxy.py65 def wait_for_properties_changed(self, max_wait=2000): argument
81 timeout_id = GLib.timeout_add(max_wait, on_timeout)
143 self.assertFalse(self.wait_for_properties_changed(max_wait=500))
192 self.assertFalse(self.wait_for_properties_changed(max_wait=500))
233 self.assertFalse(self.wait_for_properties_changed(max_wait=500))
316 def assertOutputContains(self, expected_lines, max_wait=2000): argument
326 max_wait, msg='Timeout exceeded')
329 def assertOutputEquals(self, expected_lines, max_wait=2000): argument
330 self.assertOutputContains(expected_lines, max_wait)
333 def assertEmptyOutput(self, max_wait=100): argument
[all …]
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/lib/bash/
H A Dsubshell.sh26 local max_wait=$1
28 log "Waiting up to $max_wait seconds for subprocesses to finish..."
40 [ $slept -ge $max_wait ] && break
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/api_lib/runtime_config/
H A Dutil.py191 def WaitForWaiter(waiter_resource, sleep=None, max_wait=None): argument
207 max_wait = max_wait if max_wait is not None else MAX_WAITER_TIMEOUT
209 retryer = retry.Retryer(max_wait_ms=max_wait * 1000)
225 waiter_resource.Name(), max_wait))
/dports/textproc/py-elasticsearch-curator/curator-5.8.4/curator/
H A Dactions.py222 self.max_wait = max_wait
473 self.max_wait = max_wait
521 wait_interval=self.wait_interval, max_wait=self.max_wait
950 self.max_wait = max_wait
1301 self.max_wait = max_wait
1683 self.max_wait = max_wait
1868 self.max_wait = max_wait
2089 self.max_wait = max_wait
2226 max_wait=self.max_wait
2231 max_wait=self.max_wait
[all …]
/dports/devel/py-pydash/pydash-4.8.0/src/pydash/
H A Dfunctions.py170 def __init__(self, func, wait, max_wait=False): argument
173 self.max_wait = max_wait
180 self.last_execution = (pyd.now() - max_wait if pyd.is_number(max_wait)
191 (self.max_wait and
192 (present - self.last_execution) >= self.max_wait)):
559 def debounce(func, wait, max_wait=False): argument
575 return Debounce(func, wait, max_wait=max_wait)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/qa/qa/resource/events/
H A Dbase.rb29 Support::Waiter.wait_until(max_duration: max_wait, raise_on_failure: raise_on_failure) do
40 …event_found = Support::Waiter.wait_until(max_duration: max_wait, raise_on_failure: raise_on_failur…
47 def max_wait method
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/cloud/amazon/
H A Dcloudformation_stack_set.py298 max_wait=module.params.get('wait_timeout'),
327 def await_stack_set_operation(module, cfn, stack_set_name, operation_id, max_wait): argument
330 for i in range(max_wait // 15):
347 max_wait=int(max_wait - (datetime.datetime.now() - wait_start).total_seconds()),
354 operation_id, stack_set_name, max_wait
359 def await_stack_instance_completion(module, cfn, stack_set_name, max_wait): argument
361 for i in range(max_wait // 15):
375 stack_set_name, ', '.join(s['StackId'] for s in to_await), max_wait
623 max_wait=module.params.get('wait_timeout'),
650 max_wait=module.params.get('wait_timeout'),
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/aws/plugins/modules/
H A Dcloudformation_stack_set.py349 max_wait=module.params.get('wait_timeout'),
377 def await_stack_set_operation(module, cfn, stack_set_name, operation_id, max_wait): argument
380 for i in range(max_wait // 15):
397 max_wait=int(max_wait - (datetime.datetime.now() - wait_start).total_seconds()),
404 operation_id, stack_set_name, max_wait
409 def await_stack_instance_completion(module, cfn, stack_set_name, max_wait): argument
411 for i in range(max_wait // 15):
425 stack_set_name, ', '.join(s['StackId'] for s in to_await), max_wait
675 max_wait=module.params.get('wait_timeout'),
702 max_wait=module.params.get('wait_timeout'),
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/qa/qa/specs/features/browser_ui/2_plan/related_issues/
H A Drelated_issues_spec.rb32 max_wait = 60
36 expect(show.related_issuable_item).to have_text(issue_2.title, wait: max_wait)
40 expect(show).not_to have_text(issue_2.title, wait: max_wait)
/dports/net/cloud-init/cloud-init-21.4/cloudinit/
H A Durl_helper.py344 def wait_for_url(urls, max_wait=None, timeout=None, status_cb=None, argument
390 def timeup(max_wait, start_time): argument
391 if (max_wait is None):
393 return ((max_wait <= 0) or (time.time() - start_time > max_wait))
405 if timeup(max_wait, start_time):
407 if (max_wait is not None and
408 timeout and (now + timeout > (start_time + max_wait))):
410 timeout = int((start_time + max_wait) - now)
442 max_wait_str = "%ss" % max_wait if max_wait else "unlimited"
454 if timeup(max_wait, start_time):
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/mysql-test/suite/ndb/t/
H A Dwait_metadata_sync_blacklist_empty.inc5 # max_wait - number of seconds to wait before timing out
8 expr $max_wait_intervals = $max_wait + $max_wait;
H A Dwait_metadata_changes_detected.inc7 # max_wait - number of seconds to wait before timing out
11 expr $max_wait_intervals = $max_wait + $max_wait;
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/mysql-test/suite/ndb_ddl/
H A Dwait_immediate_metadata_sync.inc5 # max_wait - number of seconds to wait before timing out
13 expr $max_wait_intervals = $max_wait + $max_wait;
H A Dwait_metadata_sync_blacklist_empty.inc5 # max_wait - number of seconds to wait before timing out
8 expr $max_wait_intervals = $max_wait + $max_wait;
H A Dwait_metadata_changes_detected.inc7 # max_wait - number of seconds to wait before timing out
11 expr $max_wait_intervals = $max_wait + $max_wait;
/dports/databases/db5/db-5.3.28/test/tcl/
H A Drepmgr018.tcl98 set max_wait 30
100 "Connections dropped"] > $drop1} $max_wait
117 "Connections dropped"] > $drop2} $max_wait
131 "Connections dropped"] == 1} $max_wait
/dports/www/h2o-devel/h2o-dcc7134/lib/common/socket/evloop/
H A Dkqueue.c.h105 int evloop_do_proceed(h2o_evloop_t *_loop, int32_t max_wait) in evloop_do_proceed() argument
117 max_wait = adjust_max_wait(&loop->super, max_wait); in evloop_do_proceed()
118 ts.tv_sec = max_wait / 1000; in evloop_do_proceed()
119 ts.tv_nsec = max_wait % 1000 * 1000 * 1000; in evloop_do_proceed()
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/mysql-test/suite/ndb_rpl/t/
H A Dwait_metadata_changes_detected.inc7 # max_wait - number of seconds to wait before timing out
11 expr $max_wait_intervals = $max_wait + $max_wait;

12345678910>>...24