Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for conservative (0.28 sec)

  1. src/runtime/mgcstack.go

    // Remove and return a potential pointer to a stack object.
    // Returns 0 if there are no more pointers available.
    //
    // This prefers non-conservative pointers so we scan stack objects
    // precisely if there are any non-conservative pointers to them.
    func (s *stackScanState) getPtr() (p uintptr, conservative bool) {
    	for _, head := range []**stackWorkBuf{&s.buf, &s.cbuf} {
    		buf := *head
    		if buf == nil {
    			// Never had any data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/internal/sys/args.go

    // license that can be found in the LICENSE file.
    
    package sys
    
    // ExecArgLengthLimit is the number of bytes we can safely
    // pass as arguments to an exec.Command.
    //
    // Windows has a limit of 32 KB. To be conservative and not worry about whether
    // that includes spaces or not, just use 30 KB. Darwin's limit is less clear.
    // The OS claims 256KB, but we've seen failures with arglen as small as 50KB.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 02 13:15:42 UTC 2021
    - 550 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.cc

      for (Operation *user : identity->getUsers()) {
        // Replace the op with the input if output is only used by TF ops.
        // Currently this is more on the conservative side since we need to ensure
        // every consumer op to be a TF op before applying this pattern. We can
        // consider to revisit this in the future if this turns out to be too
        // restrictive.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 15 06:13:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    	numStored, err := e.countGetterFn(key(requestInfo))
    	switch {
    	case err == ObjectCountStaleErr:
    		// object count going stale is indicative of degradation, so we should
    		// be conservative here and allocate maximum seats to this list request.
    		// NOTE: if a CRD is removed, its count will go stale first and then the
    		// pruner will eventually remove the CRD from the cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

         *
         * E.g. `x` in the following example is definitely *not* used (`x.isUsedAsExpression() == false`)
         *   - `run { x; println(50) }`
         *   - `when (x) { else -> ... }`
         *
         * **Note!** This is a conservative check, not a control-flow analysis.
         * E.g. `x` in the following example *is possibly used*, even though the
         * value is never consumed at runtime.
         *   - `x + try { throw Exception() } finally { return }`
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/internal/poll/writev.go

    		return 0, err
    	}
    
    	var iovecs []syscall.Iovec
    	if fd.iovecs != nil {
    		iovecs = *fd.iovecs
    	}
    	// TODO: read from sysconf(_SC_IOV_MAX)? The Linux default is
    	// 1024 and this seems conservative enough for now. Darwin's
    	// UIO_MAXIOV also seems to be 1024.
    	maxVec := 1024
    	if runtime.GOOS == "aix" || runtime.GOOS == "solaris" {
    		// IOV_MAX is set to XOPEN_IOV_MAX on AIX and Solaris.
    		maxVec = 16
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pkg/kubelet/pleg/pleg.go

    type RelistDuration struct {
    	// The period for relisting.
    	RelistPeriod time.Duration
    	// The relisting threshold needs to be greater than the relisting period +
    	// the relisting time, which can vary significantly. Set a conservative
    	// threshold to avoid flipping between healthy and unhealthy.
    	RelistThreshold time.Duration
    }
    
    const (
    	// ContainerStarted - event type when the new state of container is running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/push_transpose_through_ewise.cc

    // to make as many tranposes redudant as possible, we can "push" transposes
    // back so that they fuse later on. These patterns handles 2 such cases in
    // a conservative fashion; on-net it will never add to the number of transposes
    // in the graph.
    
    // ewise(tpose(x), tpose(y)) -> tpose(ewise(x, y))
    //    iff tpose(x) or tpose(y) has one use and have same permutation.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    			// registers for the asynchronously stopped
    			// parent frame. Scan the parent
    			// conservatively.
    			state.conservative = true
    		} else {
    			// We only wanted to scan those two frames
    			// conservatively. Clear the flag for future
    			// frames.
    			state.conservative = false
    		}
    		return
    	}
    
    	locals, args, objs := frame.getStackMap(false)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_cluster_util.cc

      return result;
    }
    
    bool MayCallFunction(const Node& n, const FunctionLibraryDefinition* flib_def) {
      if (flib_def->Contains(n.type_string())) {
        return true;
      }
    
      // This is a conservative check: there may be nodes with a `func`
      // attribute that do not make function calls.
      return absl::c_any_of(n.def().attr(),
                            [](const std::pair<string, AttrValue>& name_attr_pair) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top