Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 94 for max8 (0.06 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    		return err
    	}
    
    	return retErr
    }
    
    // stabilizeRecommendation:
    // - replaces old recommendation with the newest recommendation,
    // - returns max of recommendations that are not older than downscaleStabilisationWindow.
    func (a *HorizontalController) stabilizeRecommendation(key string, prenormalizedDesiredReplicas int32) int32 {
    	maxRecommendation := prenormalizedDesiredReplicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	}
    
    	return net.JoinHostPort(globalMinioHost, globalMinioPort)
    }
    
    // fetches a random number between range min-max.
    func getRandomRange(min, max int, seed int64) int {
    	// special value -1 means no explicit seeding.
    	if seed != -1 {
    		rand.Seed(seed)
    	}
    	return rand.Intn(max-min) + min
    }
    
    // Randomizes the order of bytes in the byte array
    // using Knuth Fisher-Yates shuffle algorithm.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsTest.java

        // objectKeyed = transformEntries(map6, transformer);
        // objectKeyed = transformEntries(map8, transformer);
        // objectKeyed = transformEntries(map9, transformer);
        // numberKeyed = transformEntries(map8, transformer);
        // numberKeyed = transformEntries(map9, transformer);
    
        // Can't loosen the value type:
        // Map<Number, Number> looseValued1 = transformEntries(map5, transformer);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  4. tests/test_application.py

    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/math_grad.cc

      }
    
      Output x = op.input(0);
      Output min = op.input(1);
      Output max = op.input(2);
    
      Output s_x = Shape(scope, x);
      Output s_min = Shape(scope, min);
      Output s_max = Shape(scope, max);
    
      Output min_mask = Less(scope, x, min);
      Output max_mask = Greater(scope, x, max);
    
      auto r_min = internal::BroadcastGradientArgs(scope, s_x, s_min);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    	}
    }
    
    func BenchmarkThroughput(b *testing.B) {
    	for _, mode := range []string{"Max", "Dynamic"} {
    		for size := 1; size <= 64; size <<= 1 {
    			name := fmt.Sprintf("%sPacket/%dMB", mode, size)
    			b.Run(name, func(b *testing.B) {
    				b.Run("TLSv12", func(b *testing.B) {
    					throughput(b, VersionTLS12, int64(size<<20), mode == "Max")
    				})
    				b.Run("TLSv13", func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    		in:       `{"-9223372036854775808":"min","9223372036854775807":"max"}`,
    		ptr:      new(map[int64]string),
    		out:      map[int64]string{math.MinInt64: "min", math.MaxInt64: "max"},
    	},
    	{
    		CaseName: Name(""),
    		in:       `{"18446744073709551615":"max"}`,
    		ptr:      new(map[uint64]string),
    		out:      map[uint64]string{math.MaxUint64: "max"},
    	},
    	{
    		CaseName: Name(""),
    		in:       `{"0":false,"10":true}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    	Osntoc      int16    // Section Number For Toc
    	Osnloader   int16    // Section Number For Loader
    	Osnbss      int16    // Section Number For Bss
    	Oalgntext   int16    // Max Text Alignment
    	Oalgndata   int16    // Max Data Alignment
    	Omodtype    [2]byte  // Module Type Field
    	Ocpuflag    uint8    // Bit Flags - Cputypes Of Objects
    	Ocputype    uint8    // Reserved for CPU type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/math/all_test.go

    	}
    }
    
    func TestMax(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		if f := Max(vf[i], ceil[i]); ceil[i] != f {
    			t.Errorf("Max(%g, %g) = %g, want %g", vf[i], ceil[i], f, ceil[i])
    		}
    	}
    	for i := 0; i < len(vffdimSC); i++ {
    		if f := Max(vffdimSC[i][0], vffdimSC[i][1]); !alike(fmaxSC[i], f) {
    			t.Errorf("Max(%g, %g) = %g, want %g", vffdimSC[i][0], vffdimSC[i][1], f, fmaxSC[i])
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/validation/validation_test.go

    		},
    		expectedErrors: field.ErrorList{field.Required(field.NewPath("spec").Child("limited"), "must not be empty when type is Limited")},
    	}, {
    		name: "max-in-flight should work",
    		priorityLevelConfiguration: &flowcontrol.PriorityLevelConfiguration{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "max-in-flight",
    			},
    			Spec: flowcontrol.PriorityLevelConfigurationSpec{
    				Type: flowcontrol.PriorityLevelEnablementLimited,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
Back to top