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

推荐订阅源

T
Tenable Blog
博客园_首页
Vercel News
Vercel News
WordPress大学
WordPress大学
美团技术团队
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
Y
Y Combinator Blog
博客园 - 【当耐特】
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
腾讯CDC
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Recent Announcements
Recent Announcements
雷峰网
雷峰网
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
The Register - Security
The Register - Security
Jina AI
Jina AI
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Hugging Face - Blog
Hugging Face - Blog
P
Privacy & Cybersecurity Law Blog
Recorded Future
Recorded Future
Help Net Security
Help Net Security
N
News and Events Feed by Topic
博客园 - Franky
P
Proofpoint News Feed
L
LINUX DO - 热门话题
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
D
Docker
Google DeepMind News
Google DeepMind News
有赞技术团队
有赞技术团队
IT之家
IT之家
Security Latest
Security Latest
L
LangChain Blog
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks

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