Home
last modified time | relevance | path

Searched refs:start (Results 1 – 25 of 125) sorted by relevance

12345

/curl/scripts/
H A Ddelta33 $start = $ARGV[0];
35 if($start eq "-h") {
39 elsif($start eq "") {
41 chomp $start;
44 $commits = `git log --oneline $start.. | wc -l`;
45 $committers = `git shortlog -s $start.. | wc -l`;
46 $bcommitters = `git shortlog -s $start | wc -l`;
57 $bcontribs = `git show $start:docs/THANKS | grep -c '^[^ ]'`;
75 $bsetopts = setopts("git show $start:include/curl/curl.h|");
105 $diffstat=`git diff --stat $start.. | tail -1`;
[all …]
H A Dcontributors.sh34 start="${1:-}"
36 if test "$start" = "-h"; then
40 if test -z "$start"; then
41 start=$(git tag --sort=taggerdate | grep "^curl-" | tail -1)
42 echo "Since $start:"
60 git log --pretty=full --use-mailmap "$start..HEAD"
62 git -C "$CURLWWW" log --pretty=full --use-mailmap "$start..HEAD"
H A Dcontrithanks.sh33 start="${1:-}"
35 if test "$start" = "-h"; then
39 if test -z "$start"; then
40 start=$(git tag --sort=taggerdate | grep "^curl-" | tail -1)
50 git log --use-mailmap "$start..HEAD"
52 git -C "$CURLWWW" log --use-mailmap "$start..HEAD"
H A Dcd2cd84 my $start = 0;
92 if(!$start) {
95 $start = 1;
164 if(!$start) {
H A Dmanagen271 $start = 0;
288 $start = 1;
465 my $start;
472 if(!$start) {
474 $start = 1;
550 $start++;
587 if($start < 2) {
785 my $start = 0;
787 if(!$start) {
789 $start = 1;
[all …]
H A Dcd2nroff201 my $start = 0;
217 if(!$start) {
220 $start = 1;
333 if(!$start) {
/curl/tests/
H A Dech_combos.py34 r, start, end): argument
60 if start > n:
65 chosen[index] = arr[start]
71 r, start, end)
73 r, start + 1, end)
H A Dazure.pm105 my ($curl, $azure_run_id, $azure_result_id, $testnum, $error, $start, $stop)=@_;
107 $stop = $start;
109 my $azure_start = strftime "%Y-%m-%dT%H:%M:%SZ", gmtime $start;
111 my $azure_duration = sprintf("%.0f", ($stop-$start)*1000);
H A Dappveyor.pm73 my ($curl, $testnum, $error, $start, $stop)=@_;
79 $stop = $start;
81 my $appveyor_duration = sprintf("%.0f", ($stop-$start)*1000);
/curl/docs/cmdline-opts/
H A Dfalse-start.md4 Long: false-start
13 - --false-start $URL
16 # `--false-start`
18 Use false start during the TLS handshake. False start is a mode where a TLS
H A Drange.md48 Only digit characters (0-9) are valid in the 'start' and 'stop' fields of the
49 'start-stop' range syntax. If a non-digit character is given in the range, the
55 FTP and SFTP range downloads only support the simple 'start-stop' syntax
/curl/lib/
H A Dstrtok.c45 char *start = ptr; in Curl_strtok_r() local
48 *end = start + 1; in Curl_strtok_r()
61 return start; /* return the position where the string starts */ in Curl_strtok_r()
H A Drename.c48 struct curltime start = Curl_now(); in Curl_rename() local
58 diff = Curl_timediff(Curl_now(), start); in Curl_rename()
H A Drtsp.c941 start = header + 8; in Curl_rtsp_parseheader()
942 while(*start && ISBLANK(*start)) in Curl_rtsp_parseheader()
943 start++; in Curl_rtsp_parseheader()
945 if(!*start) { in Curl_rtsp_parseheader()
956 end = start; in Curl_rtsp_parseheader()
959 idlen = end - start; in Curl_rtsp_parseheader()
998 const char *start, *end; in rtsp_parse_transport() local
999 start = transport; in rtsp_parse_transport()
1000 while(start && *start) { in rtsp_parse_transport()
1001 while(*start && ISBLANK(*start) ) in rtsp_parse_transport()
[all …]
H A Dmprintf.c156 char *start; /* format string start to output */ member
236 char *start = fmt; in parsefmt() local
246 outlen = (size_t)(fmt - start - 1); in parsefmt()
256 optr->start = start; in parsefmt()
259 start = fmt; in parsefmt()
557 optr->start = start; in parsefmt()
559 start = fmt; in parsefmt()
566 outlen = (size_t)(fmt - start); in parsefmt()
573 optr->start = start; in parsefmt()
695 char *str = optr->start; in formatf()
/curl/docs/libcurl/opts/
H A DCURLINFO_STARTTRANSFER_TIME_T.md33 start until the first byte is received by libcurl. This includes
49 curl_off_t start;
53 res = curl_easy_getinfo(curl, CURLINFO_STARTTRANSFER_TIME_T, &start);
55 printf("Time: %" CURL_FORMAT_CURL_OFF_T ".%06ld", start / 1000000,
56 (long)(start % 1000000));
H A DCURLOPT_SSL_FALSESTART.md17 CURLOPT_SSL_FALSESTART - TLS false start
31 This option determines whether libcurl should use false start during the TLS
32 handshake. False start is a mode where a TLS client starts sending application
61 Returns CURLE_OK if false start is supported by the SSL backend, otherwise
H A DCURLINFO_STARTTRANSFER_TIME.md32 start until the first byte is received by libcurl. This includes
48 double start;
52 res = curl_easy_getinfo(curl, CURLINFO_STARTTRANSFER_TIME, &start);
54 printf("Time: %.1f", start);
H A DCURLOPT_RESUME_FROM.md30 want the transfer to start from. Set this option to 0 to make the transfer
31 start from the beginning (effectively disabling resume). For FTP, set this
32 option to -1 to make the transfer start from the end of the target file
H A DCURLOPT_RESUME_FROM_LARGE.md31 you want the transfer to start from. Set this option to 0 to make the transfer
32 start from the beginning (effectively disabling resume). For FTP, set this
33 option to -1 to make the transfer start from the end of the target file
/curl/docs/libcurl/
H A Dcurl_easy_getinfo.md82 Time from start until name resolving completed. See
87 Time from start until name resolving completed. See
92 Time from start until remote host or proxy completed.
97 Time from start until remote host or proxy completed.
102 Time from start until SSL/SSH handshake completed.
107 Time from start until SSL/SSH handshake completed.
112 Time from start until just before the transfer begins.
117 Time from start until just before the transfer begins.
131 Time from start until just when the first byte is received.
136 Time from start until just when the first byte is received.
[all …]
/curl/tests/http/
H A Dconftest.py64 if not httpd.start():
75 assert nghttpx.start()
84 assert nghttpx.start()
H A Dtest_11_unix.py48 def start(self): member in UDSFaker
61 self._thread.start()
92 faker.start()
/curl/tests/http/testenv/
H A Dnghttpx.py77 return self.start()
80 def start(self, wait_live=True): member in Nghttpx
99 return self.start()
107 if not self.start(wait_live=False):
179 def start(self, wait_live=True): member in NghttpxQuic
213 def start(self, wait_live=True): member in NghttpxFwd
/curl/tests/data/
H A Dtest103637 This is the start!!
56 This is the start!!

Completed in 80 milliseconds

12345