Displaying 11 results from an estimated 11 matches for "time_out".
Did you mean:
timed_out
2002 Oct 30
1
connect() timeout patch.
...-------------- next part --------------
--- readconf.h Sun Jun 9 16:04:03 2002
+++ ../openssh-3.5p1.modlwc/readconf.h Wed Oct 30 08:50:52 2002
@@ -100,6 +100,7 @@
Forward remote_forwards[SSH_MAX_FORWARDS_PER_DIRECTION];
int clear_forwardings;
int no_host_authentication_for_localhost;
+ int time_out;
} Options;
--- readconf.c Tue Jul 9 10:06:40 2002
+++ ../openssh-3.5p1.modlwc/readconf.c Wed Oct 30 09:32:51 2002
@@ -793,6 +793,7 @@
options->bind_address = NULL;
options->smartcard_device = NULL;
options->no_host_authentication_for_localhost = - 1;
+ options->time_o...
2006 Jun 27
6
embedding ruby code in a [flash :notice]
The ruby code in this isn''t evaluated...
flash[:notice] = "Your last recorded entry was <%= @in_out.time_in %>
<br />You are currently marked as ''In'', you probably want to check
''Out''"
Is there a way?
Craig
2009 Jan 30
3
Pass a variable from rake to steps file in cucumber
..._opts = "--profile #{profile}"
end
I would like to have access to the "browser_type" variable in my "Before do"
in my_steps.rb file.
## my_steps.rb
Before do
$browser = Selenium::SeleniumDriver.new($server_host, $server_port,
"browser_type", $root_url, $time_out)
end
Thanks for the help.
--
View this message in context: http://www.nabble.com/Pass-a-variable-from-rake-to-steps-file-in-cucumber-tp21746008p21746008.html
Sent from the rspec-users mailing list archive at Nabble.com.
2020 Apr 07
0
when virEventAddTimeout trigger timeout ,should in the callback call virConnectDomainEventDeregisterAny ?
...cause virDomainDetachDeviceFlags maybe asynchronous, so I do like follow:
cb_para->cluster_id = info->cluster_id;
cb_para->group_id = info->group_id;
cb_para->vsys_id = info->vsysid;
cb_para->vnf_id = info->vnf_id;
cb_para->conn = conn;
cb_para->time_out = 20*1000;//20s
cb_para->call_id = virConnectDomainEventRegisterAny(conn, dom, VIR_DOMAIN_EVENT_ID_DEVICE_REMOVED, VIR_DOMAIN_EVENT_CALLBACK(vnf_control_del_network_cb), cb_para, vnf_control_del_network_cb_free);
flags |= VIR_DOMAIN_AFFECT_CONFIG;
if (virDomainIsActive(dom) == 1) {...
2001 Oct 16
1
Defeating Timing Attacks Patch for OpenSSH 2.9.9p2 and 2.9p2
...lient_suspend_self(Buffer *bin, Buffer *bout, Buffer *berr)
{
@@ -773,6 +843,15 @@
int max_fd = 0, max_fd2 = 0, len, rekeying = 0, nalloc = 0;
char buf[100];
+ /*
+ * Begin SD Mod:
+ * Add counter for number of fake packets that have been sent.
+ * Add time_out flag for marking when timeout has occured.
+ */
+ int bogus_send_count = 0;
+ int time_out = 0;
+ /* End SD Mod */
+
debug("Entering interactive session.");
start_time = get_current_time();
@@ -861,9 +940,16 @@
* Make pac...
2001 Oct 06
1
Defeating Timing Attacks
Hello,
In response to the timing analysis attacks presented by Dawn Song et.
al. in her paper http://paris.cs.berkeley.edu/~dawnsong/ssh-timing.html
we
at Silicon Defense developed a patch for openssh to avoid such
measures.
Timing Analysis Evasion changes were developed by C. Jason Coit and Roel
Jonkman of Silicon Defense.
These changes cause SSH to send packets unless request not to,
2001 Nov 09
4
keystroke timing attack
I'm reading this fine article on O'Reilly:
http://linux.oreillynet.com/lpt/a//linux/2001/11/08/ssh_keystroke.html
<quote>
The paper concludes that the keystroke timing data observable from
today's SSH implementations reveals a dangerously significant amount of
information about user terminal sessions--enough to locate typed
passwords in the session data stream and reduce the
2006 Jun 13
17
reconstituting a date
...;12"
time_in(4i): "20"
time_in(5i): "24"
and I want to save that datetime to a column in the db...
if params[:user][:in_out] == "In"
@in_out.time_in = params[:in_out][:time_in]
elsif params[:user][:in_out] == "Out"
@in_out.time_out = params[:in_out][:time_in]
params[:in_out][:time_in] = nil
end
but since it really isn''t a date time, only a null gets saved.
How do I reconstitute it as a date because
@in_out.time_in.to_date = params[:in_out][:time_in] generates an error and doesn''t work.
Craig
2019 Jun 20
2
IMAP IDLE
Hi,
2.2.33.2
Well your confs are almost mine except for
director_ping_idle_timeout = 30 secs
submission_relay_max_idle_time = 29 mins
but i think they're not imap related (i may be wrong)
any other hint why is this happening?
I was used to the old IMAP server than dovecot, where emails appear in the
inbox, no matter if it was selected for 15m or the last 4 hours
Any ideia please let me
2019 Jun 20
0
IMAP IDLE
Hum guys,
For this, i was comparing configuration from my old dbmail imap server, and
i had it with time_out 30 seconds, and connection timeout 24 hours.
No one will work more than 24 hours in a row.. (except for me, but i'm an
idiot!)
I'll set the same.. let's see the behavior.
-----Original Message-----
From: dovecot <dovecot-bounces at dovecot.org> On Behalf Of Jorge Bastos via
dove...
2020 Apr 13
2
what a correct use for virConnectDomainEventRegisterAny API, how to Obtain a stable expected result
...rConnectDomainEventRegisterAny ?
if can't trigger the vnf_control_del_network_cb callback , the memory :cb_para will mem-leak,
so in order to deal the execpt ,i register a timer to process the VIR_DOMAIN_EVENT_ID_DEVICE_REMOVED timeout
cb_para->timer_id = virEventAddTimeout(cb_para->time_out, vnf_control_del_network_timeout_cb, cb_para, vnf_control_del_network_cb_free);
thought use the timer ,can i avoid the cb_para mem-leak, but fail to achive hotplug network .