noname

Results 27 issues of noname

I like this theme very much and wanna use it in windows. Thank you.

为了加快 SQLite3 数据库的速度,我会把数据库文件复制到内存中。但是,这样就只能拿到一个 *sql.DB 对象,无法创建 xorm 的 engine 了。 请问有办法利用 *sql.DB 对象创建 engine 吗?

![ca](https://user-images.githubusercontent.com/6028869/83854605-87bd4200-a749-11ea-9a04-06f43598d2ea.png) In above picture, DB in the fourth layer, the most outside. But in thie project, Repository is the second inner layer. Why?

`Add` class as example change ```ruby class Add def reduce(environment) if left.reducible? Add.new(left.reduce(environment), right) elsif right.reducible? Add.new(left, right.reduce(environment)) else Number.new(left.value + right.value) end end end ``` to ```ruby class Add...

English is not my native language. So...

`*( *(up->e2.next).e1.p )` 与 `*(up->e2.next).e1.y` 的表达式写错了。 因为 `.` 的优先级比 `*` 的高,所以以上写法相当于是 `**p` 与 `*y`。即,把整型当做地址来获取值。 正确的写法是 `*((*up->e2.next).e1.p)` 与 `(*up->e2.next).e1.y`,因为 `->` 的优先级比 `*` 高。 还有一种更直观的写法 `*(up->e2.next->e1.p)` 与 `up->e2.next->e1.y`,因为 `->` 与 `.` 的优先级一样。...

你的解答是 malloc(21) | 24 | 0x19 应该是 malloc(21) | 32 | 0x21

把 bar5.c 中的 ```C double x ``` 修改成 ```C static double x ``` 我的答案

我认为,命中与否,跟读写无关,只看缓存中是否已经保存了有效的副本。 0x836 会缓存在组 1 中,但是组1 中没有标记 83 且有效位为 1 的行。 所以,我任务写不命中