Home
last modified time | relevance | path

Searched refs:etag_match (Results 1 – 14 of 14) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/
H A Dupload_to_google_storage.py87 etag_match = re.search(r'ETag:\s+([a-z0-9]{32})', out)
88 if etag_match:
89 remote_md5 = etag_match.group(1)
/dports/net/google-cloud-sdk/google-cloud-sdk/platform/gsutil/gslib/tests/
H A Dtest_hmac.py67 etag_match = re.search(r'\sEtag:\s+([\S]+)$', output_string)
68 if not etag_match:
70 return etag_match.group(1)
H A Dtest_cp.py3347 etag_match = re.search(r'\s*ETag:\s*(.*)', stdout)
3348 self.assertIsNotNone(etag_match, 'Could not get object ETag')
3349 self.assertEqual(len(etag_match.groups()), 1,
3351 etag = etag_match.group(1)
3389 etag_match = re.search(r'\s*ETag:\s*(.*)', stdout)
3390 self.assertIsNotNone(etag_match, 'Could not get object ETag')
3391 self.assertEqual(len(etag_match.groups()), 1,
3393 etag = etag_match.group(1)
3420 etag_match = re.search(r'\s*ETag:\s*(.*)', stdout)
3422 self.assertEqual(len(etag_match.groups()), 1,
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/gsutil/gslib/tests/
H A Dtest_hmac.py67 etag_match = re.search(r'\sEtag:\s+([\S]+)$', output_string)
68 if not etag_match:
70 return etag_match.group(1)
H A Dtest_cp.py3187 etag_match = re.search(r'\s*ETag:\s*(.*)', stdout)
3188 self.assertIsNotNone(etag_match, 'Could not get object ETag')
3189 self.assertEqual(len(etag_match.groups()), 1,
3191 etag = etag_match.group(1)
3229 etag_match = re.search(r'\s*ETag:\s*(.*)', stdout)
3230 self.assertIsNotNone(etag_match, 'Could not get object ETag')
3231 self.assertEqual(len(etag_match.groups()), 1,
3233 etag = etag_match.group(1)
3260 etag_match = re.search(r'\s*ETag:\s*(.*)', stdout)
3262 self.assertEqual(len(etag_match.groups()), 1,
[all …]
/dports/databases/couchdb3/apache-couchdb-3.2.1/src/couch/src/
H A Dcouch_httpd.erl27 -export([doc_etag/1, doc_etag/3, make_etag/1, etag_match/2, etag_respond/3, etag_maybe/2]).
656 etag_match(Req, CurrentEtag) when is_binary(CurrentEtag) -> function
657 etag_match(Req, binary_to_list(CurrentEtag));
659 etag_match(Req, CurrentEtag) -> function
665 case etag_match(Req, CurrentEtag) of
678 throw:{etag_match, ETag} ->
/dports/devel/google-cloud-cpp117/google-cloud-cpp-1.17.0/google/cloud/storage/testbench/
H A Dgcs_object.py326 etag_match = request.headers.get("if-match")
327 if etag_match is not None and etag_match != acl.get("etag"):
/dports/databases/couchdb3/apache-couchdb-3.2.1/src/chttpd/src/
H A Dchttpd.erl26 doc_etag/1, make_etag/1, etag_respond/3, etag_match/2,
703 etag_match(Req, CurrentEtag) when is_binary(CurrentEtag) -> function
704 etag_match(Req, binary_to_list(CurrentEtag));
706 etag_match(Req, CurrentEtag) -> function
718 case etag_match(Req, CurrentEtag) of
/dports/databases/couchdb3/apache-couchdb-3.2.1/src/couch_mrview/src/
H A Dcouch_mrview_show.erl192 case chttpd:etag_match(Req, ETag) of
193 true -> throw({etag_match, ETag});
H A Dcouch_mrview_http.erl638 case chttpd:etag_match(Req, ETag) of
639 true -> throw({etag_match, ETag});
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/external_bin/gsutil/gsutil_4.28/gsutil/gslib/tests/
H A Dtest_cp.py2512 etag_match = re.search(r'\s*ETag:\s*(.*)', stdout)
2513 self.assertIsNotNone(etag_match, 'Could not get object ETag')
2514 self.assertEqual(len(etag_match.groups()), 1,
2516 etag = etag_match.group(1)
2551 etag_match = re.search(r'\s*ETag:\s*(.*)', stdout)
2552 self.assertIsNotNone(etag_match, 'Could not get object ETag')
2553 self.assertEqual(len(etag_match.groups()), 1,
2555 etag = etag_match.group(1)
2580 etag_match = re.search(r'\s*ETag:\s*(.*)', stdout)
2582 self.assertEqual(len(etag_match.groups()), 1,
[all …]
/dports/mail/cyrus-imapd30/cyrus-imapd-3.0.16/imap/
H A Dhttpd.c4187 static unsigned etag_match(const char *hdr[], const char *etag) in etag_match() function
4291 if (!etag_match(hdr, etag)) return HTTP_PRECOND_FAILED; in check_precond()
4307 if (etag_match(hdr, etag)) { in check_precond()
/dports/mail/cyrus-imapd32/cyrus-imapd-3.2.8/imap/
H A Dhttpd.c4183 static unsigned etag_match(const char *hdr[], const char *etag) in etag_match() function
4287 if (!etag_match(hdr, etag)) return HTTP_PRECOND_FAILED; in check_precond()
4304 if (etag_match(hdr, etag)) { in check_precond()
/dports/mail/cyrus-imapd34/cyrus-imapd-3.4.2/imap/
H A Dhttpd.c4229 static unsigned etag_match(const char *hdr[], const char *etag) in etag_match() function
4333 if (!etag_match(hdr, etag)) return HTTP_PRECOND_FAILED; in check_precond()
4350 if (etag_match(hdr, etag)) { in check_precond()