Home
last modified time | relevance | path

Searched +full:- +full:- +full:timeout +full:- +full:first +full:- +full:retries (Results 1 – 25 of 111) sorted by relevance

12345

/third_party/mesa3d/.gitlab-ci/b2c/
Dgenerate_b2c.py30 parser.add_argument('--ci-job-id')
31 parser.add_argument('--container-cmd')
32 parser.add_argument('--initramfs-url')
33 parser.add_argument('--job-success-regex')
34 parser.add_argument('--job-warn-regex')
35 parser.add_argument('--kernel-url')
36 parser.add_argument('--log-level', type=int)
37 parser.add_argument('--poweroff-delay', type=int)
38 parser.add_argument('--session-end-regex')
39 parser.add_argument('--session-reboot-regex')
[all …]
/third_party/curl/docs/cmdline-opts/
Dretry.md1 ---
3 SPDX-License-Identifier: curl
10 See-also:
11 - retry-max-time
13 - --retry 7 $URL
14 ---
16 # `--retry`
19 retries this number of times before giving up. Setting the number to 0
20 makes curl do no retries (which is the default). Transient error means either:
21 a timeout, an FTP 4xx response code or an HTTP 408, 429, 500, 502, 503 or 504
[all …]
Dretry-max-time.md1 ---
3 SPDX-License-Identifier: curl
4 Long: retry-max-time
10 See-also:
11 - retry
13 - --retry-max-time 30 --retry 10 $URL
14 ---
16 # `--retry-max-time`
18 The retry timer is reset before the first transfer attempt. Retries are done
19 as usual (see --retry) as long as the timer has not reached this given
[all …]
/third_party/ltp/testcases/lib/
Dtest.sh3 # Copyright (c) Linux Test Project, 2014-2017
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
87 if [ $# -ne 1 ]; then
96 if [ $ret -eq 127 ]; then
104 if [ "$(id -ru)" != 0 ]; then
111 if [ -n "${TST_CLEANUP:-}" -a -z "${TST_NO_CLEANUP:-}" ]; then
115 if [ -n "${LTP_IPC_PATH:-}" -a -f "${LTP_IPC_PATH:-}" ]; then
116 rm -f "$LTP_IPC_PATH"
120 if [ $((LTP_RET_VAL & 7)) -eq 0 -a $TST_PASS_COUNT -gt 0 ]; then
129 if [ -z "$TMPDIR" ]; then
[all …]
/third_party/mesa3d/.gitlab-ci/test/
Dgitlab-ci.yml7 - !reference [default, before_script]
9 - rm -rf install
10 - tar -xf artifacts/install.tar
11- echo -e "\e[0Ksection_start:$(date +%s):ldd_section[collapsed=true]\r\e[0KChecking ldd on driver…
12 - LD_LIBRARY_PATH=install/lib find install/lib -name "*.so" -print -exec ldd {} \;
13 - echo -e "\e[0Ksection_end:$(date +%s):ldd_section\r\e[0K"
18 - results/
20 .test-gl:
22 - .test
23 - .use-debian/x86_test-gl
[all …]
/third_party/curl/lib/
Dtftp.c21 * SPDX-License-Identifier: curl
51 #include "cf-socket.h"
77 #define TFTP_OPTION_INTERVAL "timeout"
92 TFTP_EVENT_NONE = -1,
114 TFTP_ERR_NONE = -100,
130 int retries; member
196 * tftp_set_timeouts -
200 * packet is received, then use user-provided transfer timeouts
206 time_t maxtime, timeout; in tftp_set_timeouts() local
208 bool start = (state->state == TFTP_STATE_START) ? TRUE : FALSE; in tftp_set_timeouts()
[all …]
/third_party/mesa3d/.gitlab-ci/lava/
Dlava_job_submitter.py3 # Copyright (C) 2020 - 2022 Collabora Limited
8 # SPDX-License-Identifier: MIT
46 # Timeout in seconds to decide if the device from the dispatched LAVA job has
57 # How many retries should be made when a timeout happen.
60 # How many attempts should be made when a timeout happen during LAVA device boot.
78 "depthcharge-action": {
91 'timeout': { 'minutes': 10 },
98 'url': '{}/lava-rootfs.tgz'.format(args.rootfs_url_prefix),
114 "prompts": ["lava-shell:"],
121 'timeout': { 'minutes': args.job_timeout },
[all …]
/third_party/python/Doc/library/
Dsocket.rst1 :mod:`socket` --- Low-level networking interface
5 :synopsis: Low-level networking interface.
9 --------------
20 .. include:: ../includes/wasm-notavail.rst
25 call and library interface for sockets to Python's object-oriented style: the
27 the various socket system calls. Parameter types are somewhat higher-level than
43 ---------------
52 - The address of an :const:`AF_UNIX` socket bound to a file system node
55 Linux's abstract namespace is returned as a :term:`bytes-like object` with
59 bytes-like object can be used for either type of address when
[all …]
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-testsfail/
Dminimal-secure-streams-testsfail.c2 * lws-minimal-secure-streams
4 * Written in 2010-2020 by Andy Green <andy@warmcat.com>
14 * --amount xxx, the default without that is 12345 bytes.
31 * If the -proxy app is fulfilling our connection, then we don't need to have
36 * ./lws-minimal-secure-streams-proxy test app on the same machine.
44 "\"schema-version\":" "1,"
46 "\"via-socks5\":" "\"127.0.0.1:1080\","
238 * used to trigger timeout testing
423 * This is the sequence of test streams we are going to create, the ss timeout,
440 * We just get a 200 from httpbin.org as a sanity check first
[all …]
/third_party/ltp/testcases/kernel/uevents/
Duevent.h1 // SPDX-License-Identifier: GPL-2.0-or-later
25 * sequence of a null-terminated strings. First in the buffer is a summary of a
27 * key-value pairs.
64 * event attempt to check the key-value pairs stored in the values array. The
65 * event is considered to match if all key-value pairs in the values has been
80 if (memcmp(event, uevent->msg, strlen(uevent->msg))) in uevent_match()
90 for (i = 0; i < uevent->value_cnt; i++) { in uevent_match()
91 if (!strcmp(event, uevent->values[i])) { in uevent_match()
102 return val_matches == uevent->value_cnt; in uevent_match()
150 * Waits 5 seconds for a child to exit, kills the child after a timeout.
[all …]
/third_party/libwebsockets/include/libwebsockets/
Dlws-sequencer.h2 * libwebsockets - small server side websockets and web server implementation
4 * Copyright (C) 2010 - 2019 Andy Green <andy@warmcat.com>
26 * - outlive a single connection lifetime,
27 * - are not associated with a particular protocol,
28 * - are not associated with a particular vhost,
29 * - must receive and issue events inside the event loop
31 * lws_sequencer-s are bound to a pt (per-thread) which for the default case of
38 * The first .conceal_count retries are concealed, but after that the failures
45 LWSSEQ_TIMED_OUT, /* sequencer timeout */
76 * Event indexes consist of some generic ones but mainly user-defined ones
[all …]
Dlws-secure-streams.h2 * libwebsockets - small server side websockets and web server implementation
4 * Copyright (C) 2019 - 2020 Andy Green <andy@warmcat.com>
27 * Secure Streams is a *payload-only* client communication channel where all the
41 * lws_thread( [user code] ---- lws )
46 * user_process{ [user code] | shim | socket-}------ lws_process{ lws }
53 * -------------------------
57 * the serialization format always contains a 1-byte type and then a 2-byte
62 * - Proxied connection setup
64 * - 0: LWSSS_SER_TXPRE_STREAMTYPE
65 * - 1: 2-byte MSB-first rest-of-frame length
[all …]
/third_party/curl/src/
Dtool_cfgable.h23 * SPDX-License-Identifier: curl
53 char *altsvc; /* alt-svc cache file name */
56 bool encoding; /* Accept-Encoding please */
57 bool tr_encoding; /* Transfer-Encoding please */
107 bool mail_rcpt_allowfails; /* --mail-rcpt-allowfails */
126 struct getout *url_list; /* point to the first node */
188 bool jsoned; /* added json content-type */
189 char *writeout; /* %-styled format string to output */
225 char *service_name; /* set authentication service name for DIGEST-MD5,
230 long req_retry; /* number of retries */
[all …]
/third_party/toybox/toys/pending/
Ddhcp.c1 /* dhcp.c - DHCP client for dynamic network configuration.
13 usage: dhcp [-fbnqvoCRB] [-i IFACE] [-r IP] [-s PROG] [-p PIDFILE]
14 [-H HOSTNAME] [-V VENDOR] [-x OPT:VAL] [-O OPT]
18 -i Interface to use (default eth0)
19 -p Create pidfile
20 -s Run PROG at DHCP events (default /usr/share/dhcp/default.script)
21 -B Request broadcast replies
22 -t Send up to N discover packets
23 -T Pause between packets (default 3 seconds)
24 -A Wait N seconds after failure (default 20)
[all …]
/third_party/cups-filters/utils/
Dcups-browsed.conf.52 .TH cups-browsed.conf 5 "29 June 2013" "" ""
4 \fBcups-browsed.conf \fP- server configuration file for cups-browsed
7 The cups-browsed.conf file configures the cups-browsed daemon. It is normally
12 The "CacheDir" directive determines where cups-browsed should save
23 With "LogDir" can be defined where cups-browsed creates its debug log file
33 Into the file /var/log/cups/cups-browsed_log ("file"), to stderr ("stderr"), or
36 Note that if cups-browsed is running as a system service (for example
38 journal or syslog. Only if you run cups-browsed from the command line
50 Only browse remote printers (via DNS-SD or CUPS browsing) from
56 print dialogs to a more user-friendly amount in large networks with
[all …]
Dcups-browsed.conf.in2 # command line of cups-browsed via the "-o" option. In case of
9 # Where should cups-browsed save information about the print queues it had
16 # Where should cups-browsed create its debug log file (if "DebugLogging file"
23 # /var/log/cups/cups-browsed_log ('file'), to stderr ('stderr'), or
26 # Note that if cups-browsed is running as a system service (for
28 # the journal or syslog. Only if you run cups-browsed from the command
59 # Only browse remote printers (via DNS-SD or CUPS browsing) from
65 # print dialogs to a more user-friendly amount in large networks with
69 # cups-browsed creates local queues. If the print dialog uses other
70 # mechanisms to list remote printers as for example direct DNS-SD
[all …]
/third_party/libwebsockets/lib/core-net/client/
Dconnect4.c2 * libwebsockets - small server side websockets and web server implementation
4 * Copyright (C) 2010 - 2021 Andy Green <andy@warmcat.com>
25 #include "private-lib-core.h"
32 struct lws_context_per_thread *pt = &wsi->a.context->pt[(int)wsi->tsi]; in lws_client_connect_4_established()
57 if (wsi->a.vhost->http.http_proxy_port) { in lws_client_connect_4_established()
67 plen = lws_snprintf((char *)pt->serv_buf, 256, in lws_client_connect_4_established()
70 "User-agent: lws\x0d\x0a", cpa, wsi->ocport, in lws_client_connect_4_established()
71 cpa, wsi->ocport); in lws_client_connect_4_established()
74 if (wsi->a.vhost->proxy_basic_auth_token[0]) in lws_client_connect_4_established()
75 plen += lws_snprintf((char *)pt->serv_buf + plen, 256, in lws_client_connect_4_established()
[all …]
/third_party/libwebsockets/minimal-examples/mqtt-client/minimal-mqtt-client-multi/
Dminimal-mqtt-client-multi.c2 * lws-minimal-mqtt-client
4 * Written in 2010-2020 by Andy Green <andy@warmcat.com>
37 STATE_WAIT_ACK1, /* Wait for the real ack (or timeout + retry) */
61 .message = "sign-off",
108 int retries; member
126 i.protocol = "test-mqtt"; in connect_client()
129 i.pwsi = &item->wsi; in connect_client()
158 lwsl_notice("%s: item %d\n", __func__, (int)(item - &items[0])); in start_conn()
160 if (connect_client(item->context, item)) in start_conn()
169 struct lws_context *context = mgr->parent; in system_notify_cb()
[all …]
/third_party/lwip/src/core/
Ddns.c3 * DNS - host name to IP address resolver.
15 * The lwIP version of the resolver also adds a non-blocking version of
17 * checks for an IP address string first and converts it if it is valid.
23 * Once a hostname has been resolved (or found to be non-existent),
28 * However, only "One-Shot Multicast DNS Queries" are supported (RFC 6762
36 * @see @ref netconn_common for thread-safe access.
45 * uIP version Copyright (c) 2002-2003, Adam Dunkels.
73 /*-----------------------------------------------------------------------------
74 * RFC 1035 - Domain names - implementation and specification
75 * RFC 2181 - Clarifications to the DNS Specification
[all …]
/third_party/curl/docs/
DKNOWN_BUGS16 1.5 Expect-100 meets 417
30 3.3 POP3 expects "CRLF.CRLF" eob for some single-line responses
39 5.2 curl-config --libs contains private details
41 5.5 cannot handle Unicode arguments in non-Unicode builds on Windows
42 5.6 cygwin: make install installs curl-config.1 twice
44 5.11 configure --with-gssapi with Heimdal is ignored on macOS
55 6.6 libcurl can fail to try alternatives with --proxy-any
57 6.9 SHA-256 digest not supported in Windows SSPI builds
65 7.2 Implicit FTPS upload timeout
85 11.4 HTTP test server 'connection-monitor' problems
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DProgram.inc1 //===- llvm/Support/Unix/Program.cpp -----------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
16 //===----------------------------------------------------------------------===//
87 // Check to see if this first directory contains the executable...
100 if (Path->empty())
108 if (InFD == -1) {
115 if (dup2(InFD, FD) == -1) {
[all …]
/third_party/FreeBSD/sys/dev/usb/
Dusb_request.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
6 * Copyright (c) 2008-2020 Hans Petter Selasky. All rights reserved.
37 #define PORTNO_TO_NBIT(portno, i) (1U << (portno - (i << 5)))
94 .bus_index = -1,
95 .dev_index = -1,
96 .bmRequestType_value = -1,
97 .bRequest_value = -1,
100 /*------------------------------------------------------------------------*
104 *------------------------------------------------------------------------*/
[all …]
/third_party/libwebsockets/lib/system/async-dns/
Dasync-dns.c2 * libwebsockets - small server side websockets and web server implementation
4 * Copyright (C) 2010 - 2020 Andy Green <andy@warmcat.com>
25 #include "private-lib-core.h"
26 #include "private-lib-async-dns.h"
37 lws_metrics_caliper_report(q->metcal, (char)q->go_nogo); in lws_adns_q_destroy()
39 lws_sul_cancel(&q->sul); in lws_adns_q_destroy()
40 lws_sul_cancel(&q->write_sul); in lws_adns_q_destroy()
41 lws_dll2_remove(&q->list); in lws_adns_q_destroy()
52 int n = 0, nmax = q->tids >= LWS_ARRAY_SIZE(q->tid) ? in lws_adns_get_query()
53 LWS_ARRAY_SIZE(q->tid) : q->tids; in lws_adns_get_query()
[all …]
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/
DTestSuite.cpp3 // Use of this source code is governed by a BSD-style license that can be
31 #include <gtest/../../src/gtest-internal-inl.h>
39 constexpr char kBatchId[] = "--batch-id=";
40 constexpr char kFilterFileArg[] = "--filter-file=";
41 constexpr char kFlakyRetries[] = "--flaky-retries=";
42 constexpr char kGTestListTests[] = "--gtest_list_tests";
43 constexpr char kHistogramJsonFileArg[] = "--histogram-json-file=";
44 constexpr char kListTests[] = "--list-tests";
45 constexpr char kPrintTestStdout[] = "--print-test-stdout";
46 constexpr char kResultFileArg[] = "--results-file=";
[all …]
/third_party/openssl/engines/
De_afalg.c2 * Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
127 /* A version of 'struct timespec' with 32-bit time_t and nanoseconds. */
136 struct timespec *timeout) in io_getevents() argument
139 /* Check if we are a 32-bit architecture with a 64-bit time_t */ in io_getevents()
140 if (sizeof(*timeout) != sizeof(struct __timespec32)) { in io_getevents()
142 timeout, NULL); in io_getevents()
149 if (sizeof(*timeout) == sizeof(struct __timespec32)) in io_getevents()
154 return syscall(__NR_io_getevents, ctx, min, max, events, timeout); in io_getevents()
158 * 64-bit time_t on a 32-bit architecture. If we can fit the in io_getevents()
159 * timeout value in a 32-bit time_t, then let's do that in io_getevents()
[all …]

12345