Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 14159265i (0.1 sec)

  1. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Literal, "0i", 0, 0},
    	{_Literal, "1i", 0, 0},
    	{_Literal, "012345678901234567889i", 0, 0},
    	{_Literal, "123456789012345678890i", 0, 0},
    	{_Literal, "0.i", 0, 0},
    	{_Literal, ".0i", 0, 0},
    	{_Literal, "3.14159265i", 0, 0},
    	{_Literal, "1e0i", 0, 0},
    	{_Literal, "1e+100i", 0, 0},
    	{_Literal, "1e-100i", 0, 0},
    	{_Literal, "2.71828e-1000i", 0, 0},
    	{_Literal, "'a'", 0, 0},
    	{_Literal, "'\\000'", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  2. src/go/scanner/scanner_test.go

    	{token.IMAG, "012345678901234567889i", literal},
    	{token.IMAG, "123456789012345678890i", literal},
    	{token.IMAG, "0.i", literal},
    	{token.IMAG, ".0i", literal},
    	{token.IMAG, "3.14159265i", literal},
    	{token.IMAG, "1e0i", literal},
    	{token.IMAG, "1e+100i", literal},
    	{token.IMAG, "1e-100i", literal},
    	{token.IMAG, "2.71828e-1000i", literal},
    	{token.CHAR, "'a'", literal},
    	{token.CHAR, "'\\000'", literal},
    	{token.CHAR, "'\\xFF'", literal},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  3. src/math/big/ratmarsh_test.go

    	enc := gob.NewEncoder(&medium)
    	dec := gob.NewDecoder(&medium)
    	for _, test := range encodingTests {
    		medium.Reset() // empty buffer for each test case (in case of failures)
    		var tx Rat
    		tx.SetString(test + ".14159265")
    		if err := enc.Encode(&tx); err != nil {
    			t.Errorf("encoding of %s failed: %s", &tx, err)
    			continue
    		}
    		var rx Rat
    		if err := dec.Decode(&rx); err != nil {
    			t.Errorf("decoding of %s failed: %s", &tx, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 20:20:16 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. src/html/template/js_test.go

    			t.Errorf("isJSType(%q) = %v, want %v", test.in, !test.out, test.out)
    		}
    	}
    }
    
    func BenchmarkJSValEscaperWithNum(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		jsValEscaper(3.141592654)
    	}
    }
    
    func BenchmarkJSValEscaperWithStr(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal_test.go

    	{Value: &Event{Year: -3114}, ExpectXML: `<event>-3114</event>`},
    	{Value: &Movie{Length: 13440}, ExpectXML: `<movie>13440</movie>`},
    	{Value: &Pi{Approximation: 3.14159265}, ExpectXML: `<pi>3.1415927</pi>`},
    	{Value: &Universe{Visible: 9.3e13}, ExpectXML: `<universe>9.3e+13</universe>`},
    	{Value: &Particle{HasMass: true}, ExpectXML: `<particle>true</particle>`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top