Searched refs:timestamp (Results 1 – 18 of 18) sorted by relevance
/curl/scripts/ |
H A D | dmaketgz | 37 timestamp="${2:-$(date -u +%s)}" 43 --build-arg SOURCE_DATE_EPOCH="$timestamp" \
|
H A D | verify-release | 68 timestamp=$(grep -Eo 'SOURCE_DATE_EPOCH=[0-9]*' curl-"$curlver"/docs/RELEASE-TOOLS.md | cut -d= -f2) 73 ./scripts/dmaketgz "$curlver" "$timestamp"
|
H A D | release-tools.sh | 29 timestamp=${1:-unknown} 76 - export SOURCE_DATE_EPOCH=$timestamp
|
H A D | maketgz | 92 timestamp=${SOURCE_DATE_EPOCH:-$(date +"%s")} 93 datestamp=$(date -d "@$timestamp" +"%F") 94 filestamp=$(date -d "@$timestamp" +"%Y%m%d%H%M.%S") 165 ./scripts/release-tools.sh "$timestamp" "$version" "$commit" > docs/RELEASE-TOOLS.md.dist
|
/curl/docs/cmdline-opts/ |
H A D | remote-time.md | 19 Makes curl attempt to figure out the timestamp of the remote file that is 21 timestamp.
|
/curl/tests/ |
H A D | testcurl.pl | 77 $timestamp $notes); 331 $timestamp = scalar(gmtime)." UTC"; 357 logit "date = $timestamp"; # When the test build starts 425 $timestamp = scalar(gmtime)." UTC" if (!$gitstat); 448 $timestamp = scalar(gmtime)." UTC" if (!$gitstat); 508 $timestamp = $stampstring." UTC"; 517 logit "timestamp = $timestamp";
|
/curl/lib/ |
H A D | http_aws_sigv4.c | 162 char *timestamp, in make_headers() argument 186 "x-%s-date:%s", provider1, timestamp); in make_headers() 261 *date_header = aprintf("%s: %s\r\n", date_hdr_key, timestamp); in make_headers() 279 memcpy(timestamp, value, TIMESTAMP_SIZE - 1); in make_headers() 280 timestamp[TIMESTAMP_SIZE - 1] = 0; in make_headers() 284 timestamp[0] = 0; in make_headers() 583 char timestamp[TIMESTAMP_SIZE]; in Curl_output_aws_sigv4() local 724 if(!strftime(timestamp, sizeof(timestamp), "%Y%m%dT%H%M%SZ", &tm)) { in Curl_output_aws_sigv4() 729 result = make_headers(data, hostname, timestamp, provider1, in Curl_output_aws_sigv4() 742 memcpy(date, timestamp, sizeof(date)); in Curl_output_aws_sigv4() [all …]
|
H A D | progress.c | 161 struct curltime timestamp) in Curl_pgrsTimeWas() argument 172 data->progress.t_startop = timestamp; in Curl_pgrsTimeWas() 176 data->progress.t_startsingle = timestamp; in Curl_pgrsTimeWas() 185 Curl_timediff_us(timestamp, data->progress.t_startop); in Curl_pgrsTimeWas() 188 data->progress.t_acceptdata = timestamp; in Curl_pgrsTimeWas() 221 data->progress.t_redirect = Curl_timediff_us(timestamp, in Curl_pgrsTimeWas() 226 timediff_t us = Curl_timediff_us(timestamp, data->progress.t_startsingle); in Curl_pgrsTimeWas()
|
H A D | progress.h | 70 struct curltime timestamp);
|
H A D | hostip.h | 101 time_t timestamp; member
|
H A D | hostip.c | 198 if(dns->timestamp) { in hostcache_entry_is_stale() 200 time_t age = prune->now - dns->timestamp; in hostcache_entry_is_stale() 504 dns->timestamp = 0; /* an entry that never goes stale */ in Curl_cache_addr() 506 dns->timestamp = time(NULL); in Curl_cache_addr() 507 if(dns->timestamp == 0) in Curl_cache_addr() 508 dns->timestamp = 1; in Curl_cache_addr()
|
H A D | smb.c | 922 static void get_posix_time(time_t *out, curl_off_t timestamp) in get_posix_time() argument 924 timestamp -= 116444736000000000; in get_posix_time() 925 timestamp /= 10000000; in get_posix_time() 927 if(timestamp > TIME_T_MAX) in get_posix_time() 929 else if(timestamp < TIME_T_MIN) in get_posix_time() 933 *out = (time_t) timestamp; in get_posix_time()
|
/curl/tests/unit/ |
H A D | unit1607.c | 199 if(dns->timestamp && tests[i].permanent) { 207 if(dns->timestamp == 0 && !tests[i].permanent) {
|
/curl/docs/libcurl/opts/ |
H A D | CURLINFO_FILETIME_T.md | 43 bit long variables to extract dates outside of the 32-bit timestamp range.
|
/curl/docs/libcurl/ |
H A D | libcurl-env-dbg.md | 110 Fake Unix timestamp to use for AltSvc, HSTS and CURLINFO variables that are 115 case the value is not a timestamp.
|
/curl/ |
H A D | Dockerfile | 7 # Build and set the timestamp for the date corresponding to the release
|
/curl/packages/OS400/rpg-examples/ |
H A D | SMTPSRCMBR | 205 now.ts = %timestamp(*SYS); 208 weekday = %rem(%diff(now.ts: %timestamp('2001-01-01-00.00.00.000000'):
|
/curl/docs/ |
H A D | TODO | 766 The timestamp of the transferred file should reflect that of the original
|
Completed in 49 milliseconds