Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Hudgins (0.17 sec)

  1. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    		if !ok {
    			logger.V(5).Info("Node doesn't have required label", "node", klog.KObj(node), "label", tpKey)
    			return framework.NewStatus(framework.UnschedulableAndUnresolvable, ErrReasonNodeLabelNotMatch)
    		}
    
    		// judging criteria:
    		// 'existing matching num' + 'if self-match (1 or 0)' - 'global minimum' <= 'maxSkew'
    		minMatchNum, err := s.minMatchNum(tpKey, c.MinDomains)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (1)
  2. src/math/big/prime.go

    // See Menezes et al., Handbook of Applied Cryptography, 1997, pp. 145-149,
    // and FIPS 186-4 Appendix F for further discussion of the error probabilities.
    //
    // ProbablyPrime is not suitable for judging primes that an adversary may
    // have crafted to fool the test.
    //
    // As of Go 1.8, ProbablyPrime(0) is allowed and applies only a Baillie-PSW test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

          for (auto it = stats.begin(), e = stats.end(); it != e; ++it) {
            double rmin = FloatAttr::getValueAsDouble(*it++);
            double rmax = FloatAttr::getValueAsDouble(*it);
            // The default nudging implementation of mlir quant library might cause
            // clamping during inference if the calibration range isn't wide enough.
            // So here we adjust the range to include 0.0.
            rmin = std::min(rmin, 0.0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. src/html/template/escape.go

    // (1) Transition from a before-value state to a start-of-value state without
    //
    //	consuming any character.
    //
    // (2) Consume 'x' and transition past the first value character.
    // In this case, nudging produces the context after (1) happens.
    func nudge(c context) context {
    	switch c.state {
    	case stateTag:
    		// In `<foo {{.}}`, the action should emit an attribute.
    		c.state = stateAttrName
    	case stateBeforeValue:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
Back to top