Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 2h0m0s (0.21 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        val startNanos = System.nanoTime()
        assertFailsWith<InterruptedIOException> {
          stream.takeHeaders()
        }
        val elapsedNanos = System.nanoTime() - startNanos
        awaitWatchdogIdle()
        // 200ms delta
        assertThat(TimeUnit.NANOSECONDS.toMillis(elapsedNanos).toDouble())
          .isCloseTo(500.0, 200.0)
        assertThat(connection.openStreamCount()).isEqualTo(0)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. src/net/http/client_test.go

    		if err != nil {
    			t.Error(err)
    		}
    		gotBody = string(b)
    	}()
    
    	select {
    	case <-reqc:
    		// Request should be sent after trying to probe the request body for 200ms.
    	case <-time.After(60 * time.Second):
    		t.Errorf("request not sent after 60s")
    	}
    
    	// Write the request body and wait for the request to complete.
    	const content = "body"
    	bodyw.Write([]byte(content))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    	content: "+";
    	color: var(--black-color);
    	position: absolute;
    	font-size: 1.75rem;
    	line-height: 0;
    	margin-top: 0.3rem;
    	right: 0;
    	font-weight: 400;
    	transform-origin: center;
    	transition: 200ms linear;
    }
    
    details[open] summary:after {
    	transform: rotate(45deg);
    	font-size: 2rem;
    }
    
    details summary {
    	outline: 0;
    }
    
    details p {
    	font-size: 0.95rem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top