327 Matching Annotations
  1. Mar 2018
  2. eigen.tuxfamily.org eigen.tuxfamily.org
    1. if (app.metadata && app.metadata.has('dc:title') && app.metadata.get('dc:title') !== 'Untitled') { title = app.metadata.get('dc:title'); }

      the empty dc:title should also be considered as Untitled

    1. While that allows you to use the string class, the relevant operator<< is defined in the <string> header itself, so you must include that manually

      为什么有时候使用visual c++会提示 cout << 不能输出 string 类型: 因为 <iostream> 包含了头文件 <xstring>, 该头文件引入了 string 类型但是未引入 operator<<

    1. Scheduling of this kind is a fundamental operating-system function.Almost all computer resources are scheduled before use

      调度是操作系统的基本功能, 几乎所有的计算机资源在使用前均先调度

    Tags

    Annotators

    1. One trick to deal with schedulers is to treat nonpreemptive scheduler as preemptive with very large quantum (10K is good for our simulation) that will never fire. This way the TRANS_TO_RUN transition is implemented generically.

      将非抢占调度器当成抢占调度器处理

      quantum 是什么

    Annotators

    1. An option character in this string can be followed by a colon (‘:’) to indicate that it takes a required argument

      option character 后跟 : 表示该 option 带参数

    Tags

    Annotators

    1. compiler structure; lexical and syntactic analysis; semantic analysis and code generation; theory of parsing

      编译器需要学习的主题:

      1. 编译器结构
      2. 词法与语法分析
      3. 语义分析与代码生成
      4. parsing theory
    1. It may be that Pas-cal and C require clumsyforwarddeclarations because their designers wantedto avoid an extra compiler pass on the machines of the 1970s

      C语言的前置声明(clumsy forward declarations)的原因

    Tags

    Annotators

    1. width The intrinsic width of the image in pixels. In HTML 4, either a percentage or pixels were acceptable values. In HTML5, however, only pixels are acceptable.

      HTML5 only accept pixels values of width

    1. As of this writing, Markdown has no syntax for specifying the dimensions of an image; if this is important to you, you can simply use regular HTML <img> tags.

      markdown 目前的语法不支持设置图片大小, 但可以通过一般的HTML 标签实现

    1. I learned a lot of high-quality material efficiently, I got many new friends, and I increased my confidence in myself. Additionally, I learned about how to do high-quality teaching from attending lectures with excellent professors, I increased my respect for several professions, and I practiced leadership skills in some of the study groups.

      学习的乐趣

    1. We are switching to the following text book Author: Abraham Silberschatz, Peter Baer Galvin, Greg Gagne Title: Operating System Concepts

      教材换了, 原来的是 Modern Operating Systems

    Tags

    Annotators

  3. www.cad.zju.edu.cn www.cad.zju.edu.cn
    1. In a let expression, the initial values are computed before any of the variables become bound.
      • let binding 先在当前环境中计算所有 init 表达式的值, 再 bind varible, 最后在扩展的环境中计算 expression

      • let* 按顺序依次计算 init 并进行 binding

      • letrec 则先 binding 后再计算 init 允许递归定义

    1. In practice the tool is akin to the annotation systems on sites like medium.com and ReadCube

      Hypothesis 类似于(akin to) ReadCube 和 medium 网站上的标注系统

    1. A more concise mathematical investigation on projective geometry was started by G. Desargues (1593-1662). It was he who has introduced the notion of a point and a line at infinity.

      Desargues 笛沙格引入了无穷远点和无穷远线