Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for T65536 (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/metrics/collectors/volume_stats_test.go

    							CapacityBytes:  newUint64Pointer(1.0434699264e+10),
    							UsedBytes:      newUint64Pointer(4.21789696e+09),
    							InodesFree:     newUint64Pointer(655344),
    							Inodes:         newUint64Pointer(655360),
    							InodesUsed:     newUint64Pointer(16),
    						},
    						Name:   "test",
    						PVCRef: nil,
    					},
    					{
    						FsStats: statsapi.FsStats{
    							Time:           metav1.Now(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/image/color/ycbcr.go

    	//	R = (65536*Y' +  91881 *(Cr-128)                  + adjustment) >> 16
    	//	G = (65536*Y' -  22554 *(Cb-128) - 46802*(Cr-128) + adjustment) >> 16
    	//	B = (65536*Y' + 116130 *(Cb-128)                  + adjustment) >> 16
    	// A constant rounding adjustment of 1<<15, one half of 1<<16, would mean
    	// round-to-nearest when dividing by 65536 (shifting right by 16).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue63563.go

    	_ = int16(1 /* ERROR "constant 65535 overflows int16" */ <<16 - 1)
    	_ = int32(1 /* ERROR "constant 4294967295 overflows int32" */ <<32 - 1)
    	_ = int64(1 /* ERROR "constant 18446744073709551615 overflows int64" */ <<64 - 1)
    
    	_ = uint8(1 /* ERROR "constant 256 overflows uint8" */ << 8)
    	_ = uint16(1 /* ERROR "constant 65536 overflows uint16" */ << 16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/hash/adler32/adler32.go

    //	are done modulo 65521. s1 is initialized to 1, s2 to zero.  The
    //	Adler-32 checksum is stored as s2*65536 + s1 in most-
    //	significant-byte first (network) order.
    package adler32
    
    import (
    	"errors"
    	"hash"
    	"internal/byteorder"
    )
    
    const (
    	// mod is the largest prime that is less than 65536.
    	mod = 65521
    	// nmax is the largest n such that
    	// 255 * n * (n+1) / 2 + (n+1) * (mod-1) <= 2^32-1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/ipset/ipset_test.go

    	output := `Name: foobar
    Type: hash:ip,port
    Revision: 2
    Header: family inet hashsize 1024 maxelem 65536
    Size in memory: 16592
    References: 0
    Members:
    192.168.1.2,tcp:8080
    192.168.1.1,udp:53`
    
    	emptyOutput := `Name: KUBE-NODE-PORT
    Type: bitmap:port
    Revision: 1
    Header: range 0-65535
    Size in memory: 524432
    References: 1
    Members:
    
    `
    
    	testCases := []struct {
    		output   string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
Back to top