Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DIE (0.05 sec)

  1. src/net/http/transport_test.go

    func testTLSServerClosesConnection(t *testing.T, mode testMode) {
    	closedc := make(chan bool, 1)
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		if strings.Contains(r.URL.Path, "/keep-alive-then-die") {
    			conn, _, _ := w.(Hijacker).Hijack()
    			conn.Write([]byte("HTTP/1.1 200 OK\r\nContent-Length: 3\r\n\r\nfoo"))
    			conn.Close()
    			closedc <- true
    			return
    		}
    		fmt.Fprintf(w, "hello")
    	})).ts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      }
    
      /**
       * Test the case where the futures are fulfilled prior to constructing the ListFuture. There was a
       * bug where the loop that connects a Listener to each of the futures would die on the last
       * loop-check as done() on ListFuture nulled out the variable being looped over (the list of
       * futures).
       */
      public void testAllAsList_doneFutures() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      }
    
      /**
       * Test the case where the futures are fulfilled prior to constructing the ListFuture. There was a
       * bug where the loop that connects a Listener to each of the futures would die on the last
       * loop-check as done() on ListFuture nulled out the variable being looped over (the list of
       * futures).
       */
      public void testAllAsList_doneFutures() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	// (See details in comment above.)
    	// Catch calls that might, by replacing the stack guard with something that
    	// will trip any stack check and leaving a flag to tell newstack to die.
    	gp.stackguard0 = stackPreempt
    	gp.throwsplit = true
    
    	// Leave SP around for GC and traceback.
    	save(pc, sp, bp)
    	gp.syscallsp = sp
    	gp.syscallpc = pc
    	gp.syscallbp = bp
    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