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

  • 相关阅读:
    BZOJ1941Hide and Seek
    数学与树学(娱乐向)
    树状数组(模板)
    BZOJ2716天使玩偶
    BZOJ3262陌上花开
    BZOJ3781小B的询问
    BZOJ3236作业
    Bsgs模板
    HNOI2008明明的烦恼
    BZOJ1211树的计数
  • 原文地址:https://www.cnblogs.com/rsapaper/p/13913229.html
Copyright © 2011-2022 走看看