Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 133 for 32769 (0.05 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	ADD $65536, R6                  // 3cc60001
    	ADD $65536, R6, R7              // 3ce60001
    	ADD $-32767, R5                 // 38a58001
    	ADD $-32767, R5, R4             // 38858001
    	ADD $-32768, R6                 // 38c68000
    	ADD $-32768, R6, R5             // 38a68000
    	// Hex constant 0xFFFFFFFE00000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. test/literal.go

    	assert(i03 == -i04, "i03")
    	assert(-(i05+1) == i06, "i05")
    
    	// int16
    	var i10 int16 = 0
    	var i11 int16 = 1
    	var i12 int16 = -1
    	var i13 int16 = 32767
    	var i14 int16 = -32767
    	var i15 int16 = -32768
    	var i16 int16 = +32767
    	assert(i11 == i10+1, "i11")
    	assert(i12 == -i11, "i12")
    	assert(i13 == -i14, "i13")
    	assert(-(i15+1) == i16, "i15")
    
    	// int32
    	var i20 int32 = 0
    	var i21 int32 = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/fp_test.go

    	expectInt16(t, "-32768", F64toI16_ssa(-32768), -32768)
    	expectInt16(t, "-32768", F32toI16_ssa(-32768), -32768)
    
    	// NB more of a pain to do these for 32-bit because of lost bits in Float32 mantissa
    	expectInt16(t, "32767", F64toI16_ssa(32767), 32767)
    	expectInt16(t, "32767", F32toI16_ssa(32767), 32767)
    	expectUint16(t, "32767", F64toU16_ssa(32767), 32767)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.cc

          qmin = -128;
          qmax = 127;
        } else {
          qmin = 0;
          qmax = 255;
        }
      } else if (numBits <= 16) {
        storageType = IntegerType::get(ctx, 16);
        if (isSigned) {
          qmin = -32768;
          qmax = 32767;
        } else {
          qmin = 0;
          qmax = 65535;
        }
      } else if (numBits <= 32) {
        storageType = IntegerType::get(ctx, 32);
        if (isSigned) {
          qmin = std::numeric_limits<int32_t>::min();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/log/slog/internal/benchmarks/benchmarks.go

    var (
    	testTime     = time.Date(2022, time.May, 1, 0, 0, 0, 0, time.UTC)
    	testString   = "7e3b3b2aaeff56a7108fe11e154200dd/7819479873059528190"
    	testInt      = 32768
    	testDuration = 23 * time.Second
    	testError    = errors.New("fail")
    )
    
    var testAttrs = []slog.Attr{
    	slog.String("string", testString),
    	slog.Int("status", testInt),
    	slog.Duration("duration", testDuration),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 25 12:14:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. cni/pkg/iptables/iptables_linux.go

    	var rules []*netlink.Rule
    	families := []int{unix.AF_INET}
    	if cfg.EnableIPv6 {
    		families = append(families, unix.AF_INET6)
    	}
    	for _, family := range families {
    		// Equiv:
    		// ip rule add fwmark 0x111/0xfff pref 32764 lookup 100
    		//
    		// Adds in-pod rules for marking packets with the istio-specific TPROXY mark.
    		// A very similar mechanism is used for sidecar TPROXY.
    		//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/os/readfrom_linux_test.go

    				testSpliceFile(t, "unix", int64(size), -1)
    			})
    		}
    	})
    	t.Run("TCP-To-TTY", func(t *testing.T) {
    		testSpliceToTTY(t, "tcp", 32768)
    	})
    	t.Run("Unix-To-TTY", func(t *testing.T) {
    		testSpliceToTTY(t, "unix", 32768)
    	})
    	t.Run("Limited", func(t *testing.T) {
    		t.Run("OneLess-TCP", func(t *testing.T) {
    			for _, size := range sizes {
    				t.Run(strconv.Itoa(size), func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/after/v1alpha1.yaml

    bindAddressHardFail: false
    clientConnection:
      acceptContentTypes: ""
      burst: 10
      contentType: application/vnd.kubernetes.protobuf
      kubeconfig: ""
      qps: 5
    clusterCIDR: ""
    configSyncPeriod: 15m0s
    conntrack:
      maxPerCore: 32768
      min: 131072
      tcpBeLiberal: false
      tcpCloseWaitTimeout: 1h0m0s
      tcpEstablishedTimeout: 24h0m0s
      udpStreamTimeout: 0s
      udpTimeout: 0s
    detectLocal:
      bridgeInterface: ""
      interfaceNamePrefix: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 12:50:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. releasenotes/notes/startupProbe.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 32569
    
    releaseNotes:
      - |
        **Added** a `startupProbe` by default for the sidecar. This optimizes startup time and minimizes load throughout the pod lifecycle. See Upgrade Notes for more information.
    
    upgradeNotes:
      - title: StartupProbe added to sidecar by default
        content: |
          The sidecar container now comes with a `startupProbe` enabled by default. 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. test/codegen/constants.go

    package codegen
    
    // A uint16 or sint16 constant shifted left.
    func shifted16BitConstants(out [64]uint64) {
    	// ppc64x: "MOVD\t[$]8193,", "SLD\t[$]27,"
    	out[0] = 0x0000010008000000
    	// ppc64x: "MOVD\t[$]-32767", "SLD\t[$]26,"
    	out[1] = 0xFFFFFE0004000000
    	// ppc64x: "MOVD\t[$]-1", "SLD\t[$]48,"
    	out[2] = 0xFFFF000000000000
    	// ppc64x: "MOVD\t[$]65535", "SLD\t[$]44,"
    	out[3] = 0x0FFFF00000000000
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 14:03:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top