Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for 32769 (0.4 sec)

  1. releasenotes/notes/32749.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 32749
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 17 16:36:41 UTC 2021
    - 169 bytes
    - Viewed (0)
  2. releasenotes/notes/32469.yaml

    Frank Budinsky <******@****.***> 1619558290 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 27 21:18:10 UTC 2021
    - 225 bytes
    - Viewed (0)
  3. 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)
  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. 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)
  8. 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)
  9. 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)
  10. pkg/proxy/apis/config/scheme/testdata/KubeProxyConfiguration/roundtrip/default/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)
Back to top