Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for 32769 (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/runtime/sizeclasses.go

    //        32     5           256
    //        64     6           512
    //       128     7           768
    //      4096    12         28672
    //      8192    13         32768
    
    const (
    	minHeapAlign    = 8
    	_MaxSmallSize   = 32768
    	smallSizeDiv    = 8
    	smallSizeMax    = 1024
    	largeSizeDiv    = 128
    	_NumSizeClasses = 68
    	_PageShift      = 13
    	maxObjsPerSpan  = 1024
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/utils/math_utils_test.cc

      EXPECT_EQ(quantized_fraction, 0);
      EXPECT_EQ(shift, 0);
    
      EXPECT_TRUE(succeeded(QuantizeMultiplier(40000, quantized_fraction, shift)));
      EXPECT_EQ(quantized_fraction, 32767);
      EXPECT_EQ(shift, 14);
    }
    
    TEST(UtilsTest, QuantizeMultiplierInvalidArgument) {
      int32_t quantized_fraction;
      int32_t shift;
    
      EXPECT_FALSE(succeeded(QuantizeMultiplier(0, quantized_fraction, shift)));
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 05:58:41 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. utils/utils_test.go

    	tests := []struct {
    		name string
    		in   interface{}
    		out  string
    	}{
    		{"int", math.MaxInt64, "9223372036854775807"},
    		{"int8", int8(math.MaxInt8), "127"},
    		{"int16", int16(math.MaxInt16), "32767"},
    		{"int32", int32(math.MaxInt32), "2147483647"},
    		{"int64", int64(math.MaxInt64), "9223372036854775807"},
    		{"uint", uint(math.MaxUint64), "18446744073709551615"},
    		{"uint8", uint8(math.MaxUint8), "255"},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Feb 19 03:42:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. pkg/proxy/apis/config/v1alpha1/defaults_test.go

    	logsapi "k8s.io/component-base/logs/api/v1"
    	kubeproxyconfigv1alpha1 "k8s.io/kube-proxy/config/v1alpha1"
    )
    
    func TestDefaultsKubeProxyConfiguration(t *testing.T) {
    	oomScore := int32(-999)
    	ctMaxPerCore := int32(32768)
    	ctMin := int32(131072)
    	testCases := []struct {
    		name     string
    		original *kubeproxyconfigv1alpha1.KubeProxyConfiguration
    		expected *kubeproxyconfigv1alpha1.KubeProxyConfiguration
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top