Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 39999999999999999 (0.17 sec)

  1. src/go/version/version_test.go

    	{"go1.19.0", "go1.19.1", -1},
    	{"go1.19rc1", "go1.19.0", -1},
    	{"go1.19alpha3", "go1.19beta2", -1},
    	{"go1.19beta2", "go1.19rc1", -1},
    	{"go1.1", "go1.99999999999999998", -1},
    	{"go1.99999999999999998", "go1.99999999999999999", -1},
    }
    
    func TestLang(t *testing.T) { test1(t, langTests, "Lang", Lang) }
    
    var langTests = []testCase1[string, string]{
    	{"bad", ""},
    	{"go1.2rc3", "go1.2"},
    	{"go1.2.3", "go1.2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:56:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/internal/gover/gover_test.go

    	{"1.24", Version{"1", "24", "", "", ""}},
    	{"1.24rc3", Version{"1", "24", "", "rc", "3"}},
    	{"1.24.0", Version{"1", "24", "0", "", ""}},
    	{"1.999testmod", Version{"1", "999", "", "testmod", ""}},
    	{"1.99999999999999999", Version{"1", "99999999999999999", "", "", ""}},
    }
    
    func TestLang(t *testing.T) { test1(t, langTests, "Lang", Lang) }
    
    var langTests = []testCase1[string, string]{
    	{"1.2rc3", "1.2"},
    	{"1.2.3", "1.2"},
    	{"1.2", "1.2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. test/fixedbugs/issue56220.go

    }
    
    func g() int64 {
    	return int64((float64(0.03) - float64(0.02)) * 1_000_000) // ERROR "cannot convert \(float64\(0\.03\) - float64\(0\.02\)\) \* 1_000_000 \(constant 9999\.999999999998 of type float64\) to type int64"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 20 21:52:09 UTC 2022
    - 539 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/groovyPluginTasks.graphml

            </y:ShapeNode>
          </data>
        </node>
        <node id="n2">
          <data key="d6">
            <y:ShapeNode>
              <y:Geometry height="30.0" width="140.0" x="720.0" y="49.99999999999999"/>
              <y:Fill color="#C3D9E6" transparent="false"/>
              <y:BorderStyle color="#000000" type="line" width="1.0"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/scalaPluginTasks.graphml

            </y:ShapeNode>
          </data>
        </node>
        <node id="n2">
          <data key="d6">
            <y:ShapeNode>
              <y:Geometry height="30.0" width="140.0" x="720.0" y="49.99999999999999"/>
              <y:Fill color="#C3D9E6" transparent="false"/>
              <y:BorderStyle color="#000000" type="line" width="1.0"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/IntsTest.java

        assertThat(Ints.tryParse("")).isNull();
        assertThat(Ints.tryParse("-")).isNull();
        assertThat(Ints.tryParse("+1")).isNull();
        assertThat(Ints.tryParse("9999999999999999")).isNull();
        assertWithMessage("Max integer + 1")
            .that(Ints.tryParse(Long.toString(((long) GREATEST) + 1)))
            .isNull();
        assertWithMessage("Max integer * 10")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/IntsTest.java

        assertThat(Ints.tryParse("")).isNull();
        assertThat(Ints.tryParse("-")).isNull();
        assertThat(Ints.tryParse("+1")).isNull();
        assertThat(Ints.tryParse("9999999999999999")).isNull();
        assertWithMessage("Max integer + 1")
            .that(Ints.tryParse(Long.toString(((long) GREATEST) + 1)))
            .isNull();
        assertWithMessage("Max integer * 10")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  8. src/time/format_test.go

    	{"2021-09-29T16:04:33.00123456789Z", 1_234_567},
    	// 12 digits, truncates
    	{"2021-09-29T16:04:33.000123456789Z", 123_456},
    	// 15 digits, truncates
    	{"2021-09-29T16:04:33.9999999999999999Z", 999_999_999},
    }
    
    // Issue 48685 and 54567.
    func TestParseFractionalSecondsLongerThanNineDigits(t *testing.T) {
    	for _, tt := range longFractionalDigitsTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    		}
    	}
    }
    
    func TestZeroSet(t *testing.T) {
    	type T [16]byte
    	type S struct {
    		a uint64
    		T T
    		b uint64
    	}
    	v := S{
    		a: 0xaaaaaaaaaaaaaaaa,
    		T: T{9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9},
    		b: 0xbbbbbbbbbbbbbbbb,
    	}
    	ValueOf(&v).Elem().Field(1).Set(Zero(TypeOf(T{})))
    	if v != (S{
    		a: 0xaaaaaaaaaaaaaaaa,
    		b: 0xbbbbbbbbbbbbbbbb,
    	}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. src/encoding/json/testdata/code.json.gz

    l_test.go","kids":[],"cl_weight":0.1,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444},{"name":"transport.go","kids":[],"cl_weight":0.1,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444}],"cl_weight":0.9999999999999999,"touches":1,"min_t":1316289444,"max_t":1316289444,"mean_t":1316289444},{"name":"draw","kids":[{"name":"Makefile","kids":[],"cl_weight":1,"touches":1,"min_t":1258062920,"max_t":1258062920,"mean_t":1258062920}],"cl_weight":1,"touches":1,"min_...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top