Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for 107 (0.17 seconds)

  1. android/guava-tests/test/com/google/common/net/HostAndPortTest.java

        assertThat(HostAndPort.fromString("[::1]").toString()).isEqualTo("[::1]");
    
        // Garbage in, garbage out.
        assertThat(HostAndPort.fromParts("::]", 107).toString()).isEqualTo("[::]]:107");
        assertThat(HostAndPort.fromString("[[:]]:108").toString()).isEqualTo("[[:]]:108");
      }
    
      public void testSerialization() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 15:59:55 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/net/HostAndPortTest.java

        assertThat(HostAndPort.fromString("[::1]").toString()).isEqualTo("[::1]");
    
        // Garbage in, garbage out.
        assertThat(HostAndPort.fromParts("::]", 107).toString()).isEqualTo("[::]]:107");
        assertThat(HostAndPort.fromString("[[:]]:108").toString()).isEqualTo("[[:]]:108");
      }
    
      public void testSerialization() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 15:59:55 GMT 2026
    - 10K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

            "R0.20, R0.10, R0.10, R0.10", // #5
            "U4.10", // #6
            "R0.00, R0.94, R0.81, R0.69, R0.57, R0.44, R0.32", // #7
            "R0.20, R0.10, R0.10, R0.10"); // #7 (cont.), note, this matches #5
      }
    
      public void testBurstyAndUpdate() {
        RateLimiter rateLimiter = RateLimiter.create(1.0, stopwatch);
        rateLimiter.acquire(1); // no wait
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 22K bytes
    - Click Count (0)
  4. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

            "R0.20, R0.10, R0.10, R0.10", // #5
            "U4.10", // #6
            "R0.00, R0.94, R0.81, R0.69, R0.57, R0.44, R0.32", // #7
            "R0.20, R0.10, R0.10, R0.10"); // #7 (cont.), note, this matches #5
      }
    
      public void testBurstyAndUpdate() {
        RateLimiter rateLimiter = RateLimiter.create(1.0, stopwatch);
        rateLimiter.acquire(1); // no wait
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 22K bytes
    - Click Count (0)
  5. docs/en/docs/release-notes.md

    ## 0.10.1 (2019-03-25)
    
    * Add docs and tests for [encode/databases](https://github.com/encode/databases). New docs at: [Async SQL (Relational) Databases](https://fastapi.tiangolo.com/advanced/async-sql-databases/). PR [#107](https://github.com/tiangolo/fastapi/pull/107).
    
    ## 0.10.0 (2019-03-24)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:07:04 GMT 2026
    - 631K bytes
    - Click Count (0)
Back to Top