Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for 1e0i (0.1 sec)

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

    		{ImagLit, "0.i", "0.i", ""},
    		{ImagLit, ".123i", ".123i", ""},
    		{ImagLit, "123.123i", "123.123i", ""},
    		{ImagLit, "123e+0i", "123e+0i", ""},
    		{ImagLit, "123.E-10i", "123.E-10i", ""},
    		{ImagLit, ".123E+10i", ".123E+10i", ""},
    
    		// hexadecimals
    		{IntLit, "0x0", "0x0", ""},
    		{IntLit, "0x1234", "0x1234", ""},
    		{IntLit, "0xcafef00d", "0xcafef00d", ""},
    		{IntLit, "0XCAFEF00D", "0XCAFEF00D", ""},
    
    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, "0.i", "0.i", ""},
    		{token.IMAG, ".123i", ".123i", ""},
    		{token.IMAG, "123.123i", "123.123i", ""},
    		{token.IMAG, "123e+0i", "123e+0i", ""},
    		{token.IMAG, "123.E-10i", "123.E-10i", ""},
    		{token.IMAG, ".123E+10i", ".123E+10i", ""},
    
    		// hexadecimals
    		{token.INT, "0x0", "0x0", ""},
    		{token.INT, "0x1234", "0x1234", ""},
    		{token.INT, "0xcafef00d", "0xcafef00d", ""},
    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. pkg/ctrlz/assets/static/css/fonts.css

      font-weight: 100;
      src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(https://fonts.gstatic.com/s/roboto/v19/KFOiCnqEu92Fr1Mu51QrEz4dL-vwnYh2eg.woff2) format('woff2');
      unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    /* latin */
    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 100;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprog/panicprint.go

    type MyUint16 uint16
    type MyUint32 uint32
    type MyUint64 uint64
    type MyUintptr uintptr
    
    func panicCustomComplex64() {
    	panic(MyComplex64(0.11 + 3i))
    }
    
    func panicCustomComplex128() {
    	panic(MyComplex128(32.1 + 10i))
    }
    
    func panicCustomString() {
    	panic(MyString("Panic\nline two"))
    }
    
    func panicCustomBool() {
    	panic(MyBool(true))
    }
    
    func panicCustomInt() {
    	panic(MyInt(93))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/math/big/ratconv_test.go

    	{in: "4/3."},
    	{in: "4/"},
    	{in: "13e-9223372036854775808"}, // CVE-2022-23772
    
    	// valid
    	{"0", "0", true},
    	{"-0", "0", true},
    	{"1", "1", true},
    	{"-1", "-1", true},
    	{"1.", "1", true},
    	{"1e0", "1", true},
    	{"1.e1", "10", true},
    	{"-0.1", "-1/10", true},
    	{"-.1", "-1/10", true},
    	{"2/4", "1/2", true},
    	{".25", "1/4", true},
    	{"-1/5", "-1/5", true},
    	{"8129567.7690E14", "812956776900000000000", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  6. src/fmt/scan_test.go

    	{"2345678\n", &bytesVal, []byte("2345678")},
    	{"(3.4e1-2i)\n", &complex128Val, 3.4e1 - 2i},
    	{"-3.45e1-3i\n", &complex64Val, complex64(-3.45e1 - 3i)},
    	{"-.45e1-1e2i\n", &complex128Val, complex128(-.45e1 - 100i)},
    	{"-.4_5e1-1E2i\n", &complex128Val, complex128(-.45e1 - 100i)},
    	{"0x1.0p1+0x1.0P2i\n", &complex128Val, complex128(2 + 4i)},
    	{"-0x1p1-0x1p2i\n", &complex128Val, complex128(-2 - 4i)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    //
    // A common pattern for scripts in the Unicode standard is for upper and lower
    // case runes to alternate for increasing rune values (e.g. the accented Latin
    // ranges starting from U+0100 and U+1E00 among others and some Cyrillic
    // characters). We use this property by defining a cXORCase mode, where the case
    // mode (always upper or lower case) is derived from the rune value. As the XOR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	0x2b800000, 0x2b8000b0, 0x2bf00000, 0x2bf0009c,
    	0x2bf0009d, 0x2c000000, 0x2c0000b7, 0x2c200000,
    	0x2c20004b, 0x2c400000, 0x2c4000a5, 0x2c500000,
    	0x2c5000a5, 0x2c700000, 0x2c7000b9, 0x2d100000,
    	// Entry 1E0 - 1FF
    	0x2d1000a5, 0x2d100130, 0x2e900000, 0x2e9000a5,
    	0x2ed00000, 0x2ed000cd, 0x2f100000, 0x2f1000c0,
    	0x2f200000, 0x2f2000d2, 0x2f400000, 0x2f400052,
    	0x2ff00000, 0x2ff000c3, 0x30400000, 0x3040009a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  9. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1E04          ; mapped                 ; 1E05          # 1.1  LATIN CAPITAL LETTER B WITH DOT BELOW
    1E05          ; valid                                  # 1.1  LATIN SMALL LETTER B WITH DOT BELOW
    1E06          ; mapped                 ; 1E07          # 1.1  LATIN CAPITAL LETTER B WITH LINE BELOW
    1E07          ; valid                                  # 1.1  LATIN SMALL LETTER B WITH LINE BELOW
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    	"1Ki", "1Mi", "1Gi", "1Ti", "1Pi", "1Ei")
    var validContainerResourceDivisorForHugePages = sets.New(
    	"1",
    	"1k", "1M", "1G", "1T", "1P", "1E",
    	"1Ki", "1Mi", "1Gi", "1Ti", "1Pi", "1Ei")
    var validContainerResourceDivisorForEphemeralStorage = sets.New(
    	"1",
    	"1k", "1M", "1G", "1T", "1P", "1E",
    	"1Ki", "1Mi", "1Gi", "1Ti", "1Pi", "1Ei")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
Back to top