Library Search
结果页

go

在 技术栈 中找到 8 个匹配结果。

返回文档库
技术栈

技术栈

8 个
查看全部
Verilog / SystemVerilog always_ff @(posedge clk or negedge rst_n) begin if (!rst_n) begin state <= S_IDLE; rx_valid <= 0; rx_error <= 0; clk_cnt <= 0; bit_idx <= 0; end else begin… 2% 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% Go (Golang) # Go (Golang) 技术栈概览 Go 是由 Google 的 Robert Griesemer、Rob Pike 和 Ken Thompson 于 2009 年发布的**编译型、并发优先的系统编程语言**。它融合了 C 语言的性能与 Python 的开发效率,被称为「21 世纪的 C 语言」。 ## 解决什么问题 - **高并发服务端**:goroutine + channel 原生并… 2% gRPC # gRPC 例程:Go 语言四种通信模式 ## 目标 用 Go 实现 gRPC 的四种通信模式:Unary、Server Streaming、Client Streaming、Bidirectional Streaming。 ## Proto 定义 ```protobuf syntax = "proto3"; package calculator; option go_package =… 2% Remix <Form method="post" style={{ display: 'flex', gap: 8, marginBottom: 20 }}> <input type="hidden" name="_intent" value="add" /> <input name="name" placeholder="姓名*" required style={input… 2% Gin # Gin 技术栈概览 Gin 是 Go 语言中最流行的 **高性能 HTTP Web 框架**,由 @gin-gonic 团队维护。它基于 httprouter 实现极致路由性能(比标准库快 40 倍),提供 Martini 风格的 API,是 Go 后端开发的事实标准。 ## 解决什么问题 - **高性能 API**:路由基于 radix tree,零内存分配,QPS 远超 Express… 2% PyTorch 参考文献: [ { "type": "book", "year": 2020, "title": "Deep Learning with PyTorch", "authors": [ "Eli Stevens", "Luca Antiga", "Thomas Viehmann" ] }, { "type… 1% FastAPI @app.get("/") async def get_chat_page(): """返回简易聊天页面 HTML""" return """ <!DOCTYPE html> <html> <head><title>FastAPI Chat</title></head> <body> <h2>💬 实时聊天</h2>… 1%