Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 322 for b123 (0.08 sec)

  1. src/text/scanner/scanner_test.go

    		{Float, "0.e+1", "0.e+1", ""},
    		{Float, "123.E-10", "123.E-10", ""},
    		{Float, "0123.e123", "0123.e123", ""},
    
    		{Float, ".0e-1", ".0e-1", ""},
    		{Float, ".123E+10", ".123E+10", ""},
    		{Float, ".0123E123", ".0123E123", ""},
    
    		{Float, "0.0e1", "0.0e1", ""},
    		{Float, "123.123E-10", "123.123E-10", ""},
    		{Float, "0123.0123e+456", "0123.0123e+456", ""},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  2. src/go/printer/testdata/go2numbers.norm

    	_	= 0123e1_2_3
    
    	_	= 0.e+1
    	_	= 123.e-1_0
    	_	= 01_23.e123
    
    	_	= .0e-1
    	_	= .123e+10
    	_	= .0123e123
    
    	_	= 1_2_3.123
    	_	= 0123.01_23
    
    	// hexadecimal floats
    	_	= 0x0.p+0
    	_	= 0xdeadcafe.p-10
    	_	= 0x1234.p123
    
    	_	= 0x.1p-0
    	_	= 0x.deadcafep2
    	_	= 0x.1234p+10
    
    	_	= 0x0p0
    	_	= 0xdeadcafep+1
    	_	= 0x1234p-10
    
    	_	= 0x0.0p0
    	_	= 0xdead.cafep+1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 17 02:15:01 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/gofmt/testdata/go2numbers.golden

    	_ = 0123e1_2_3
    
    	_ = 0.e+1
    	_ = 123.e-1_0
    	_ = 01_23.e123
    
    	_ = .0e-1
    	_ = .123e+10
    	_ = .0123e123
    
    	_ = 1_2_3.123
    	_ = 0123.01_23
    
    	// hexadecimal floats
    	_ = 0x0.p+0
    	_ = 0xdeadcafe.p-10
    	_ = 0x1234.p123
    
    	_ = 0x.1p-0
    	_ = 0x.deadcafep2
    	_ = 0x.1234p+10
    
    	_ = 0x0p0
    	_ = 0xdeadcafep+1
    	_ = 0x1234p-10
    
    	_ = 0x0.0p0
    	_ = 0xdead.cafep+1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 21 17:24:29 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/literals.go

    	assert(0b_0010_1101 == 0x2d)
    
    	// decimal floats
    	assert(1_2_3. == 123.)
    	assert(0_123. == 123.)
    
    	assert(0_0e0 == 0.)
    	assert(1_2_3e0 == 123.)
    	assert(0_123e0 == 123.)
    
    	assert(0e-0_0 == 0.)
    	assert(1_2_3E+0 == 123.)
    	assert(0123E1_2_3 == 123e123)
    
    	assert(0.e+1 == 0.)
    	assert(123.E-1_0 == 123e-10)
    	assert(01_23.e123 == 123e123)
    
    	assert(.0e-1 == .0)
    	assert(.123E+10 == .123e10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/gofmt/testdata/go2numbers.input

    	_ = 0123E1_2_3
    
    	_ = 0.e+1
    	_ = 123.E-1_0
    	_ = 01_23.e123
    
    	_ = .0e-1
    	_ = .123E+10
    	_ = .0123E123
    
    	_ = 1_2_3.123
    	_ = 0123.01_23
    
    	// hexadecimal floats
    	_ = 0x0.p+0
    	_ = 0Xdeadcafe.p-10
    	_ = 0x1234.P123
    
    	_ = 0x.1p-0
    	_ = 0X.deadcafep2
    	_ = 0x.1234P+10
    
    	_ = 0x0p0
    	_ = 0Xdeadcafep+1
    	_ = 0x1234P-10
    
    	_ = 0x0.0p0
    	_ = 0Xdead.cafep+1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 21 17:24:29 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. src/go/printer/testdata/go2numbers.golden

    	_	= 0123E1_2_3
    
    	_	= 0.e+1
    	_	= 123.E-1_0
    	_	= 01_23.e123
    
    	_	= .0e-1
    	_	= .123E+10
    	_	= .0123E123
    
    	_	= 1_2_3.123
    	_	= 0123.01_23
    
    	// hexadecimal floats
    	_	= 0x0.p+0
    	_	= 0Xdeadcafe.p-10
    	_	= 0x1234.P123
    
    	_	= 0x.1p-0
    	_	= 0X.deadcafep2
    	_	= 0x.1234P+10
    
    	_	= 0x0p0
    	_	= 0Xdeadcafep+1
    	_	= 0x1234P-10
    
    	_	= 0x0.0p0
    	_	= 0Xdead.cafep+1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 21:54:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  7. src/crypto/x509/oid_test.go

    	str   string
    	ints  []uint64
    }{
    	{[]byte{}, false, "", nil},
    	{[]byte{0x80, 0x01}, false, "", nil},
    	{[]byte{0x01, 0x80, 0x01}, false, "", nil},
    
    	{[]byte{1, 2, 3}, true, "0.1.2.3", []uint64{0, 1, 2, 3}},
    	{[]byte{41, 2, 3}, true, "1.1.2.3", []uint64{1, 1, 2, 3}},
    	{[]byte{86, 2, 3}, true, "2.6.2.3", []uint64{2, 6, 2, 3}},
    
    	{[]byte{41, 255, 255, 255, 127}, true, "1.1.268435455", []uint64{1, 1, 268435455}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/go/printer/testdata/go2numbers.input

    	_ = 0123E1_2_3
    
    	_ = 0.e+1
    	_ = 123.E-1_0
    	_ = 01_23.e123
    
    	_ = .0e-1
    	_ = .123E+10
    	_ = .0123E123
    
    	_ = 1_2_3.123
    	_ = 0123.01_23
    
    	// hexadecimal floats
    	_ = 0x0.p+0
    	_ = 0Xdeadcafe.p-10
    	_ = 0x1234.P123
    
    	_ = 0x.1p-0
    	_ = 0X.deadcafep2
    	_ = 0x.1234P+10
    
    	_ = 0x0p0
    	_ = 0Xdeadcafep+1
    	_ = 0x1234P-10
    
    	_ = 0x0.0p0
    	_ = 0Xdead.cafep+1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 21:54:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.23.md

    ## Changelog since v1.23.15
    
    ## Changes by Kind
    
    ### API Change
    
    - Kubernetes 1.23 is now built with go1.19.4. To match behavior of previous Kubernetes 1.23 patch releases:
      - `kube-apiserver` defaults the GOGC setting to 63, to approximate go1.17 garbage collection memory performance in heavily loaded API servers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/EnforcedPlatformIntegrationTest.groovy

                    edge('com.fasterxml.jackson:jackson-bom:{strictly 2.12.3}', 'com.fasterxml.jackson:jackson-bom:2.12.3') {
                        configuration('enforced-platform-runtime')
                        noArtifacts()
                        constraint('com.fasterxml.jackson.core:jackson-core:2.12.3', ':jackson-core', 'com.fasterxml.jackson.core:jackson-core:2.12.3-local-patch')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top