Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for incoming2 (0.33 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. fastapi/routing.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: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  3. 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)
  4. CHANGELOG/CHANGELOG-1.4.md

        an `Ingress` creation request to the Federation API Server. The
        Federation control system then creates and maintains a single
        global virtual IP to load balance incoming HTTP(S) traffic across
        some or all the registered clusters, across all regions. Google's
        GCE L7 LoadBalancer is the first supported implementation, and
    	is available in this release.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. doc/go1.17_spec.html

    Parameter and result
    lists are always parenthesized except that if there is exactly
    one unnamed result it may be written as an unparenthesized type.
    </p>
    
    <p>
    The final incoming parameter in a function signature may have
    a type prefixed with <code>...</code>.
    A function with such a parameter is called <i>variadic</i> and
    may be invoked with zero or more arguments for that parameter.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top