Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 159 for conservative (0.16 sec)

  1. 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)
  2. src/runtime/proc.go

    // Notable members of the hall of shame include:
    //   - gvisor.dev/gvisor
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname wakep
    func wakep() {
    	// Be conservative about spinning threads, only start one if none exist
    	// already.
    	if sched.nmspinning.Load() != 0 || !sched.nmspinning.CompareAndSwap(0, 1) {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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