Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for 1e1000000 (0.14 sec)

  1. test/fixedbugs/issue13559.go

    	_ int64 = 1e-1000000 // ERROR "1e\-1000000 truncated|.* truncated to int64|truncated"
    )
    
    const (
    	_ int64 = -1e10000000 // ERROR "integer too large|truncated to int64|truncated"
    	_ int64 = -1e1000000  // ERROR "integer too large|truncated to int64|truncated"
    	_ int64 = -1e100000   // ERROR "integer too large|truncated to int64|truncated"
    	_ int64 = -1e10000    // ERROR "integer too large|truncated to int64|truncated"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  2. src/math/big/floatconv_test.go

    		// make sure "stupid" exponents don't stall the machine
    		{"1e1000000", defaultRound, 64, 'p', 0, "0x.88b3a28a05eade3ap+3321929"},
    		{"1e646456992", defaultRound, 64, 'p', 0, "0x.e883a0c5c8c7c42ap+2147483644"},
    		{"1e646456993", defaultRound, 64, 'p', 0, "+Inf"},
    		{"1e1000000000", defaultRound, 64, 'p', 0, "+Inf"},
    		{"1e-1000000", defaultRound, 64, 'p', 0, "0x.efb4542cc8ca418ap-3321928"},
    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/runtime/utf8.go

    )
    
    // Code points in the surrogate range are not valid for UTF-8.
    const (
    	surrogateMin = 0xD800
    	surrogateMax = 0xDFFF
    )
    
    const (
    	t1 = 0x00 // 0000 0000
    	tx = 0x80 // 1000 0000
    	t2 = 0xC0 // 1100 0000
    	t3 = 0xE0 // 1110 0000
    	t4 = 0xF0 // 1111 0000
    	t5 = 0xF8 // 1111 1000
    
    	maskx = 0x3F // 0011 1111
    	mask2 = 0x1F // 0001 1111
    	mask3 = 0x0F // 0000 1111
    	mask4 = 0x07 // 0000 0111
    
    	rune1Max = 1<<7 - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 06 02:46:02 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue20583.go

    package issue20583
    
    const (
    	_ = 6e886451608 /* ERROR "malformed constant" */ /2
    	_ = 6e886451608i /* ERROR "malformed constant" */ /2
    	_ = 0 * 1e+1000000000 // ERROR "malformed constant"
    
    	x = 1e100000000
    	_ = x*x*x*x*x*x* /* ERROR "not representable" */ x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 420 bytes
    - Viewed (0)
  5. cluster/images/etcd/migrate/versions_test.go

    		{"1.1.1-rc.0/etcd3", &EtcdVersionPair{&EtcdVersion{semver.MustParse("1.1.1-rc.0")}, storageEtcd3}, true},
    		{"10.100.1000/etcd3", &EtcdVersionPair{&EtcdVersion{semver.MustParse("10.100.1000")}, storageEtcd3}, true},
    	}
    
    	for _, c := range cases {
    		vp, err := ParseEtcdVersionPair(c.versionTxt)
    		if err != nil {
    			t.Errorf("Failed to parse '%s': %v", c.versionTxt, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/gateway/invalid-addresses.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: invalid-addresses
    spec:
      gatewayClassName: acme-lb
      addresses:
      - value: 1200:0000:::AB00:1234:0000:2552:7777:1313
      - value: 21DA:D3:0:2F3B:2AY:FF:FE28:9C5A
      - value: "2001:db8:3c4d:15:0:d234:3eee:"
      - value: "2001:db8:3c4d:15:0:d234:3eee:::"
      - value: ":::1234::"
      - value: "1.1.1"
      - value: "1.a.3.4"
      - value: "foo.com"
      - type: IPAddress
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 686 bytes
    - Viewed (0)
  7. src/main/resources/crawler/extractor+tikaExtractor.xml

    	<include path="crawler/container.xml" />
    	<component name="tikaExtractor"
    		class="org.codelibs.fess.crawler.extractor.impl.TikaExtractor">
    		<property name="maxCompressionRatio">2</property>
    		<property name="maxUncompressionSize">10000000</property>
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Aug 25 12:46:12 UTC 2019
    - 461 bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/file/MicroBenchmarkPerformanceTest.groovy

        def "creating #number of files"() {
            expect:
            number.times {
                touch("src/test/dummy${it}.s")
            }
            where:
            number << [10, 100, 1000]
        }
    
        def touch(String filePath) {
            FileUtils.touch(project.file(filePath))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/sigprocmask.c

    		r = pthread_create(&thread, NULL, &sigthreadfunc, NULL);
    		if (r == 0) {
    			return pthread_join(thread, NULL);
    		}
    		if (r != EAGAIN) {
    			return r;
    		}
    		ts.tv_sec = 0;
    		ts.tv_nsec = (tries + 1) * 1000 * 1000; // Milliseconds.
    		nanosleep(&ts, NULL);
    	}
    	return EAGAIN;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. test/fixedbugs/issue29362b.go

    // In the second, only p is live, so that bitmap is 10.
    // Bitmaps are byte aligned, so if the first bitmap is interpreted as
    // extending across the entire argument area, we incorrectly concatenate
    // the bitmaps and end up using 110000001. That bad bitmap causes a6
    // to be considered a pointer.
    func noPointerArgs(p, q *byte, a0, a1, a2, a3, a4, a5, a6 uintptr) {
    	sink = make([]byte, 4096)
    	sinkptr = q
    	<-throttle
    	sinkptr = p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 03 23:37:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
Back to top