Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for 001 (0.03 sec)

  1. src/archive/tar/strconv_test.go

    		{".5", time.Time{}, false},
    		{"-1.3", time.Unix(-1, -3e8), true},
    		{"-1.0", time.Unix(-1, -0e0), true},
    		{"-0.0", time.Unix(-0, -0e0), true},
    		{"-0.1", time.Unix(-0, -1e8), true},
    		{"-0.01", time.Unix(-0, -1e7), true},
    		{"-0.99", time.Unix(-0, -99e7), true},
    		{"-0.98", time.Unix(-0, -98e7), true},
    		{"-1.1", time.Unix(-1, -1e8), true},
    		{"-1.01", time.Unix(-1, -1e7), true},
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Feb 09 05:28:50 UTC 2021
    - 14K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

                    (Path) null,
                    createModelBuildingRequest(context).setValidationLevel(ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_3_1),
                    collector);
    
            assertCollectorState(0, 0, 1, collector);
            assertEquals(interpolatedName, out.getName());
        }
    
        protected abstract ModelInterpolator createInterpolator() throws Exception;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/DoubleMathTest.java

          assertTrue(Math.abs(dmLog2 - trueLog2) <= Math.ulp(trueLog2));
        }
      }
    
      public void testLog2SemiMonotonic() {
        for (double d : POSITIVE_FINITE_DOUBLE_CANDIDATES) {
          assertTrue(DoubleMath.log2(d + 0.01) >= DoubleMath.log2(d));
        }
      }
    
      public void testLog2Negative() {
        for (double d : POSITIVE_FINITE_DOUBLE_CANDIDATES) {
          assertTrue(Double.isNaN(DoubleMath.log2(-d)));
        }
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 15:00:32 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/hash/BloomFilterTest.java

      }
    
    
      public void testNoRaceConditions() throws Exception {
        final BloomFilter<Integer> bloomFilter =
            BloomFilter.create(Funnels.integerFunnel(), 15_000_000, 0.01);
    
        // This check has to be BEFORE the loop because the random insertions can
        // flip GOLDEN_PRESENT_KEY to true even if it wasn't explicitly inserted
        // (false positive).
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/math/IntMathTest.java

        // Even-sized ranges should prefer the lower mean
        assertMean(2, 1, 4);
        assertMean(-3, -4, -1);
        assertMean(0, -1, 2);
        assertMean(0, Integer.MIN_VALUE + 2, Integer.MAX_VALUE);
        assertMean(0, 0, 1);
        assertMean(-1, -1, 0);
        assertMean(-1, Integer.MIN_VALUE, Integer.MAX_VALUE);
    
        // x == y == mean
        assertMean(1, 1, 1);
        assertMean(0, 0, 0);
        assertMean(-1, -1, -1);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        RateLimiter unused;
        unused = RateLimiter.create(1.0, 1, NANOSECONDS);
        unused = RateLimiter.create(1.0, 0, NANOSECONDS);
    
        assertThrows(IllegalArgumentException.class, () -> RateLimiter.create(0.0, 1, NANOSECONDS));
    
        assertThrows(IllegalArgumentException.class, () -> RateLimiter.create(1.0, -1, NANOSECONDS));
      }
    
      @AndroidIncompatible // difference in String.format rounding?
      public void testWarmUp() {
    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. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        RateLimiter unused;
        unused = RateLimiter.create(1.0, 1, NANOSECONDS);
        unused = RateLimiter.create(1.0, 0, NANOSECONDS);
    
        assertThrows(IllegalArgumentException.class, () -> RateLimiter.create(0.0, 1, NANOSECONDS));
    
        assertThrows(IllegalArgumentException.class, () -> RateLimiter.create(1.0, -1, NANOSECONDS));
      }
    
      @AndroidIncompatible // difference in String.format rounding?
      public void testWarmUp() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/tls/HostnameVerifierTest.kt

        assertThat(verifier.verify("127.0.0.2", session)).isFalse()
      }
    
      @Test fun wildcardsCannotMatchIpAddresses() {
        // openssl req -x509 -nodes -days 36500 -subj '/CN=*.0.0.1' -newkey rsa:512 -out cert.pem
        val session =
          session(
            """
            -----BEGIN CERTIFICATE-----
            MIIBkjCCATygAwIBAgIJAMdemqOwd/BEMA0GCSqGSIb3DQEBBQUAMBIxEDAOBgNV
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/PreconditionsTest.java

        assertThat(expected).hasMessageThat().isEqualTo("foo (2) must not be greater than size (1)");
      }
    
      public void testCheckPositionIndexes_ok() {
        checkPositionIndexes(0, 0, 0);
        checkPositionIndexes(0, 0, 1);
        checkPositionIndexes(0, 1, 1);
        checkPositionIndexes(1, 1, 1);
      }
    
      public void testCheckPositionIndexes_badSize() {
        assertThrows(IllegalArgumentException.class, () -> checkPositionIndexes(1, 1, -1));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Sep 17 18:14:12 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/math/DoubleMathTest.java

          assertTrue(Math.abs(dmLog2 - trueLog2) <= Math.ulp(trueLog2));
        }
      }
    
      public void testLog2SemiMonotonic() {
        for (double d : POSITIVE_FINITE_DOUBLE_CANDIDATES) {
          assertTrue(DoubleMath.log2(d + 0.01) >= DoubleMath.log2(d));
        }
      }
    
      public void testLog2Negative() {
        for (double d : POSITIVE_FINITE_DOUBLE_CANDIDATES) {
          assertTrue(Double.isNaN(DoubleMath.log2(-d)));
        }
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 15:00:32 UTC 2024
    - 27.3K bytes
    - Viewed (0)
Back to top