Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 256 for 65533 (0.06 sec)

  1. src/go/internal/gccgoimporter/testdata/unicode.gox

    var Psalter_Pahlavi <type 1>;
    var Punct <type 1>;
    var Quotation_Mark <type 1>;
    var Radical <type 1>;
    type <type 5>;
    type <type 8>;
    type <type 2>;
    var Rejang <type 1>;
    const ReplacementChar = 65533' ;
    var Runic <type 1>;
    var S <type 1>;
    var STerm <type 1>;
    var Samaritan <type 1>;
    var Saurashtra <type 1>;
    var Sc <type 1>;
    var Scripts <type 28 map [<type -16>] <type 1>>;
    var Sentence_Terminal <type 1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/test/divconst_test.go

    	t.Run("257", testdiv(257, func(n uint64) (uint64, uint64) { return n / 257, n % 257 }))
    	t.Run("65535", testdiv(65535, func(n uint64) (uint64, uint64) { return n / 65535, n % 65535 }))
    	t.Run("65536", testdiv(65536, func(n uint64) (uint64, uint64) { return n / 65536, n % 65536 }))
    	t.Run("65537", testdiv(65537, func(n uint64) (uint64, uint64) { return n / 65537, n % 65537 }))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 00:07:35 UTC 2020
    - 7.7K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    func le_65535_uint64(x uint64) bool                { return x <= 65535 }
    func gt_65535_uint64(x uint64) bool                { return x > 65535 }
    func ge_65535_uint64(x uint64) bool                { return x >= 65535 }
    func eq_65535_uint64(x uint64) bool                { return x == 65535 }
    func ne_65535_uint64(x uint64) bool                { return x != 65535 }
    func lt_65536_uint64(x uint64) bool                { return x < 65536 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/mulconst_test.go

    			x *= -120
    		}
    		mulSinkI32 = x
    	})
    	// 65537x = 65536x + x
    	b.Run("65537", func(b *testing.B) {
    		x := int32(1)
    		for i := 0; i < b.N; i++ {
    			x *= 65537
    		}
    		mulSinkI32 = x
    	})
    	// 65538x = 65536x + 2x
    	b.Run("65538", func(b *testing.B) {
    		x := int32(1)
    		for i := 0; i < b.N; i++ {
    			x *= 65538
    		}
    		mulSinkI32 = x
    	})
    }
    
    func BenchmarkMulconstI64(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 15:39:44 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top