Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 133 for 32769 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/testdata/script/mod_goroot_errors.txt

    env GO111MODULE=on
    
    # Regression test for https://golang.org/issue/34769.
    # Missing standard-library imports should refer to GOROOT rather than
    # complaining about a malformed module path.
    # This is especially important when GOROOT is set incorrectly,
    # since such an error will occur for every package in std.
    
    # Building a nonexistent std package directly should fail usefully.
    
    ! go build -mod=readonly nonexist
    ! stderr 'import lookup disabled'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/util/LongCommandLineDetectionUtil.java

    import java.util.List;
    
    public class LongCommandLineDetectionUtil {
        // See http://msdn.microsoft.com/en-us/library/windows/desktop/ms682425(v=vs.85).aspx
        public static final int MAX_COMMAND_LINE_LENGTH_WINDOWS = 32766;
        // Derived from default when running getconf ARG_MAX in OSX
        public static final int MAX_COMMAND_LINE_LENGTH_OSX = 262144;
        // Dervied from MAX_ARG_STRLEN as per http://man7.org/linux/man-pages/man2/execve.2.html
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 03 12:35:59 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. api/go1.15.txt

    pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NX_COMPAT = 256
    pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_NX_COMPAT ideal-int
    pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE = 32768
    pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE ideal-int
    pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER = 8192
    pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_WDM_DRIVER ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 17 02:15:01 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDesc.java

            command = SMB_COM_NT_TRANSACT;
            function = NT_TRANSACT_QUERY_SECURITY_DESC;
            setupCount = 0;
            totalDataCount = 0;
            maxParameterCount = 4;
            maxDataCount = 32768;
            maxSetupCount = (byte)0x00;
        }
    
        int writeSetupWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int writeParametersWireFormat( byte[] dst, int dstIndex ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/image/color/ycbcr.go

    	// The code below to compute cr uses a similar pattern.
    	//
    	// Note that -11056 - 21712 + 32768 equals 0.
    	cb := -11056*r1 - 21712*g1 + 32768*b1 + 257<<15
    	if uint32(cb)&0xff000000 == 0 {
    		cb >>= 16
    	} else {
    		cb = ^(cb >> 31)
    	}
    
    	// Note that 32768 - 27440 - 5328 equals 0.
    	cr := 32768*r1 - 27440*g1 - 5328*b1 + 257<<15
    	if uint32(cr)&0xff000000 == 0 {
    		cr >>= 16
    	} else {
    		cr = ^(cr >> 31)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top