Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 284 for _123 (0.05 sec)

  1. src/strconv/atof_test.go

    	// Underscores.
    	{"1_23.50_0_0e+1_2", "1.235e+14", nil},
    	{"-_123.5e+12", "0", ErrSyntax},
    	{"+_123.5e+12", "0", ErrSyntax},
    	{"_123.5e+12", "0", ErrSyntax},
    	{"1__23.5e+12", "0", ErrSyntax},
    	{"123_.5e+12", "0", ErrSyntax},
    	{"123._5e+12", "0", ErrSyntax},
    	{"123.5_e+12", "0", ErrSyntax},
    	{"123.5__0e+12", "0", ErrSyntax},
    	{"123.5e_+12", "0", ErrSyntax},
    	{"123.5e+_12", "0", ErrSyntax},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  2. src/math/big/floatconv_test.go

    		{"-", nan},
    		{"0x", nan},
    		{"0e", nan},
    		{"1.2ef", nan},
    		{"2..3", nan},
    		{"123..", nan},
    		{"infinity", nan},
    		{"foobar", nan},
    
    		// invalid underscores
    		{"_", nan},
    		{"0_", nan},
    		{"1__0", nan},
    		{"123_.", nan},
    		{"123._", nan},
    		{"123._4", nan},
    		{"1_2.3_4_", nan},
    		{"_.123", nan},
    		{"_123.456", nan},
    		{"10._0", nan},
    		{"10.0e_0", nan},
    		{"10.0e0_", nan},
    		{"0P-0__0", nan},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/go/constant/value_test.go

    var floatTests = []string{
    	// decimal floats
    	`1_2_3. = 123.`,
    	`0_123. = 123.`,
    
    	`0_0e0 = 0.`,
    	`1_2_3e0 = 123.`,
    	`0_123e0 = 123.`,
    
    	`0e-0_0 = 0.`,
    	`1_2_3E+0 = 123.`,
    	`0123E1_2_3 = 123e123`,
    
    	`0.e+1 = 0.`,
    	`123.E-1_0 = 123e-10`,
    	`01_23.e123 = 123e123`,
    
    	`.0e-1 = .0`,
    	`.123E+10 = .123e10`,
    	`.0123E123 = .0123e123`,
    
    	`1_2_3.123 = 123.123`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/snippets/buildCache/http-build-cache/groovy/settings.gradle

    rootProject.name = 'http-build-cache'
    
    // tag::http-build-cache[]
    buildCache {
        remote(HttpBuildCache) {
            url = 'https://example.com:8123/cache/'
        }
    }
    // end::http-build-cache[]
    
    // tag::allow-untrusted-server[]
    buildCache {
        remote(HttpBuildCache) {
            url = 'https://example.com:8123/cache/'
            allowUntrustedServer = true
        }
    }
    // end::allow-untrusted-server[]
    
    // tag::use-expect-continue[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 584 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/http-build-cache/kotlin/settings.gradle.kts

    rootProject.name = "http-build-cache"
    // tag::http-build-cache[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
        }
    }
    // end::http-build-cache[]
    
    // tag::allow-untrusted-server[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            isAllowUntrustedServer = true
        }
    }
    // end::allow-untrusted-server[]
    
    // tag::use-expect-continue[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 602 bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/Collections2Test.java

        assertTrue(permutationSet.contains(newArrayList(1, 2, 3)));
        assertTrue(permutationSet.contains(newArrayList(2, 3, 1)));
        assertFalse(permutationSet.contains(newArrayList(1, 2)));
        assertFalse(permutationSet.contains(newArrayList(1, 1, 2, 3)));
        assertFalse(permutationSet.contains(newArrayList(1, 2, 3, 4)));
        assertFalse(permutationSet.contains(null));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top