Library Search
结果页进阶:J-Flash 量产工具与 SystemView 实时分析
在 技术栈 中找到 8 个匹配结果。
技术栈
技术栈
8 个 SEGGER J-Link # 批量烧录(脚本循环)
for i in {1..100}; do
JFlash -openprj production.jflash \
-open "firmware_v1.2.hex" \
-auto \
-exit
echo "设备 #$i 完成"
done
```
### 5. 序列号 CSV 定制… 3% OpenOCD | 命令 | 作用 |
|------|------|
| `monitor reset halt` | 复位 MCU 并暂停 |
| `monitor flash write_image erase file.bin 0x08000000` | 烧录 .bin |
| `break function_name` | 函数断点 |
| `break *0x08001234` | 地址断点 |
|… 2% WPF public class ScoreConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value is int score)
return… 1% PyTorch 1. 动态计算图相比静态图,性能上有损失吗?PyTorch 2.0 的 `torch.compile` 如何解决?
2. `optimizer.zero_grad()` 如果忘记调用会怎样?
3. `model.train()` 和 `model.eval()` 具体影响了哪些层的行为?
4. 为什么 `CrossEntropyLoss` 的输入不能经过 softmax?
# PyTorch 进… 1% Spring Data JPA # Spring Data JPA 深入与性能优化教程
## 第一章:实体映射详解
### 1.1 关联关系
```java
@Entity
public class Order {
@Id @GeneratedValue
private Long id;
@ManyToOne(fetch = FetchType.LAZY) // 默认 LAZY,建议显式声明… 1% Node.js | 优化项 | 方法 |
|--------|------|
| 数据库查询 | 使用连接池、添加索引、避免 N+1 查询 |
| 缓存 | Redis 缓存热点数据、设置合理 TTL |
| 压缩 | 启用 gzip/br 压缩响应 |
| 静态资源 | 使用 CDN 或 Nginx 反代 |
| 内存泄漏 | 使用 `--inspect` + Chrome DevTools 排查 |
| 事件… 1% MyBatis-Plus // 查询单个
User user = userMapper.selectOne(
new LambdaQueryWrapper<User>().eq(User::getEmail, "test@test.com")
);
// 只查指定字段
wrapper.select(User::getId, User::getName);
// 排除字段
wrapper.select(User.… 1% InfluxDB // 写入
const point = new Point('temperature')
.tag('location', 'lab')
.floatField('value', 23.5);
writeApi.writePoint(point);
writeApi.flush().then(() => console.log('写入完成'));
// 查询
const que… 1%