Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 155 for 65533 (0.05 sec)

  1. pkg/registry/core/service/ipallocator/controller/repair_test.go

    		t.Errorf("unexpected ipallocator state: %#v", secondaryAfter)
    	}
    	if free := secondaryAfter.Free(); free != 65533 {
    		t.Errorf("unexpected ipallocator state: %d free (number of free ips is not 65532)", free)
    	}
    	em := testMetrics{
    		leak:       0,
    		repair:     5,
    		outOfRange: 6,
    		duplicate:  3,
    		unknown:    0,
    		invalid:    0,
    		full:       0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %24:3 = "tf.UnicodeDecodeWithOffsets"(%23) {Tsplits = i64, device = "", errors = "replace", input_encoding = "UTF-8", replace_control_characters = false, replacement_char = 65533 : i64} : (tensor<1x!tf_type.string>) -> (tensor<2xi64>, tensor<?xi32>, tensor<?xi64>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	ADD $-1, R4                     // 3884ffff
    	ADD $-1, R4, R5                 // 38a4ffff
    	ADD $65535, R5                  // 601fffff7cbf2a14 or 0600000038a5ffff
    	ADD $65535, R5, R6              // 601fffff7cdf2a14 or 0600000038c5ffff
    	ADD $65536, R6                  // 3cc60001
    	ADD $65536, R6, R7              // 3ce60001
    	ADD $-32767, R5                 // 38a58001
    	ADD $-32767, R5, R4             // 38858001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. docker/iptables.yaml

        - libgcc
    archs:
      - x86_64
      - aarch64
    paths:
    - path: /run
      type: directory
      permissions: 0o755
    accounts:
      users:
        - username: nonroot
          uid: 65532
        - username: nobody
          uid: 65534
      run-as: 65532
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 541 bytes
    - Viewed (0)
  5. 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)
  6. 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,
    		},
    	}
    
    	for _, tc := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/validation/validation_test.go

    			conf.Port = 65536
    			return conf
    		},
    		errMsg: "invalid configuration: port (--port) 65536 must be between 1 and 65535, inclusive",
    	}, {
    		name: "invalid ReadOnlyPort",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.ReadOnlyPort = 65536
    			return conf
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. src/net/net_fake_test.go

    		ln.Close()
    		for _, c := range dialed {
    			c.Close()
    		}
    		<-done
    	}()
    
    	// Since this test is not running in parallel, we expect to be able to open
    	// all 65535 valid (fake) ports. The listener is already using one, so
    	// we should be able to Dial the remaining 65534.
    	for len(dialed) < (1<<16)-2 {
    		c, err := Dial(ln.Addr().Network(), ln.Addr().String())
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/ipset/ipset_test.go

    				HashFamily: ProtocolFamilyIPV6,
    				HashSize:   65535,
    				MaxElem:    2048,
    				PortRange:  DefaultPortRange,
    			},
    			expectErr: false,
    			desc:      "control case",
    		},
    		{ // case[2]
    			ipset: &IPSet{
    				Name:       "foo",
    				SetType:    BitmapPort,
    				HashFamily: ProtocolFamilyIPV6,
    				HashSize:   65535,
    				MaxElem:    2048,
    			},
    			expectErr: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/s390x.s

    	AND	R1, R2, R3            // b9e42031
    	AND	$-2, R1               // a517fffe
    	AND	$-65536, R1           // c01bffff0000
    	AND	$1, R1                // c0a100000001b980001a
    	ANDW	R1, R2                // 1421
    	ANDW	R1, R2, R3            // b9f42031
    	ANDW	$1, R1                // c01b00000001
    	ANDW	$131071, R1           // a5160001
    	ANDW	$65536, R1            // c01b00010000
    	ANDW	$-2, R1               // a517fffe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
Back to top