Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DIE (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			Namespace: "", // update should allow the client to send an empty namespace
    		},
    		Other: "bar",
    	}
    	body, err := runtime.Encode(testCodec, item)
    	if err != nil {
    		// The following cases will fail, so die now
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	client := http.Client{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⋄":                            "\u22c4",
    	"⋄":                         "\u22c4",
    	"♦":                     "\u2666",
    	"♦":                           "\u2666",
    	"¨":                             "\u00a8",
    	"ϝ":                         "\u03dd",
    	"⋲":                           "\u22f2",
    	"÷":                             "\u00f7",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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