Library Search
结果页

axum

在 元器件 / 技术栈 / 知识库 中找到 16 个匹配结果。

返回文档库
技术栈

技术栈

8 个
查看全部
C# ```html <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <title>Alpine.js Demo</title> <style> body { font-family: system-ui; max-width: 600px; margin: 50px auto; background: #… 2% CakePHP 参考文献: [ { "url": "https://book.cakephp.org", "type": "web", "year": 2024, "title": "CakePHP Cookbook", "authors": [ "CakePHP Team" ] }, { "url": "https://github… 2% PyTorch 参考文献: [ { "type": "book", "year": 2020, "title": "Deep Learning with PyTorch", "authors": [ "Eli Stevens", "Luca Antiga", "Thomas Viehmann" ] }, { "type… 2% Neo4j def create_data(tx): """批量创建节点和关系""" tx.run(""" CREATE (:Person {name: '张三', age: 21, major: '计算机科学'}) CREATE (:Person {name: '李四', age: 22, major: '数学'}) CREATE (:Pers… 2% Fiber 参考文献: [ { "url": "https://docs.gofiber.io/", "type": "web", "year": 2024, "title": "Fiber 官方文档", "authors": [ "Fiber Team" ] }, { "url": "https://github.com/val… 2% Laravel 参考文献: [ { "url": "https://laravel.com/docs", "type": "web", "year": 2024, "title": "Laravel Documentation", "authors": [ "Laravel Team" ] }, { "type": "book",… 2% ONNX ## ONNX ONNX (Open Neural Network Exchange) 是由微软和 Facebook 于 2017 年联合推出的**开放神经网络互操作格式**。它定义了一种标准化的计算图表示,让 PyTorch / TensorFlow / scikit-learn 训练的模型可以导出为 `.onnx`,然后在任何支持 ONNX 的推理引擎上运行。 **核心价值:** - **… 1% Redis 参考文献: [ { "url": "https://redis.io/docs/", "type": "web", "year": 2023, "title": "Redis Official Documentation", "authors": [ "Redis Ltd." ] }, { "type": "book"… 1%
知识库

知识库

8 个
Hello World - Cypher 图查询入门 def create_data(tx): """批量创建节点和关系""" tx.run(""" CREATE (:Person {name: '张三', age: 21, major: '计算机科学'}) CREATE (:Person {name: '李四', age: 22, major: '数学'}) CREATE (:Pers… 2% 火焰传感器(4针) 双模式检测与中断触发代码例程 enum AlarmLevel { LEVEL_SAFE = 0, // 安全 LEVEL_WARNING, // 警告(微弱火源) LEVEL_DANGER, // 危险(确认火焰) LEVEL_CRITICAL // 紧急(强火焰) }; AlarmLevel currentLevel = LEVEL_SAFE;… 1% Arduino Nano 33 IoT — 代码例程 void setup() { Serial.begin(115200); pinMode(LED_BUILTIN, OUTPUT); digitalWrite(LED_BUILTIN, LOW); WiFi.begin(ssid, pass); while (WiFi.status() != WL_CONNECTED) { dela… 1% Arduino Nano RP2040 Connect — 代码例程 void setup() { Serial.begin(115200); while (!Serial); if (!LittleFS.begin()) { Serial.println("LittleFS mount failed!"); // 首次使用需格式化 if (!LittleFS.format()) {… 1% ESP32-C3 Super Mini — 代码例程 void setup() { Serial.begin(115200); BLEDevice::init("C3-Sensor"); BLEServer *pServer = BLEDevice::createServer(); // 创建广播数据(Manufacturer Data) BLEAdvertising *pAdvertisi… 1% 火焰传感器(3针) ADC采样与火焰检测代码例程 void setup() { Serial.begin(115200); Serial.println("火焰频率分析模式"); } 1% INMP441 I2S 麦克风 — 代码例程 (ESP32 + STM32) void dual_i2s_init() { i2s_config_t i2s_config = { .mode = (i2s_mode_t)(I2S_MODE_MASTER | I2S_MODE_RX), .sample_rate = SAMPLE_RATE, .bits_per_sample = I2S_BITS_PER_SAMPLE_3… 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%