惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hacker News - Newest:
Hacker News - Newest: "LLM"
Webroot Blog
Webroot Blog
S
Security @ Cisco Blogs
H
Heimdal Security Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
www.infosecurity-magazine.com
www.infosecurity-magazine.com
N
News and Events Feed by Topic
H
Hacker News: Front Page
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Application and Cybersecurity Blog
Application and Cybersecurity Blog
SecWiki News
SecWiki News
N
News | PayPal Newsroom
T
Tor Project blog
W
WeLiveSecurity
A
Arctic Wolf
Security Archives - TechRepublic
Security Archives - TechRepublic
S
Secure Thoughts
月光博客
月光博客
AWS News Blog
AWS News Blog
D
Docker
C
CERT Recently Published Vulnerability Notes
MyScale Blog
MyScale Blog
Google Online Security Blog
Google Online Security Blog
大猫的无限游戏
大猫的无限游戏
T
The Blog of Author Tim Ferriss
I
InfoQ
人人都是产品经理
人人都是产品经理
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
Hacker News: Ask HN
Hacker News: Ask HN
Blog — PlanetScale
Blog — PlanetScale
博客园 - 【当耐特】
Engineering at Meta
Engineering at Meta
Stack Overflow Blog
Stack Overflow Blog
Recorded Future
Recorded Future
罗磊的独立博客
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
T
The Exploit Database - CXSecurity.com
D
DataBreaches.Net
S
Security Affairs
WordPress大学
WordPress大学
T
Threatpost
Microsoft Security Blog
Microsoft Security Blog
V
Vulnerabilities – Threatpost
The Hacker News
The Hacker News
S
SegmentFault 最新的问题
B
Blog RSS Feed
Project Zero
Project Zero
P
Proofpoint News Feed

Recent Commits to fetch:main

Meta: make methods a required ID · whatwg/fetch@586cd2a Add TAO destination check for navigation redirect chains Review Draft Publication: June 2026 Add a textStream() method to the Body mixin Define ABNF for origin-or-null Only consider pending fetch-later requests for deferred fetch quota · whatwg/fetch@7d7ab2a Add WebDriver BiDi network logging with stable request IDs Add "text" destination type, for JavaScript text imports Meta: update repository files Add WebTransport-hashes to request, wired down to create a connection Block 416 alongside 206 Editorial: fix typo Review Draft Publication: December 2025 Bypass blob URL partitioning for top-level self fetches Align with changes to Service Worker's handle fetch WebDriver BiDi: override Accept-Language header Add "webtransport" request mode Introduce "is offline" algorithm and use it Restrict fetchLater() to secure contexts
Add quota & requested to QuotaExceededError · whatwg/fetch@3d04edb
noamr · 2026-01-13 · via Recent Commits to fetch:main
Original file line numberDiff line numberDiff line change

@@ -9537,10 +9537,14 @@ method steps are:

95379537

<p class=note>Requests whose <a for=request>body</a> is a {{ReadableStream}} object cannot be

95389538

deferred.

95399539
9540-

<li><p>If the <a>available deferred-fetch quota</a> given <var>request</var>'s

9541-

<a for=request>client</a> and <var>request</var>'s <a for=request>URL</a>'s

9542-

<a for=url>origin</a> is less than <var>request</var>'s <a>total request length</a>, then throw a

9543-

"{{QuotaExceededError}}" {{DOMException}}.

9540+

<li><p>Let <var>quota</var> be the <a>available deferred-fetch quota</a> given <var>request</var>'s

9541+

<a for=request>client</a> and <var>request</var>'s <a for=request>URL</a>'s <a for=url>origin</a>.

9542+
9543+

<li><p>Let <var>requested</var> be <var>request</var>'s <a>total request length</a>.

9544+
9545+

<li><p>If <var>quota</var> is less than <var>requested</var>, then

9546+

<a for=exception>throw</a> a {{QuotaExceededError}} whose <a for=QuotaExceededError>quota</a> is

9547+

<var>quota</var> and <a for=QuotaExceededError>requested</a> is <var>requested</var>.

95449548
95459549

<li><p>Let <var>activated</var> be false.

95469550