Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 12E (0.13 sec)

  1. src/encoding/json/number_test.go

    		"0",
    		"-0",
    		"1",
    		"-1",
    		"0.1",
    		"-0.1",
    		"1234",
    		"-1234",
    		"12.34",
    		"-12.34",
    		"12E0",
    		"12E1",
    		"12e34",
    		"12E-0",
    		"12e+1",
    		"12e-34",
    		"-12E0",
    		"-12E1",
    		"-12e34",
    		"-12E-0",
    		"-12e+1",
    		"-12e-34",
    		"1.2E0",
    		"1.2E1",
    		"1.2e34",
    		"1.2E-0",
    		"1.2e+1",
    		"1.2e-34",
    		"-1.2E0",
    		"-1.2E1",
    		"-1.2e34",
    		"-1.2E-0",
    		"-1.2e+1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 05:40:28 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. src/strconv/testdata/testfp.txt

    float64 %.8e 7976538478610756p+376 1.22770163e+129
    float64 %.9e 5982403858958067p+377 1.841552452e+129
    float64 %.10e 5536995190630837p+93 5.4835744350e+43
    float64 %.11e 7225450889282194p+710 3.89190181146e+229
    float64 %.12e 7225450889282194p+709 1.945950905732e+229
    float64 %.13e 8703372741147379p+117 1.4460958381605e+51
    float64 %.14e 8944262675275217p-1001 4.17367747458531e-286
    float64 %.15e 7459803696087692p-707 1.107950772878888e-197
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 7.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"0.00000012354", decQuantity(124, -9, DecimalSI)},
    		{"9Ei", Quantity{d: maxAllowed, Format: BinarySI}},
    		{"9223372036854775807Ki", Quantity{d: maxAllowed, Format: BinarySI}},
    		{"12E", decQuantity(12, 18, DecimalSI)},
    
    		// We'll accept fractional binary stuff, too.
    		{"100.035Ki", decQuantity(10243584, -2, BinarySI)},
    		{"0.5Mi", decQuantity(.5*1024*1024, 0, BinarySI)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top