Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 14159265i (0.17 sec)

  1. src/go/printer/testdata/declarations.golden

    	_	= .0
    	_	= 3.14159265
    	_	= 1e0
    	_	= 1e+100
    	_	= 1e-100
    	_	= 2.71828e-1000
    	_	= 0i
    	_	= 1i
    	_	= 012345678901234567889i
    	_	= 123456789012345678890i
    	_	= 0.i
    	_	= .0i
    	_	= 3.14159265i
    	_	= 1e0i
    	_	= 1e+100i
    	_	= 1e-100i
    	_	= 2.71828e-1000i
    	_	= 'a'
    	_	= '\000'
    	_	= '\xFF'
    	_	= '\uff16'
    	_	= '\U0000ff16'
    	_	= `foobar`
    	_	= `foo
    ---
    ---
    bar`
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.input

    	_ = .0
    	_ = 3.14159265
    	_ = 1e0
    	_ = 1e+100
    	_ = 1e-100
    	_ = 2.71828e-1000
    	_ = 0i
    	_ = 1i
    	_ = 012345678901234567889i
    	_ = 123456789012345678890i
    	_ = 0.i
    	_ = .0i
    	_ = 3.14159265i
    	_ = 1e0i
    	_ = 1e+100i
    	_ = 1e-100i
    	_ = 2.71828e-1000i
    	_ = 'a'
    	_ = '\000'
    	_ = '\xFF'
    	_ = '\uff16'
    	_ = '\U0000ff16'
    	_ = `foobar`
    	_ = `foo
    ---
    ---
    bar`
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/go/internal/gcimporter/testdata/exports.go

    package exports
    
    import "go/ast"
    
    // Issue 3682: Correctly read dotted identifiers from export data.
    const init1 = 0
    
    func init() {}
    
    const (
    	C0  int     = 0
    	C1          = 3.14159265
    	C2          = 2.718281828i
    	C3          = -123.456e-789
    	C4          = +123.456e+789
    	C5          = 1234i
    	C6          = "foo\n"
    	C7          = `bar\n`
    	C8          = 42
    	C9  int     = 42
    	C10 float64 = 42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. 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