Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for msgmax (0.23 sec)

  1. pkg/kubelet/sysctl/util_test.go

    	sysctls := []v1.Sysctl{
    		{
    			Name:  "kernel.msgmax",
    			Value: "8192",
    		},
    		{
    			Name:  "kernel.shm_rmid_forced",
    			Value: "1",
    		},
    		{
    			Name:  "net.ipv4.conf.eno2/100.rp_filter",
    			Value: "1",
    		},
    		{
    			Name:  "net/ipv4/ip_local_port_range",
    			Value: "1024 65535",
    		},
    	}
    	exceptSysctls := []v1.Sysctl{
    		{
    			Name:  "kernel.msgmax",
    			Value: "8192",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:28 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. pkg/kubelet/sysctl/allowlist_test.go

    		{sysctl: "kernel.msgmax"},
    		{sysctl: "kernel.sem"},
    		{sysctl: "kernel/sem"},
    	}
    	invalid := []Test{
    		{sysctl: "kernel.shm_rmid_forced", hostIPC: true},
    		{sysctl: "net.ipv4.ip_local_port_range", hostNet: true},
    		{sysctl: "foo"},
    		{sysctl: "net.a.b.c", hostNet: false},
    		{sysctl: "net.ipv4.ip_local_port_range.a.b.c", hostNet: false},
    		{sysctl: "kernel.msgmax", hostIPC: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/runtime/minmax.go

    Matthew Dempsky <******@****.***> 1684455363 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 18:15:22 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/mmu.go

    			maxEvent = mu1[len(mu1)-1].Time
    		}
    	}
    	if maxMax := time.Duration(maxEvent - minEvent); xMax > maxMax {
    		xMax = maxMax
    	}
    	// Compute MMU curve.
    	logMin, logMax := math.Log(float64(xMin)), math.Log(float64(xMax))
    	const samples = 100
    	plot := make([][]float64, samples)
    	for i := 0; i < samples; i++ {
    		window := time.Duration(math.Exp(float64(i)/(samples-1)*(logMax-logMin) + logMin))
    		if quantiles == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. src/math/rand/v2/rand_test.go

    		testNormalDistribution(t, numTestSamples, 0, 1, seed)
    	}
    }
    
    func TestNonStandardNormalValues(t *testing.T) {
    	sdmax := 1000.0
    	mmax := 1000.0
    	if testing.Short() {
    		sdmax = 5
    		mmax = 5
    	}
    	for sd := 0.5; sd < sdmax; sd *= 2 {
    		for m := 0.5; m < mmax; m *= 2 {
    			for _, seed := range testSeeds {
    				testNormalDistribution(t, numTestSamples, m, sd, seed)
    				if testing.Short() {
    					break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. cmd/utils_test.go

    func TestMaxObjectSize(t *testing.T) {
    	sizes := []struct {
    		isMax bool
    		size  int64
    	}{
    		// Test - 1 - maximum object size.
    		{
    			true,
    			globalMaxObjectSize + 1,
    		},
    		// Test - 2 - not maximum object size.
    		{
    			false,
    			globalMaxObjectSize - 1,
    		},
    	}
    	for i, s := range sizes {
    		isMax := isMaxObjectSize(s.size)
    		if isMax != s.isMax {
    			t.Errorf("Test %d: Expected %t, got %t", i+1, s.isMax, isMax)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 23 21:28:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/math/rand/rand_test.go

    		testNormalDistribution(t, numTestSamples, 0, 1, seed)
    	}
    }
    
    func TestNonStandardNormalValues(t *testing.T) {
    	sdmax := 1000.0
    	mmax := 1000.0
    	if testing.Short() {
    		sdmax = 5
    		mmax = 5
    	}
    	for sd := 0.5; sd < sdmax; sd *= 2 {
    		for m := 0.5; m < mmax; m *= 2 {
    			for _, seed := range testSeeds {
    				testNormalDistribution(t, numTestSamples, m, sd, seed)
    				if testing.Short() {
    					break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. src/math/rand/rng.go

    package rand
    
    /*
     * Uniform distribution
     *
     * algorithm by
     * DP Mitchell and JA Reeds
     */
    
    const (
    	rngLen   = 607
    	rngTap   = 273
    	rngMax   = 1 << 63
    	rngMask  = rngMax - 1
    	int32max = (1 << 31) - 1
    )
    
    var (
    	// rngCooked used for seeding. See gen_cooked.go for details.
    	rngCooked [rngLen]int64 = [...]int64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 14:20:53 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

      MinMax calibration calculates the global min and global max values.
    
      global min = min of given sample inputs
      global max = max of given sample inputs
      """
    
      def get_min_max_value(self) -> tuple[float, float]:
        """Calculates the global min and max values.
    
        Returns:
          (min_value, max_value): Min and max calculated using MinMax
        """
        return (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/quantization_info.proto

    message QuantizationInfo {
      // min/max of the per axis value range. To quantize the value, the metadata
      // of the target properties should be specified or read from the ops
      // quantization specification.
      message MinMax {
        float min = 1;
        float max = 2;
      }
    
      // Affine parameters to quantize the per axis value. The metadata of the
      // target properties should be specified as well.
      message AffineParams {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 08 03:45:04 UTC 2019
    - 2.3K bytes
    - Viewed (0)
Back to top