Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for floatkey (0.23 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      @Override
      @CheckForNull
      public Entry<K, V> floorEntry(K key) {
        return headMap(key, true).lastEntry();
      }
    
      @Override
      @CheckForNull
      public K floorKey(K key) {
        return keyOrNull(floorEntry(key));
      }
    
      @Override
      @CheckForNull
      public Entry<K, V> ceilingEntry(K key) {
        return tailMap(key, true).firstEntry();
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{"% d", []byte{1, 11, 111}, "[ 1  11  111]"},
    	{"%+d", [3]byte{1, 11, 111}, "[+1 +11 +111]"},
    	{"%# -6d", []byte{1, 11, 111}, "[ 1      11     111  ]"},
    	{"%#+-6d", [3]byte{1, 11, 111}, "[+1     +11    +111  ]"},
    
    	// floates with %v
    	{"%v", 1.2345678, "1.2345678"},
    	{"%v", float32(1.2345678), "1.2345678"},
    
    	// complexes with %v
    	{"%v", 1 + 2i, "(1+2i)"},
    	{"%v", complex64(1 + 2i), "(1+2i)"},
    
    	// structs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0);
    
    // Asserts that val1 is less than, or almost equal to, val2.  Fails
    // otherwise.  In particular, it fails if either val1 or val2 is NaN.
    GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
                                       float val1, float val2);
    GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    func (s *state) uint64Tofloat(cvttab *u642fcvtTab, n ir.Node, x *ssa.Value, ft, tt *types.Type) *ssa.Value {
    	// if x >= 0 {
    	//    result = (floatY) x
    	// } else {
    	// 	  y = uintX(x) ; y = x & 1
    	// 	  z = uintX(x) ; z = z >> 1
    	// 	  z = z | y
    	// 	  result = floatY(z)
    	// 	  result = result + result
    	// }
    	//
    	// Code borrowed from old code generator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   EXPECT_PRED_FORMAT2(testing::DoubleLE, Foo(), 5.0);
    
    // Asserts that val1 is less than, or almost equal to, val2.  Fails
    // otherwise.  In particular, it fails if either val1 or val2 is NaN.
    GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
                                       float val1, float val2);
    GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Salt, must recede from that Particle, and give way to the more attracted Water. When any saline Liquor is evaporated to a Cuticle and let cool, the Salt concretes in regular Figures; which argues, that the Particles of the Salt before they concreted, floated in the Liquor at equal distances in rank and file, and by consequence that they acted upon one another by some Power which at equal distances is equal, at unequal distances unequal. For by such a Power they will range themselves uniformly, and without...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. src/testdata/Isaac.Newton-Opticks.txt

    Water.
    
    When any saline Liquor is evaporated to a Cuticle and let cool, the Salt
    concretes in regular Figures; which argues, that the Particles of the
    Salt before they concreted, floated in the Liquor at equal distances in
    rank and file, and by consequence that they acted upon one another by
    some Power which at equal distances is equal, at unequal distances
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
Back to top