zoukankan      html  css  js  c++  java
  • oblet

     

    oblet - The Go Programming Language https://golang.google.cn/search?q=oblet

    // put enqueues a pointer for the garbage collector to trace.
       174  // obj must point to the beginning of a heap object or an oblet.
    // maxObletBytes is the maximum bytes of an object to scan at
        25  	// once. Larger objects will be split up into "oblets" of at
        26  	// most this size. Since we can scan 1–2 MB/ms, 128 KB bounds
        27  	// scan preemption at ~100 µs.
        28  	//
        29  	// This must be > _MaxSmallSize so that the object base is the
        30  	// span base.
        31  	maxObletBytes = 128 << 10




    // Oblets
       121  //
       122  // In order to prevent long pauses while scanning large objects and to
       123  // improve parallelism, the garbage collector breaks up scan jobs for
       124  // objects larger than maxObletBytes into "oblets" of at most
       125  // maxObletBytes. When scanning encounters the beginning of a large
       126  // object, it scans only the first oblet and enqueues the remaining
       127  // oblets as new scan jobs.

    以let为后缀的单词 http://www.ee1234.com/let-houzhui.html

    后缀-let = 小,微小,在…佩带的小饰物_英语词源字典 http://etymon.cn/yingyucizhui/yingyuhouzhui/42922.html

  • 相关阅读:
    20165212第八周学习总结
    20165212第八周课上测试补做
    20165212实验二面向对象程序设计
    Titanic生存预测
    聚类算法数据生成器make_blobs
    k-means
    监督学习、无监督学习与半监督学习
    在线Latex公式编辑器
    西瓜书课后习题——第四章
    ML经典数据集
  • 原文地址:https://www.cnblogs.com/rsapaper/p/13913229.html
Copyright © 2011-2022 走看看