Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for uuidgen (0.07 sec)

  1. cluster/gce/gci/configure-helper.sh

        # three uuids and take their sum. The sum is encoded in ASCII hex, hence the
        # 64 character cut.
        out+="$(
         (
           uuidgen --random;
           uuidgen --random;
           uuidgen --random;
         ) | sha256sum \
           | head -c 64
        )";
      done
      # Finally, convert the ASCII hex to base64 to increase the density.
      echo -n "${out}" | xxd -r -p | base64 -w 0
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	}
    	casgstatus(newg, _Gdead, status)
    	if pp.goidcache == pp.goidcacheend {
    		// Sched.goidgen is the last allocated id,
    		// this batch must be [sched.goidgen+1, sched.goidgen+GoidCacheBatch].
    		// At startup sched.goidgen=0, so main goroutine receives goid=1.
    		pp.goidcache = sched.goidgen.Add(_GoidCacheBatch)
    		pp.goidcache -= _GoidCacheBatch - 1
    		pp.goidcacheend = pp.goidcache + _GoidCacheBatch
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top