Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 189 for T65536 (0.39 sec)

  1. test/const3.go

    func (t T) String() string { return fmt.Sprintf("T%d", int(t)) }
    
    const (
    	A T = 1 << (1 << iota)
    	B
    	C
    	D
    	E
    )
    
    func main() {
    	s := fmt.Sprintf("%v %v %v %v %v", A, B, C, D, E)
    	if s != "T2 T4 T16 T256 T65536" {
    		println("type info didn't propagate in const: got", s)
    		panic("fail")
    	}
    	x := uint(5)
    	y := float64(uint64(1)<<x)	// used to fail to compile
    	if y != 32 {
    		println("wrong y", y)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 659 bytes
    - Viewed (0)
  2. releasenotes/notes/46553.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 46553
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 16 14:14:36 UTC 2023
    - 227 bytes
    - Viewed (0)
  3. src/runtime/memmove_linux_amd64_test.go

    	for off := uintptr(0); off < 3<<30; off += 65536 {
    		_, _, errno := syscall.Syscall6(syscall.SYS_MMAP,
    			base+off, 65536, syscall.PROT_READ|syscall.PROT_WRITE, syscall.MAP_SHARED|syscall.MAP_FIXED, tmp.Fd(), 0)
    		if errno != 0 {
    			t.Skipf("could not map a page at requested 0x%x: %s", base+off, errno)
    		}
    		defer syscall.Syscall(syscall.SYS_MUNMAP, base+off, 65536, 0)
    	}
    
    	s := unsafe.Slice((*byte)(unsafe.Pointer(base)), 3<<30)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:48:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. pkg/kubelet/userns/userns_manager_test.go

    			mappingFirstID: 65536 + 1,
    		},
    		{
    			name:           "firstID is less than 65535",
    			mappingFirstID: 1,
    		},
    		{
    			name:           "mappingLen not multiple",
    			mappingFirstID: 65536,
    			mappingLen:     65536 + 1,
    		},
    		{
    			name:           "range can't fit maxPods",
    			mappingFirstID: 65536,
    			mappingLen:     65536,
    			maxPods:        2,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/loong64enc3.s

    	MOVB	y+4097(FP), R4			// 3e000014de8f1000c4270028
    	MOVBU	y+4097(FP), R4			// 3e000014de8f1000c427002a
    	MOVW	65536(R5), R4			// 1e020014de971000c4038028
    	MOVWU	65536(R5), R4			// 1e020014de971000c403802a
    	MOVV	65536(R5), R4			// 1e020014de971000c403c028
    	MOVB	65536(R5), R4			// 1e020014de971000c4030028
    	MOVBU	65536(R5), R4			// 1e020014de971000c403002a
    	MOVW	4096(R5), R4			// 3e000014de971000c4038028
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 23:57:43 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/loong64enc2.s

    	AND	$65536, R4		// 1e02001484f81400
    	AND	$4096, R4		// 3e00001484f81400
    	SGT	$65536, R4, R5		// 1e02001485781200
    	SGT	$4096, R4, R5		// 3e00001485781200
    	SGT	$65536, R4		// 1e02001484781200
    	SGT	$4096, R4		// 3e00001484781200
    	SGTU	$65536, R4, R5		// 1e02001485f81200
    	SGTU	$4096, R4, R5		// 3e00001485f81200
    	SGTU	$65536, R4		// 1e02001484f81200
    	SGTU	$4096, R4		// 3e00001484f81200
    	ADDU	$65536, R4, R5		// 1e02001485781000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 15:50:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/metrics_test.go

            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.16384"} 5
            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="0.65536"} 5
            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="2.62144"} 5
            	apiextensions_apiserver_validation_ratcheting_seconds_bucket{le="Inf"} 5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/net/port.go

    // parse service as a non-decimal integer when needsLookup is true.
    //
    // Some system resolvers will return a valid port number when given a number
    // over 65536 (see https://golang.org/issues/11715). Alas, the parser
    // can't bail early on numbers > 65536. Therefore reasonably large/small
    // numbers are parsed in full and rejected if invalid.
    func parsePort(service string) (port int, needsLookup bool) {
    	if service == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:31:56 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    			cacheSizes: []string{"deployments.apps#65536", "replicasets.extensions#-65536"},
    			expectErr:  "watch cache size cannot be negative",
    		},
    		{
    			name:       "test when parse watch cache size success",
    			cacheSizes: []string{"deployments.apps#65536", "replicasets.extensions#65536"},
    			expectWatchCacheSizes: map[schema.GroupResource]int{
    				{Group: "apps", Resource: "deployments"}:       65536,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/fuzzer/fuzzer.go

    			obj.IPTables.MasqueradeBit = ptr.To(c.Int31())
    			obj.IPTables.LocalhostNodePorts = ptr.To(c.RandBool())
    			obj.NFTables.MasqueradeBit = ptr.To(c.Int31())
    			obj.MetricsBindAddress = fmt.Sprintf("%d.%d.%d.%d:%d", c.Intn(256), c.Intn(256), c.Intn(256), c.Intn(256), c.Intn(65536))
    			obj.OOMScoreAdj = ptr.To(c.Int31())
    			obj.ClientConnection.ContentType = "bar"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top