Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for conservative (0.21 sec)

  1. src/crypto/tls/conn.go

    }
    
    // sendAlert sends a TLS alert message.
    func (c *Conn) sendAlert(err alert) error {
    	c.out.Lock()
    	defer c.out.Unlock()
    	return c.sendAlertLocked(err)
    }
    
    const (
    	// tcpMSSEstimate is a conservative estimate of the TCP maximum segment
    	// size (MSS). A constant is used, rather than querying the kernel for
    	// the actual MSS, to avoid complexity. The value here is the IPv6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    		// fact table for this because we don't know what the
    		// facts of b.Preds[1] are (in general, b.Preds[1] is
    		// a loop-back edge, so we haven't even been there
    		// yet). As a conservative approximation, we look for
    		// this condition in the predecessor chain until we
    		// hit a join point.
    		uniquePred := func(b *Block) *Block {
    			if len(b.Preds) == 1 {
    				return b.Preds[0].b
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    	// for running them. It is ok if the current "pod" take resources freed for
    	// lower priority pods.
    	// Requiring that the new pod is schedulable in both circumstances ensures that
    	// we are making a conservative decision: filters like resources and inter-pod
    	// anti-affinity are more likely to fail when the nominated pods are treated
    	// as running, while filters like pod affinity are more likely to fail when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    	// overestimates the "true" live heap size. It's better to overestimate
    	// than to underestimate because 1) this triggers the GC earlier than
    	// necessary rather than potentially too late and 2) this leads to a
    	// conservative GC rate rather than a GC rate that is potentially too
    	// low.
    	//
    	// Whenever this is updated, call traceHeapAlloc() and
    	// this gcControllerState's revise() method.
    	heapLive atomic.Uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    		if err := proxyutil.EnsureSysctl(sysctl, sysctlRouteLocalnet, 1); err != nil {
    			return nil, err
    		}
    	}
    
    	// Be conservative in what you do, be liberal in what you accept from others.
    	// If it's non-zero, we mark only out of window RST segments as INVALID.
    	// Ref: https://docs.kernel.org/networking/nf_conntrack-sysctl.html
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    	// may possibly contain non-canonical paths. Do the work in
    	// all cases since it's not too hard and not speed-critical.
    
    	// if we don't have a proper string, be conservative and return whatever we have
    	if lit.Kind != token.STRING {
    		return lit
    	}
    	s, err := strconv.Unquote(lit.Value)
    	if err != nil {
    		return lit
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    					// by updateBase)
    					pos = MakePos(p.file, line, col+uint(len(msg)))
    				}
    				p.updateBase(pos, line, col+2+5, text[5:]) // +2 to skip over // or /*
    				return
    			}
    
    			// go: directive (but be conservative and test)
    			if strings.HasPrefix(text, "go:") {
    				if p.top && strings.HasPrefix(msg, "//go:build") {
    					if x, err := constraint.Parse(msg); err == nil {
    						p.goVersion = constraint.GoVersion(x)
    					}
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // be turned of by +noeh compiler option if desired.
    #  define GTEST_HAS_EXCEPTIONS 1
    # else
    // For other compilers, we assume exceptions are disabled to be
    // conservative.
    #  define GTEST_HAS_EXCEPTIONS 0
    # endif  // defined(_MSC_VER) || defined(__BORLANDC__)
    #endif  // GTEST_HAS_EXCEPTIONS
    
    #if !defined(GTEST_HAS_STD_STRING)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // be turned of by +noeh compiler option if desired.
    #  define GTEST_HAS_EXCEPTIONS 1
    # else
    // For other compilers, we assume exceptions are disabled to be
    // conservative.
    #  define GTEST_HAS_EXCEPTIONS 0
    # endif  // defined(_MSC_VER) || defined(__BORLANDC__)
    #endif  // GTEST_HAS_EXCEPTIONS
    
    #if !defined(GTEST_HAS_STD_STRING)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
      static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top