Library Search
结果页reqwest
在 元器件 / 技术栈 / 知识库 中找到 17 个匹配结果。
元器件
元器件
1 个技术栈
技术栈
8 个 Verilog / SystemVerilog always_ff @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
state <= S_IDLE; tx <= 1'b1;
clk_cnt <= 0; bit_idx <= 0;
end else begin
case (stat… 2% Spring Batch @Bean
public Step importStep() {
return new StepBuilder("importStep", jobRepository)
.<Customer, Customer>chunk(100, transactionManager)
.reader(reader)… 2% Apache CouchDB 参考文献:
[
{
"type": "book",
"year": 2010,
"title": "CouchDB: The Definitive Guide",
"authors": [
"J. Chris Anderson",
"Jan Lehnardt",
"Noah Slater"
]
},
{… 2% PyTorch 参考文献:
[
{
"type": "book",
"year": 2020,
"title": "Deep Learning with PyTorch",
"authors": [
"Eli Stevens",
"Luca Antiga",
"Thomas Viehmann"
]
},
{
"type… 2% FastAPI @app.get("/")
async def get_chat_page():
"""返回简易聊天页面 HTML"""
return """
<!DOCTYPE html>
<html>
<head><title>FastAPI Chat</title></head>
<body>
<h2>💬 实时聊天</h2>… 1% Laravel 参考文献:
[
{
"url": "https://laravel.com/docs",
"type": "web",
"year": 2024,
"title": "Laravel Documentation",
"authors": [
"Laravel Team"
]
},
{
"type": "book",… 1% Redis 参考文献:
[
{
"url": "https://redis.io/docs/",
"type": "web",
"year": 2023,
"title": "Redis Official Documentation",
"authors": [
"Redis Ltd."
]
},
{
"type": "book"… 1% React Native <FlatList
data={todos}
keyExtractor={(item) => item.id}
renderItem={renderItem}
ListEmptyComponent={
<Text style={styles.empty}>暂无任务,添加一个吧 ✨</Text>
}… 1%
知识库
知识库
8 个 进阶:UART 收发器(可综合到 FPGA) always_ff @(posedge clk or negedge rst_n) begin
if (!rst_n) begin
state <= S_IDLE; tx <= 1'b1;
clk_cnt <= 0; bit_idx <= 0;
end else begin
case (stat… 2% CSV 文件批量导入 @Bean
public Step importStep() {
return new StepBuilder("importStep", jobRepository)
.<Customer, Customer>chunk(100, transactionManager)
.reader(reader)… 2% 02-进阶实战-WebSocket-后台任务-部署 @app.get("/")
async def get_chat_page():
"""返回简易聊天页面 HTML"""
return """
<!DOCTYPE html>
<html>
<head><title>FastAPI Chat</title></head>
<body>
<h2>💬 实时聊天</h2>… 2% AS608 光学指纹传感器 — 代码例程 (STM32 + Arduino) uint8_t recvPacket(uint8_t *confirm) {
unsigned long t = millis();
while (as608Serial.available() < 12) {
if (millis() - t > 1000) return 0;
}
uint8_t b;
while (as608S… 1% 火焰传感器(4针) 双模式检测与中断触发代码例程 void loop() {
int doState = digitalRead(FLAME_DO_PIN);
Serial.print("DO状态: ");
if (doState == LOW) {
Serial.println("LOW ← 已触发(火焰/红外源太强或阈值太低)");
} else {
Serial.printl… 1% Todo List 应用——核心组件与 Hooks <FlatList
data={todos}
keyExtractor={(item) => item.id}
renderItem={renderItem}
ListEmptyComponent={
<Text style={styles.empty}>暂无任务,添加一个吧 ✨</Text>
}… 1% Hello World - Loader与Action联系人管理 <Form method="post" style={{ display: 'flex', gap: 8, marginBottom: 20 }}>
<input type="hidden" name="_intent" value="add" />
<input name="name" placeholder="姓名*" required style={input… 1% 5V继电器模块驱动代码例程 if (msg == "ON") {
relay.on();
client.publish("home/relay/state", "ON");
} else if (msg == "OFF") {
relay.off();
client.publish("home/relay/state", "OFF");
} el… 1%