Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pidFile (0.15 sec)

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

      if [ -f /etc/docker/daemon.json ]; then
        echo "Contents of the old docker config"
        cat /etc/docker/daemon.json
      fi
    
      cat <<EOF >/etc/docker/daemon.json
    {
    EOF
    
    addockeropt "\"pidfile\": \"/var/run/docker.pid\",
      \"iptables\": false,
      \"ip-masq\": false,"
    
      echo "setting log-level"
      if [[ "${TEST_CLUSTER:-}" == "true" ]]; then
        addockeropt "\"log-level\": \"debug\","
      else
    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

    	// p.runSafePointFn == 1 and will call runSafePointFn when
    	// changing its status to _Pidle/_Psyscall.
    
    	// Run safe point function for all idle Ps. sched.pidle will
    	// not change because we hold sched.lock.
    	for p := sched.pidle.ptr(); p != nil; p = p.link.ptr() {
    		if atomic.Cas(&p.runSafePointFn, 1, 0) {
    			fn(p)
    			sched.safePointWait--
    		}
    	}
    
    	wait := sched.safePointWait > 0
    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