Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Hudgins (0.23 sec)

  1. cni/test/testdata/pre/noplugins_calico.conflist

    {
      "name": "k8s-pod-network",
      "cniVersion": "0.3.1",
      "pugins": [
        {
          "type": "calico",
          "etcd_endpoints": "http://10.110.0.136:6666",
          "plugin_log_level": "info",
          "mtu": 1500,
          "ipam": {
            "type": "calico-ipam"
          },
          "policy": {
            "type": "k8s"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          }
        },
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 527 bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/ImmutableTypeToInstanceMapTest.java

            MapTestSuiteBuilder.using(
                    new TestTypeToInstanceMapGenerator() {
                      // Other tests will verify what real, warning-free usage looks like
                      // but here we have to do some serious fudging
                      @Override
                      @SuppressWarnings({"unchecked", "rawtypes"})
                      public Map<TypeToken, Object> create(Object... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/ImmutableTypeToInstanceMapTest.java

            MapTestSuiteBuilder.using(
                    new TestTypeToInstanceMapGenerator() {
                      // Other tests will verify what real, warning-free usage looks like
                      // but here we have to do some serious fudging
                      @Override
                      @SuppressWarnings({"unchecked", "rawtypes"})
                      public Map<TypeToken, Object> create(Object... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.cc

        }
      } else {
        return true;
      }
    
      // Handle narrowRange.
      if (narrowRange) {
        qmin += 1;
      }
      return false;
    }
    
    // This is a specific implementation of nudging:
    // If 0.0 < rmin < rmax or rmin < rmax < 0.0, the range will be shifted
    // to include 0.0, but the range width size (rmax-rmin) isn't changed. The zero
    // point is derived from the shifted range, and the scale isn't changed. As
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/MutableTypeToInstanceMapTest.java

            MapTestSuiteBuilder.using(
                    new TestTypeToInstanceMapGenerator() {
                      // Other tests will verify what real, warning-free usage looks like
                      // but here we have to do some serious fudging
                      @Override
                      @SuppressWarnings({"unchecked", "rawtypes"})
                      public Map<TypeToken, Object> create(Object... elements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. 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 (0)
  7. src/go/doc/comment/text.go

    	// penalty of 64 given out for not ending the line in a
    	// punctuation character (.,:;).
    	// The penalty is somewhat arbitrarily chosen by trying
    	// different amounts and judging how nice the wrapped text looks.
    	// Roughly speaking, using 64 means that we are willing to
    	// end a line with eight blank spaces in order to end at a
    	// punctuation character, even if the next word would fit in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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