Library Search
结果页02-dependency-injection-auth
在 技术栈 中找到 8 个匹配结果。
技术栈
技术栈
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% Amazon DynamoDB class TaskRepository:
@staticmethod
def create(user_id, title, due_date=None):
task = {
'PK': f'USER#{user_id}',
'SK': f'TASK#{uuid.uuid4().hex[:8]}',… 2% Flask class BookResource(Resource):
"""处理 /api/books/<book_id> 的 GET / PUT / DELETE"""
@marshal_with(book_fields)
def get(self, book_id):
"""获取单本书"""
book = next((b for b in boo… 2% Python def deposit(self, amount: float) -> bool:
"""存款"""
if amount <= 0:
print("存款金额必须大于 0")
return False
self.balance += amount
self._transactions.ap… 2% Fiber 参考文献:
[
{
"url": "https://docs.gofiber.io/",
"type": "web",
"year": 2024,
"title": "Fiber 官方文档",
"authors": [
"Fiber Team"
]
},
{
"url": "https://github.com/val… 2% Neo4j def create_data(tx):
"""批量创建节点和关系"""
tx.run("""
CREATE (:Person {name: '张三', age: 21, major: '计算机科学'})
CREATE (:Person {name: '李四', age: 22, major: '数学'})
CREATE (:Pers… 2% Bootstrap <div class="container-fluid">
<div class="row">
<!-- 侧边栏 -->
<aside class="col-md-3 col-lg-2 d-md-block bg-light sidebar p-3 min-vh-100">
<ul class="nav flex-column">… 2% Scikit-learn 分类报告:
precision recall f1-score support
setosa 1.00 1.00 1.00 19
versicolor 0.93 1.00 0.96 13
virginica 1.00 0.… 1%