Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for testfloat (0.15 sec)

  1. android/guava-tests/test/com/google/common/hash/AbstractByteHasherTest.java

          assertEquals(
              new TestHasher().putUnencodedChars(s).hash(),
              new TestHasher().putString(s, UTF_16LE).hash());
        }
      }
    
      public void testFloat() {
        TestHasher hasher = new TestHasher();
        hasher.putFloat(Float.intBitsToFloat(0x04030201));
        hasher.assertBytes(new byte[] {1, 2, 3, 4});
      }
    
      public void testDouble() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

              new Sink(4).putBytes(s.getBytes(UTF_16LE)).hash());
          assertEquals(
              new Sink(4).putUnencodedChars(s).hash(), new Sink(4).putString(s, UTF_16LE).hash());
        }
      }
    
      public void testFloat() {
        Sink sink = new Sink(4);
        sink.putFloat(Float.intBitsToFloat(0x04030201));
        HashCode unused = sink.hash();
        sink.assertInvariants(4);
        sink.assertBytes(new byte[] {1, 2, 3, 4});
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java

              new Sink(4).putBytes(s.getBytes(UTF_16LE)).hash());
          assertEquals(
              new Sink(4).putUnencodedChars(s).hash(), new Sink(4).putString(s, UTF_16LE).hash());
        }
      }
    
      public void testFloat() {
        Sink sink = new Sink(4);
        sink.putFloat(Float.intBitsToFloat(0x04030201));
        HashCode unused = sink.hash();
        sink.assertInvariants(4);
        sink.assertBytes(new byte[] {1, 2, 3, 4});
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. test/map.go

    func P(a []string) string {
    	s := "{"
    	for i := 0; i < len(a); i++ {
    		if i > 0 {
    			s += ","
    		}
    		s += `"` + a[i] + `"`
    	}
    	s += "}"
    	return s
    }
    
    func main() {
    	testbasic()
    	testfloat()
    	testnan()
    }
    
    func testbasic() {
    	// Test a map literal.
    	mlit := map[string]int{"0": 0, "1": 1, "2": 2, "3": 3, "4": 4}
    	for i := 0; i < len(mlit); i++ {
    		s := string([]byte{byte(i) + '0'})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 06 21:02:55 UTC 2014
    - 14.9K bytes
    - Viewed (0)
  5. pkg/env/var_test.go

    	if !v {
    		t.Errorf("Expected true, got %v", v)
    	}
    	if !present {
    		t.Errorf("Expected present")
    	}
    
    	v = ev.Get()
    	if !v {
    		t.Errorf("Expected true, got %v", v)
    	}
    }
    
    func TestFloat(t *testing.T) {
    	reset()
    
    	ev := RegisterFloatVar(testVar, 123.0, "")
    	v, present := ev.Lookup()
    	if v != 123.0 {
    		t.Errorf("Expected 123.0, got %v", v)
    	}
    	if present {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. src/expvar/expvar_test.go

    		for pb.Next() {
    			v.Add(1)
    		}
    	})
    }
    
    func BenchmarkIntSet(b *testing.B) {
    	var v Int
    
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			v.Set(1)
    		}
    	})
    }
    
    func TestFloat(t *testing.T) {
    	RemoveAll()
    	reqs := NewFloat("requests-float")
    	if reqs.f.Load() != 0.0 {
    		t.Errorf("reqs.f = %v, want 0", reqs.f.Load())
    	}
    	if reqs != Get("requests-float").(*Float) {
    		t.Errorf("Get() failed.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/syscall/js/js_test.go

    	testIntConversion(t, -1<<60)
    }
    
    func testIntConversion(t *testing.T, want int) {
    	if got := js.ValueOf(want).Int(); got != want {
    		t.Errorf("got %#v, want %#v", got, want)
    	}
    }
    
    func TestFloat(t *testing.T) {
    	want := 42.123
    	o := dummys.Get("someFloat")
    	if got := o.Float(); got != want {
    		t.Errorf("got %#v, want %#v", got, want)
    	}
    	dummys.Set("otherFloat", want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. src/math/all_test.go

    var logbBC = []float64{
    	-1022,
    	-1023,
    	-1074,
    	1023,
    	-1022,
    	-1023,
    	-1074,
    	1023,
    }
    
    // Test cases were generated with Berkeley TestFloat-3e/testfloat_gen.
    // http://www.jhauser.us/arithmetic/TestFloat.html.
    // The default rounding mode is selected (nearest/even), and exception flags are ignored.
    var fmaC = []struct{ x, y, z, want float64 }{
    	// Large exponent spread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/testflag.go

    Alexander Yastrebov <******@****.***> 1708144524 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/internal/genflags/testflag.go

    Bryan C. Mills <******@****.***> 1675889343 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 09 13:37:58 UTC 2023
    - 759 bytes
    - Viewed (0)
Back to top