Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 133 for 32768 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/registry/core/service/portallocator/operation.go

    		var lastPort int
    		for _, allocatedPort := range op.allocated {
    			if allocatedPort > lastPort {
    				lastPort = allocatedPort
    			}
    		}
    		if len(op.allocated) == 0 {
    			lastPort = 32768
    		}
    
    		// Try to find the next non allocated port.
    		// If too many ports are full, just reuse one,
    		// since this is just a dummy value.
    		for port := lastPort + 1; port < 100; port++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  7. src/log/slog/value_access_benchmark_test.go

    // BenchmarkDispatch/As-8                     	 8212087	       145.3 ns/op
    // BenchmarkDispatch/Visit-8                  	 8926146	       135.3 ns/op
    func BenchmarkDispatch(b *testing.B) {
    	vs := []Value{
    		Int64Value(32768),
    		Uint64Value(0xfacecafe),
    		StringValue("anything"),
    		BoolValue(true),
    		Float64Value(1.2345),
    		DurationValue(time.Second),
    		AnyValue(b),
    	}
    	var (
    		ii int64
    		s  string
    		bb bool
    		u  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/tracing_none_golden.json

              },
              {
                  "name": "admin",
                  "admin_layer": {}
              }
          ]
      },
      "bootstrap_extensions": [
        {
          "name": "envoy.bootstrap.internal_listener",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. 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)
  10. pkg/bootstrap/testdata/tracing_zipkin_golden.json

              },
              {
                  "name": "admin",
                  "admin_layer": {}
              }
          ]
      },
      "bootstrap_extensions": [
        {
          "name": "envoy.bootstrap.internal_listener",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top