Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for incoming2 (0.12 sec)

  1. src/runtime/proc.go

    			// Call on the systemstack to prevent print and throw from counting
    			// against the nosplit stack reservation.
    			print("runtime: casgstatus: oldval=", hex(oldval), " newval=", hex(newval), "\n")
    			throw("casgstatus: bad incoming values")
    		})
    	}
    
    	lockWithRankMayAcquire(nil, lockRankGscan)
    
    	// See https://golang.org/cl/21503 for justification of the yield delay.
    	const yieldDelay = 5 * 1000
    	var nextYield int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      echo "Binding '${mountpoint}' at '${bindpoint}'"
      mount --bind "${mountpoint}" "${bindpoint}"
      chmod a+w "${bindpoint}"
    }
    
    
    # Mounts, bindmounts, or symlinks depending on the interface and format
    # of the incoming device
    function mount-ext(){
      local ssd="${1}"
      local devicenum="${2}"
      local interface="${3}"
      local format="${4}"
    
    
      if [[ -z "${devicenum}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. fastapi/applications.py

                    **Note**: you probably shouldn't use this parameter, it is inherited
                    from Starlette and supported for compatibility.
    
                    ---
    
                    A list of routes to serve incoming HTTP and WebSocket requests.
                    """
                ),
                deprecated(
                    """
                    You normally wouldn't use this parameter with FastAPI, it is inherited
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    // give a copy of that Request.Body out to the Transport (e.g. any
    // proxy).  So then two people own that Request.Body (both the server
    // and the http client), and both think they can close it on failure.
    // Therefore, all incoming server requests Bodies need to be thread-safe.
    func TestTransportAndServerSharedBodyRace(t *testing.T) {
    	run(t, testTransportAndServerSharedBodyRace, testNotParallel)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top