Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for 203 (0.03 sec)

  1. build-logic-commons/build-platform/build.gradle.kts

            api("com.google.errorprone:error_prone_annotations:2.5.1")
            api("com.google.code.gson:gson:2.8.9")
            api("com.nhaarman:mockito-kotlin:1.6.0")
            api("com.thoughtworks.qdox:qdox:2.0.3")
            api("com.uwyn:jhighlight:1.0")
            api("com.vladsch.flexmark:flexmark-all:0.34.60") {
                because("Higher versions tested are either incompatible (0.62.2) or bring additional unwanted dependencies (0.36.8)")
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 29 21:53:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/LocalLoadingCacheTest.java

        assertEquals(3, stats.requestCount());
        assertEquals(1, stats.hitCount());
        assertThat(stats.hitRate()).isEqualTo(1.0 / 3);
        assertEquals(2, stats.missCount());
        assertThat(stats.missRate()).isEqualTo(2.0 / 3);
        assertEquals(2, stats.loadCount());
        assertTrue(stats.totalLoadTime() >= totalLoadTime);
        totalLoadTime = stats.totalLoadTime();
        assertTrue(stats.averageLoadPenalty() >= 0.0);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/LocalLoadingCacheTest.java

        assertEquals(3, stats.requestCount());
        assertEquals(1, stats.hitCount());
        assertThat(stats.hitRate()).isEqualTo(1.0 / 3);
        assertEquals(2, stats.missCount());
        assertThat(stats.missRate()).isEqualTo(2.0 / 3);
        assertEquals(2, stats.loadCount());
        assertTrue(stats.totalLoadTime() >= totalLoadTime);
        totalLoadTime = stats.totalLoadTime();
        assertTrue(stats.averageLoadPenalty() >= 0.0);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/BooleansTest.java

            new boolean[] {false, false, true, false, true, true, false});
    
        // Rotate the first three elements
        testRotate(
            new boolean[] {false, true, false, true, false, true, false},
            -2,
            0,
            3,
            new boolean[] {false, false, true, true, false, true, false});
        testRotate(
            new boolean[] {false, true, false, true, false, true, false},
            -1,
            0,
            3,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

          limiter.acquire(); // #3
        }
        assertEvents(
            "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20", // #1
            "U0.34", // #2
            "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20"); // #3
      }
    
      @AndroidIncompatible // difference in String.format rounding?
      public void testWarmUpAndUpdate() {
        RateLimiter limiter = RateLimiter.create(2.0, 4000, MILLISECONDS, 3.0, stopwatch);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

          limiter.acquire(); // #3
        }
        assertEvents(
            "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20", // #1
            "U0.34", // #2
            "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20"); // #3
      }
    
      @AndroidIncompatible // difference in String.format rounding?
      public void testWarmUpAndUpdate() {
        RateLimiter limiter = RateLimiter.create(2.0, 4000, MILLISECONDS, 3.0, stopwatch);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.32.md

    - github.com/aws/aws-sdk-go-v2: [v1.30.1](https://github.com/aws/aws-sdk-go-v2/tree/v1.30.1)
    - github.com/aws/smithy-go: [v1.20.3](https://github.com/aws/smithy-go/tree/v1.20.3)
    - github.com/containerd/cgroups/v3: [v3.0.3](https://github.com/containerd/cgroups/tree/v3.0.3)
    - github.com/containerd/containerd/api: [v1.7.19](https://github.com/containerd/containerd/tree/api/v1.7.19)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Oct 29 20:17:52 UTC 2024
    - 121.6K bytes
    - Viewed (0)
  8. doc/go_spec.html

    x := sum                       // illegal: the type of x is unknown
    intSum := sum[int]             // intSum has type func(x... int) int
    a := intSum(2, 3)              // a has value 5 of type int
    b := sum[float64](2.0, 3)      // b has value 5.0 of type float64
    c := sum(b, -1)                // c has value 4.0 of type float64
    
    type sumFunc func(x... string) string
    var f sumFunc = sum            // same as var f sumFunc = sum[string]
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
  9. RELEASE.md

    *   Removes `scipy` dependency from `setup.py` since TensorFlow does not need it
        to install the pip package
    *   Switches ROCM builds to use ROCM 3.7
    
    # Release 2.0.3
    
    ## Bug Fixes and Other Changes
    
    *   Fixes an undefined behavior causing a segfault in `tf.raw_ops.Switch`
        ([CVE-2020-15190](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15190))
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
Back to top